/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #FFD700;
    --red: #DC143C;
    --dark-brown: #3d2817;
    --light-bg: #FFF8DC;
    --white: #ffffff;
    --text-dark: #2c1810;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* ===== NAVBAR ===== */
nav {
    background-color: var(--dark-brown);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo:hover {
    color: var(--red);
    transition: color 0.3s ease;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover {
    color: var(--gold);
    background-color: rgba(255, 215, 0, 0.1);
}

.nav-links a.active {
    color: var(--gold);
    border-bottom: 3px solid var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== RESPONSIVE NAV ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--dark-brown);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links a {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--red), var(--dark-brown));
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.8s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: slideUp 0.8s ease;
}

.cta-button {
    background-color: var(--gold);
    color: var(--text-dark);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin: 0 0.5rem;
}

.cta-button:hover {
    background-color: var(--red);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FEATURED ITEMS SECTION ===== */
.featured {
    padding: 4rem 2rem;
    text-align: center;
}

.featured h2 {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.item-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid var(--gold);
}

.item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.item-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--gold), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.item-content {
    padding: 1.5rem;
    text-align: left;
}

.item-content h3 {
    color: var(--red);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.item-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.price {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: bold;
}

/* ===== MENU PAGE ===== */
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.menu-header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-header h1 {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.menu-category {
    margin-bottom: 3rem;
}

.menu-category h2 {
    color: var(--gold);
    font-size: 2rem;
    border-bottom: 3px solid var(--red);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.menu-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-left: 5px solid var(--gold);
}

.menu-item h3 {
    color: var(--red);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.menu-item .description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.menu-item .price {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: bold;
}

/* ===== BRANCHES PAGE ===== */
.branches-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.branches-header {
    text-align: center;
    margin-bottom: 3rem;
}

.branches-header h1 {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.branch-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--gold);
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.branch-header {
    background: linear-gradient(135deg, var(--red), var(--dark-brown));
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.branch-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.branch-content {
    padding: 1.5rem;
}

.branch-info {
    margin-bottom: 1rem;
}

.branch-info strong {
    color: var(--red);
    display: block;
    margin-bottom: 0.3rem;
}

.branch-info p {
    color: #666;
    font-size: 0.95rem;
}

.branch-map {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    margin-top: 1rem;
    border: 2px solid var(--gold);
}

/* ===== ABOUT PAGE ===== */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h1 {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 1rem;
}

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

.about-text {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--gold), var(--red));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.team h2 {
    color: var(--red);
    margin-bottom: 2rem;
    text-align: center;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.team-member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold), var(--red));
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.team-member h3 {
    color: var(--red);
    margin-bottom: 0.3rem;
}

.team-member p {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-brown);
    color: var(--white);
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: 2px solid var(--gold);
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--dark-brown);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    padding-top: 1.5rem;
    font-size: 0.9rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--white);
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: linear-gradient(135deg, var(--gold), var(--red));
    color: var(--white);
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.promo-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    .featured h2 {
        font-size: 1.8rem;
    }

    .menu-header h1 {
        font-size: 1.8rem;
    }

    .items-grid {
        grid-template-columns: 1fr;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .branches-grid {
        grid-template-columns: 1fr;
    }

    .team-members {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}
