/* ===========================
   Global Styles & Reset
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #3d2817;
    background-color: #faf8f5;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #2c1810;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* ===========================
   Header & Navigation
   =========================== */
header {
    background-color: #2c1810;
    color: #faf8f5;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(44, 24, 16, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.9rem;
    font-weight: 700;
    color: #d4a574;
    text-decoration: none;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #c99760;
}

.logo span {
    color: #faf8f5;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    color: #faf8f5;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 500;
}

nav ul li a:hover {
    color: #d4a574;
    background-color: rgba(212, 165, 116, 0.15);
    transform: translateY(-2px);
}

nav ul li a.active {
    color: #d4a574;
    background-color: rgba(212, 165, 116, 0.2);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 24, 16, 0.65);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 24px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #d4a574;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #faf8f5;
    line-height: 1.6;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #d4a574;
    color: #2c1810;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid #d4a574;
    font-size: 1rem;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: #d4a574;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

/* ===========================
   Main Content Sections
   =========================== */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #2c1810;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b5847;
    margin-bottom: 3.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ===========================
   Features Grid
   =========================== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(44, 24, 16, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(44, 24, 16, 0.12);
}

.feature-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c1810;
    font-weight: 700;
}

.feature-card p {
    color: #6b5847;
    line-height: 1.8;
    font-size: 1rem;
}

/* ===========================
   About Page Styles
   =========================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(44, 24, 16, 0.1);
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c1810;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #6b5847;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* ===========================
   Menu Styles
   =========================== */
.menu-category {
    margin-bottom: 4.5rem;
}

.menu-category h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #2c1810;
    border-bottom: 4px solid #d4a574;
    padding-bottom: 0.75rem;
    font-weight: 700;
}

.menu-items {
    display: grid;
    gap: 1.5rem;
}

.menu-item {
    background-color: #fff;
    padding: 1.75rem 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(44, 24, 16, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.menu-item:hover {
    box-shadow: 0 6px 18px rgba(44, 24, 16, 0.1);
    transform: translateY(-2px);
}

.menu-item-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    color: #2c1810;
    font-weight: 700;
}

.menu-item-info p {
    color: #6b5847;
    font-size: 1rem;
    line-height: 1.6;
}

.menu-item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4a574;
    white-space: nowrap;
    margin-left: 2rem;
}

/* ===========================
   Contact Page Styles
   =========================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(44, 24, 16, 0.08);
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c1810;
    font-weight: 700;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: #2c1810;
    font-weight: 700;
}

.info-item p {
    color: #6b5847;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-form {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(44, 24, 16, 0.08);
}

.contact-form h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c1810;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: #2c1810;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e5ddd5;
    border-radius: 6px;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #faf8f5;
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    background-color: #fff;
}

/* ===========================
   Footer
   =========================== */
footer {
    background-color: #2c1810;
    color: #faf8f5;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    color: #d4a574;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    color: #e5ddd5;
    text-decoration: none;
    line-height: 2.2;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4a574;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid #4a3228;
    color: #a89482;
    font-size: 0.95rem;
}

/* ===========================
   Responsive Design
   =========================== */

/* Tablets and below (768px) */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 20px;
    }

    .header-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0.5rem 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 0.7rem 1rem;
    }

    .hero {
        height: 450px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        height: 350px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .menu-item {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-item-price {
        margin-left: 0;
        align-self: flex-start;
    }

    .contact-info,
    .contact-form {
        padding: 2rem;
    }

    footer {
        padding: 3rem 0 1.5rem;
        margin-top: 3.5rem;
    }
}

/* Mobile devices (480px and below) */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    .logo {
        font-size: 1.5rem;
    }

    nav ul {
        gap: 0.5rem;
    }

    nav ul li a {
        padding: 0.5rem 0.75rem;
        font-size: 0.95rem;
    }

    .hero {
        height: 380px;
    }

    .hero h1 {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .feature-card,
    .contact-info,
    .contact-form {
        padding: 1.75rem;
    }

    .feature-card h3,
    .menu-item-info h3 {
        font-size: 1.3rem;
    }

    .about-text h2,
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.8rem;
    }

    .menu-category h2 {
        font-size: 1.8rem;
        margin-bottom: 1.75rem;
    }

    .menu-item {
        padding: 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }
}
