* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FAF8F5;
    color: #1C1410;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

/* =============== HEADER & NAVIGATION =============== */
.header-nav {
    background-color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(28, 20, 16, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex-shrink: 0;
}

.text-logo {
    font-family: 'Cormorant Garant', serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #1C1410;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #1C1410;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8B6F47;
}

/* =============== HERO SECTION =============== */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.01);
    }
}

/* SVG Element Animations */
@keyframes steamRise {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-80px);
    }
}

@keyframes cupSway {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(0.5deg);
    }
    75% {
        transform: rotate(-0.5deg);
    }
}

@keyframes beanRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes leafFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes latteArtPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 248, 245, 0.85) 0%, rgba(139, 111, 71, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.hero-overlay h2 {
    font-family: 'Cormorant Garant', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.hero-overlay p {
    font-size: 1.3rem;
    color: #1C1410;
    max-width: 600px;
}

/* =============== MAIN CONTENT =============== */
main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* =============== MENU SECTION =============== */
.menu-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.menu-section h3 {
    font-family: 'Cormorant Garant', serif;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 20px;
}

.menu-section img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(28, 20, 16, 0.1);
}

/* =============== LOCATION SECTION =============== */
.location-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.location-section h3 {
    font-family: 'Cormorant Garant', serif;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 20px;
}

.location-section iframe {
    width: 100%;
    max-width: 900px;
    height: 450px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(28, 20, 16, 0.1);
}

/* =============== FOOTER =============== */
footer {
    background: linear-gradient(135deg, #1C1410 0%, #2C2416 100%);
    color: #F5F1E8;
    padding: 60px 40px 30px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Cormorant Garant', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-section a {
    color: #D4A574;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(245, 241, 232, 0.2);
    font-size: 0.9rem;
}

/* =============== RESPONSIVE DESIGN =============== */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .text-logo {
        font-size: 1.3rem;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .hero {
        height: 350px;
    }

    .hero-overlay h2 {
        font-size: 2rem;
    }

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

    main {
        padding: 60px 20px;
        gap: 60px;
    }

    .menu-section h3,
    .location-section h3 {
        font-size: 1.8rem;
    }

    .location-section iframe {
        height: 350px;
    }

    footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        gap: 30px;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 8px 15px;
    }

    .text-logo {
        font-size: 1.1rem;
        letter-spacing: 0.1em;
    }

    .nav-menu {
        gap: 12px;
        width: 100%;
        justify-content: flex-end;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .hero {
        height: 250px;
    }

    .hero-overlay h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .hero-overlay p {
        font-size: 0.85rem;
    }

    main {
        padding: 40px 15px;
        gap: 40px;
    }

    .menu-section h3,
    .location-section h3 {
        font-size: 1.4rem;
    }

    .menu-section img {
        border-radius: 6px;
    }

    .location-section iframe {
        height: 280px;
        border-radius: 6px;
    }

    footer {
        padding: 30px 15px 15px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p {
        font-size: 0.85rem;
    }
}
