@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #FBF8F3;
    --dark: #5D5650;
    --accent: #D56401;
    --sage: #E68302;
    --light-sage: #E6934E;
}

body {
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--cream) 0%, #F5EFE7 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 154, 123, 0.03) 2px, rgba(139, 154, 123, 0.03) 4px);
}

.hero-content {
    position: relative;
    z-index: 1;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    color: var(--dark);
}

.tagline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-style: italic;
    color: var(--accent);
    margin-bottom: 2rem;
}

.subtitle {
    font-size: 1rem;
    color: var(--sage);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Trebuchet MS', sans-serif;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    font-size: 0.9rem;
    color: var(--dark);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

nav {
    position: sticky;
    top: 0;
    background: rgba(251, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    border-bottom: 1px solid rgba(139, 154, 123, 0.2);
    z-index: 100;
    flex-wrap: wrap;
}

nav a {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: "Cinzel Decorative", serif;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent);
}

section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subheader {
    text-align: center;
    margin-bottom: 1rem;
}

.section-title {
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1rem;
}

.section-subtitle {
       font-family: "Lato", serif;
    font-weight: 400;
    font-style: italic;
    color: var(--sage);
    font-size: 1.1rem;
}

.menu-grid {
    display: grid;
    gap: 3rem;
}

.menu-item {
    font-family: "Cinzel Decorative", serif;
    border-bottom: 1px solid rgba(139, 154, 123, 0.2);
    padding-bottom: 2rem;
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateX(10px);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.item-name {
    font-size: 1.4rem;
    color: var(--dark);
    font-weight: 400;
}

.item-price {
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 600;
}

.item-description {
    font-family: "Lato", serif;
    font-weight: 400;
    color: var(--sage);
    line-height: 1.8;
    max-width: 800px;
}

.category-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--light-sage);
    color: var(--cream);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border-radius: 2px;
}

.weekly-special {
    background: linear-gradient(135deg, #F5EFE7 0%, var(--cream) 100%);
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 4px;
    text-align: center;
}

.day-title {
    font-family: "Cinzel Decorative", serif;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

footer {
    background: var(--dark);
    color: var(--cream);
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

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

@media (max-width: 768px) {
    nav {
        gap: 1rem;
        font-size: 0.8rem;
    }

    section {
        padding: 4rem 1.5rem;
    }
}

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

.contact-card {
    background: linear-gradient(135deg, #F5EFE7 0%, var(--cream) 100%);
    padding: 2.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--accent);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(139, 154, 123, 0.03) 2px,
        rgba(139, 154, 123, 0.03) 4px
    );
    pointer-events: none;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 36, 32, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-label {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.contact-info {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.contact-info a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;

}

.contact-info a:hover {
    color: var(--accent);
}

.map-container {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid var(--light-sage);
    box-shadow: 0 10px 40px rgba(44, 36, 32, 0.15);
    background: var(--cream);
}

.map-header {
    background: linear-gradient(135deg, var(--accent) 0%, var(--sage) 100%);
    padding: 1.5rem;
    text-align: center;
}

.map-title {
    font-family: 'Cinzel Decorative', serif;
    color: var(--cream);
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.map-subtitle {
    color: var(--cream);
    font-size: 0.9rem;
    opacity: 0.9;
}

.map-frame {
    width: 100%;
    height: 450px;
    border: none;
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: var(--accent);
    color: var(--cream);
    text-decoration: none;
    border-radius: 2px;
    font-family: 'Cinzel Decorative', serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 2px solid var(--accent);
}

.cta-button:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
}

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

    .map-frame {
        height: 350px;
    }

    section {
        padding: 4rem 1.5rem;
    }
}

.site-footer {
    background:
    linear-gradient(135deg, var(--cream) 10%, #F5EFE7 100%);
    color: var(--cream);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
    box-shadow: 0 10px 40px rgba(44, 36, 32, 0.15);
}

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

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;

    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(251, 248, 243, 0.2);
}

.footer-about h3,
.footer-links h4,
.footer-hours h4 {
    font-family: 'Cinzel Decorative', serif;
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 400;
}

.footer-about p {
    color: var(--light-sage);
    line-height: 1.8;
    font-size: 0.95rem;
}

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

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

.footer-links a {
    color: var(--light-sage);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-hours p {
    color: var(--light-sage);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    padding: 1.5rem 0;
}

.footer-social a {
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(251, 248, 243, 0.2);
    font-size: 0.9rem;
    color: var(--light-sage);
    padding-bottom: 4rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--sage);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--accent);
}

.footer-legal span {
    color: rgba(251, 248, 243, 0.3);
}

.footer-credits {
    color: var(--light-sage);
}

.footer-credits a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-credits a:hover {
    color: var(--cream);
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 1.5rem 1rem;
        margin-top: 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-about h3,
    .footer-links h4,
    .footer-hours h4 {
        font-size: 1.1rem;
    }

    .footer-about p,
    .footer-links a,
    .footer-hours p {
        font-size: 0.9rem;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        padding: 1.2rem 0;
    }

    .footer-social svg {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }

    .footer-legal {
        justify-content: center;
    }

    .copyright,
    .footer-credits {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 1.5rem 1rem 1rem;
    }

    .footer-top {
        gap: 1.5rem;
    }

    .footer-about h3,
    .footer-links h4,
    .footer-hours h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .footer-about p,
    .footer-links a,
    .footer-hours p {
        font-size: 0.85rem;
    }

    .footer-social {
        gap: 1rem;
        padding: 1rem 0;
    }

    .footer-social svg {
        width: 35px;
        height: 35px;
    }

    .footer-bottom {
        font-size: 0.8rem;
        gap: 0.8rem;
        padding-top: 1.2rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-legal span {
        display: none;
    }
}