/*
Theme Name: The Travellers Table
Theme URI: https://thetravellerstable.com/
Author: The Travellers Table
Description: Simple custom WordPress theme for The Travellers Table.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: thetravellerstable
*/

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    line-height: 1.6;
}

img { max-width: 100%; height: auto; }

a { color: #1f4d3a; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    width: 92%;
    max-width: 1180px;
    margin: 0 auto;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo {
    font-size: 25px;
    font-weight: 700;
    color: #1f4d3a;
}

.site-description {
    margin: 0;
    font-size: 13px;
    color: #777;
}

.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 22px;
}

.main-menu li { margin: 0; }

.main-menu a {
    color: #222;
    font-weight: 600;
}

.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    text-align: center;
    background: #eee;
}

.hero-content {
    width: 100%;
    padding: 80px 20px;
}

.hero h1 {
    margin: 0 0 15px;
    font-size: 48px;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 18px;
}

.button {
    display: inline-block;
    padding: 11px 24px;
    background: #1f4d3a;
    color: #fff;
    border-radius: 4px;
}

.button:hover {
    color: #fff;
    text-decoration: none;
}

.content-area { padding: 55px 0; }

.post-card {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.entry-title {
    line-height: 1.3;
}

.entry-meta {
    color: #777;
    font-size: 14px;
}

.site-footer {
    margin-top: 40px;
    padding: 35px 0;
    background: #18231f;
    color: #ddd;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 0;
    }

    .main-menu ul {
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .hero { min-height: 380px; }
    .hero h1 { font-size: 36px; }

    .footer-inner {
        flex-direction: column;
    }
}
