/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fffcf8;
    color: #2d2a24;
    line-height: 1.5;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #3e2e23;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #c06e4e;
    color: white;
}

.btn-primary:hover {
    background-color: #a85c3e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192, 110, 78, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #c06e4e;
    border-color: #c06e4e;
}

.btn-secondary:hover {
    background-color: #c06e4e;
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid #e0d6cd;
    color: #3e2e23;
}

.btn-outline:hover {
    border-color: #c06e4e;
    background: #fef5ed;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
    background: white;
    box-shadow: 0 4px 18px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.7rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 900;
    color: #3e2e23;
}

.logo span {
    color: #c06e4e;
    font-weight: 700;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #c06e4e;
    cursor: pointer;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    font-weight: 500;
    color: #3e2e23;
    transition: color 0.2s;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-list a:hover {
    color: #c06e4e;
    border-bottom-color: #c06e4e;
}

.nav-extra {
    margin-left: 1rem;
}

/* ===== HERO ===== */
.hero {
    padding: 3rem 0 4rem;
    background: #fef5ed;
    position: relative;
    overflow: hidden;
}

.hero-slant {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fffcf8;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: #2d2a24;
}

.hero-text p {
    font-size: 1.2rem;
    color: #5b4e42;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 40px -20px rgba(0,0,0,0.3);
    height: 450px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== ABOUT ===== */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
}

.about-text h2 {
    font-size: 2.8rem;
}

.about-text .subhead {
    font-size: 1.3rem;
    color: #c06e4e;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: #4a3f36;
}

.about-text i {
    color: #c06e4e;
    margin-right: 0.5rem;
}

/* ===== MENU ===== */
.menu-section {
    padding: 5rem 0;
    background: #fefaf6;
}

.menu-section h2 {
    text-align: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0 2.5rem;
}

.menu-item {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.menu-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
}

.menu-item-info {
    padding: 1.5rem;
}

.menu-item-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.menu-item-info p {
    color: #6b5e53;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.price {
    font-weight: 700;
    color: #c06e4e;
    font-size: 1.3rem;
}

.menu-footer {
    text-align: center;
}

.menu-footer .btn i {
    margin-left: 0.5rem;
    transition: transform 0.2s;
}

.menu-footer .btn:hover i {
    transform: translateX(5px);
}

/* ===== RESERVATION ===== */
.reservation-section {
    padding: 5rem 0;
    background: white;
}

.reservation-section h2 {
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #5b4e42;
    margin-bottom: 3rem;
}

.reservation-form {
    max-width: 800px;
    margin: 0 auto;
    background: #fef5ed;
    padding: 2.5rem;
    border-radius: 40px;
    box-shadow: 0 15px 30px -10px rgba(192,110,78,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #3e2e23;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #e0d6cd;
    border-radius: 30px;
    font-family: inherit;
    font-size: 1rem;
    background: white;
    transition: border 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c06e4e;
}

.reservation-form button[type="submit"] {
    width: 100%;
    font-size: 1.1rem;
    margin-top: 1rem;
    padding: 1rem;
}

.form-message {
    margin-top: 1.2rem;
    text-align: center;
    font-weight: 500;
    min-height: 2rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #2d2a24;
    color: #e8e0d9;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: #c06e4e;
}

.footer-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.footer-info i {
    width: 1.2rem;
    color: #c06e4e;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #c06e4e;
}

.footer-bottom {
    border-top: 1px solid #4a4038;
    padding-top: 2rem;
    text-align: center;
    color: #a89f96;
}

.footer-bottom a {
    color: #e8e0d9;
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: #c06e4e;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image {
        max-width: 600px;
        margin: 0 auto;
        height: 400px;
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
    .primary-nav {
        position: fixed;
        inset: 0 0 0 25%;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-out;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        z-index: 200;
        overflow-y: auto;
    }
    .primary-nav[data-visible="true"] {
        transform: translateX(0%);
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }
    .nav-extra {
        margin-left: 0;
        width: 100%;
    }
    .nav-extra .btn {
        display: block;
        text-align: center;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 2rem;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-buttons .btn {
        text-align: center;
    }
    .reservation-form {
        padding: 1.5rem;
    }
}