/* Dark theme - Contact page */
.contact-info-section-dark {
    background: #000000;
    color: #FFFFFF;
    padding: 3rem 0;
}
.contact-info-section-dark .contact-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #9b9b9b 100%);
    border: 1px solid #2a2a2a;
}
.contact-info-section-dark .contact-icon { color: #D2691E; }
.contact-info-section-dark h3 { color: #FFFFFF; }
.contact-info-section-dark p { color: #FFFFFF; }

.map-section-dark { background: #000000; color: #000000; padding: 3rem 0; }
.section-title-dark { color: #000000; text-align: center; margin-bottom: 1rem; font-size: 2rem; }
.map-section-dark .directions-info h3 { color: #000000; }
.map-section-dark .directions-info li { color: #000000; }
.map-section-dark p { color: #000000; }

.contact-form-section-dark { background: #000000; color: #FFFFFF; padding: 3rem 0; }
.contact-form-section-dark .contact-form { background: #0d0d0d; border: 1px solid #2a2a2a; }
.contact-form-section-dark label { color: #070707; }
.contact-form-section-dark input,
.contact-form-section-dark select,
.contact-form-section-dark textarea { background: #1a1a1a; color: #FFFFFF; border: 1px solid #333333; }
.contact-form-section-dark .form-intro h2 { color: #000000; }
.contact-form-section-dark .form-intro p { color: #000000; }

.social-section-dark { background: #000000; color: #FFFFFF; padding: 3rem 0; text-align: center; }
.social-section-dark .social-link-large { background: #0d0d0d; border: 1px solid #2a2a2a; }
.social-section-dark .social-name, .social-section-dark .social-handle { color: #FFFFFF; }
.social-section-dark p { color: #FFFFFF; }
/* ===================================
   Root and Roast - Main Stylesheet
   Modern, Mobile-First Design
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #CD853F;
    --dark-color: #2C1810;
    --light-color: #F5E6D3;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-light: #F5F5F5;
    --gray-medium: #999999;
    --gray-dark: #666666;
    --success-color: #4CAF50;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===================================
   DARK THEME (NEW)
   =================================== */
body.dark-theme {
    background-color: #000000;
    color: #FFFFFF;
}

/* ===================================
   FULL BLACK PAGE UTILITY
   Apply class="black-page" on <body>
   =================================== */
body.black-page {
    background-color: #000000 !important;
    color: #FFFFFF !important;
}
body.black-page section,
body.black-page .page-header,
body.black-page .about-story,
body.black-page .values-section,
body.black-page .team-section,
body.black-page .ambience-section,
body.black-page .testimonials-section,
body.black-page .contact-info-section,
body.black-page .map-section,
body.black-page .contact-form-section,
body.black-page .social-section,
body.black-page .delivery-check,
body.black-page .order-type-section,
body.black-page .order-menu-section,
body.black-page .location-quick {
    background-color: #000000 !important;
}
body.black-page h1,
body.black-page h2,
body.black-page h3,
body.black-page h4,
body.black-page h5,
body.black-page h6,
body.black-page .section-title,
body.black-page .section-title-center,
body.black-page .category-title {
    color: #FFFFFF !important;
}
body.black-page p,
body.black-page li,
body.black-page .section-subtitle,
body.black-page .contact-text,
body.black-page .menu-description {
    color: #CCCCCC !important;
}
/* Make card-like blocks dark */
body.black-page .item-card,
body.black-page .menu-item,
body.black-page .order-item,
body.black-page .order-cart,
body.black-page .contact-info-card,
body.black-page .directions-info,
body.black-page .contact-form-wrapper,
body.black-page .quick-contact,
body.black-page .testimonial-card,
body.black-page .value-card,
body.black-page .ambience-item,
body.black-page .order-items,
body.black-page .order-type-card,
body.black-page .modal-content {
    background-color: #0d0d0d !important;
    color: #FFFFFF !important;
    border: 1px solid #2a2a2a !important;
}
body.black-page .nav-menu,
body.black-page .navbar {
    background-color: #000000 !important;
}

/* Dark Navigation */
.navbar-dark {
    background-color: #000000;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 90px;
}

.nav-left {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    border-bottom: 3px solid transparent;
}

.nav-link.active {
    color: #D2691E;
    border-bottom-color: #D2691E;
}

.nav-link:hover {
    color: #D2691E;
    border-bottom-color: #D2691E;
}

.nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
}

.logo-text {
    font-size: 0.6rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.nav-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-right: 3rem;
}

.location-label {
    color: #D2691E;
    font-size: 1rem;
    font-weight: 400;
}

.location-dropdown {
    position: relative;
}

.location-icon {
    font-size: 1.25rem;
    color: #FFFFFF;
}

.location-btn {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #888888;
    padding: 0.6rem 2rem 0.6rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: space-between;
}

.location-btn:hover {
    border-color: #D2691E;
    background-color: rgba(210, 105, 30, 0.05);
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: #FFFFFF;
}

.location-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.location-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-top: 0.5rem;
    min-width: 200px;
    display: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.location-menu.active {
    display: block;
}

.location-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-menu a:hover {
    background-color: rgba(210, 105, 30, 0.2);
    color: #D2691E;
}


/* Mobile Navigation Toggle for Dark Theme */
.navbar-dark .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-dark .nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

/* ===================================
   HERO FULLSCREEN (NEW)
   =================================== */
.hero-fullscreen {
    height: 100vh;
    position: relative;
    background-color: #000000;
    overflow: hidden;
    margin-top: 90px;
}

.hero-fullscreen .hero-slider {
    height: 100%;
    position: relative;
}

.hero-fullscreen .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-fullscreen .hero-slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* New Full Width Layout */
.slide-content-full {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 5%;
    gap: 4rem;
}

.product-card-left {
    flex: 0 0 auto;
    max-width: 500px;
    animation: slideInLeft 0.8s ease-out;
}

.product-card-img {
    width: 100%;
    height: auto;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    object-fit: cover;
}

.product-text-right {
    flex: 1;
    text-align: right;
    padding-right: 5%;
    animation: slideInRight 0.8s ease-out;
}

.product-title-large {
    font-size: 6rem;
    font-weight: 900;
    line-height: 0.95;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.product-tagline-large {
    font-size: 2rem;
    color: #FFFFFF;
    font-weight: 300;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mega-title {
    font-size: 7rem;
    font-weight: 900;
    line-height: 0.95;
    color: #FFFFFF;
    text-transform: lowercase;
    margin-bottom: 2rem;
    letter-spacing: -3px;
}

.mega-subtitle {
    font-size: 1.5rem;
    color: #CCCCCC;
    font-weight: 300;
    margin-top: 2rem;
}

.slide-interaction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.coffee-cup-icon {
    font-size: 4rem;
}

.slide-button {
    background-color: #FFFFFF;
    color: #000000;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-button:hover {
    background-color: #D2691E;
    color: #FFFFFF;
    transform: translateX(10px);
}

.slide-logo-bottom {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo-circle-small {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
}

.logo-text-small {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
}

/* Product Showcase */
.product-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    width: 100%;
}

.product-showcase.left {
    flex-direction: row;
}

.product-showcase.right {
    flex-direction: row-reverse;
}

.product-image {
    width: 500px;
    height: 500px;
    border-radius: 20px;
    background: linear-gradient(135deg, #4A7C7E 0%, #6B9FA1 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.croissant-img {
    background-image: url('asset/slide2.webp');
    background-size: cover;
    background-position: center;
}

.strawberry-img {
    background-image: url('asset/slide3.webp');
    background-size: cover;
    background-position: center;
}

.product-text {
    text-align: left;
}

.product-showcase.right .product-text {
    text-align: right;
}

.product-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.9;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.product-tagline {
    font-size: 1.8rem;
    color: #CCCCCC;
    font-weight: 300;
    font-style: italic;
}

/* Hero Dots Bottom */
.hero-dots-bottom {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 100;
}

.hero-dots-bottom button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dots-bottom button.active {
    background-color: #FFFFFF;
}

/* ===================================
   DARK SECTIONS
   =================================== */
body.dark-theme .story-snippet {
    background-color: #0A0A0A;
    color: #FFFFFF;
}

body.dark-theme .best-sellers {
    background-color: #000000;
}

body.dark-theme .section-title {
    color: #FFFFFF;
}

body.dark-theme .item-card {
    background-color: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-theme .item-card:hover {
    border-color: #D2691E;
}

body.dark-theme .item-details h3 {
    color: #FFFFFF;
}

body.dark-theme .item-details p {
    color: #CCCCCC;
}

body.dark-theme .special-attraction {
    background-color: #0A0A0A;
}

body.dark-theme .events {
    background-color: #000000;
}

body.dark-theme .event-card {
    background-color: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-theme .event-details h3 {
    color: #FFFFFF;
}

body.dark-theme .event-details p {
    color: #CCCCCC;
}

body.dark-theme .location-quick {
    background-color: #0A0A0A;
}

body.dark-theme .location-info h2 {
    color: #FFFFFF;
}

body.dark-theme .info-item h4 {
    color: #FFFFFF;
}

body.dark-theme .info-item p {
    color: #CCCCCC;
}

body.dark-theme .story-text h2 {
    color: #FFFFFF;
}

body.dark-theme .story-text p {
    color: #CCCCCC;
}

/* Mobile Responsive for Dark Theme */
@media (max-width: 968px) {
    .navbar-dark {
        grid-template-columns: auto 1fr auto;
        padding: 0 1rem;
        height: 70px;
    }

    .navbar-dark .nav-toggle {
        display: flex;
        order: 1;
    }

    .nav-left {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #000000;
        flex-direction: column;
        gap: 0;
        padding: 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }

    .nav-left.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        height: auto;
        border-left: 3px solid transparent;
    }

    .nav-link.active {
        border-bottom-color: transparent;
        border-left-color: #D2691E;
    }

    .nav-logo {
        order: 2;
        justify-self: center;
    }

    .nav-right {
        order: 3;
        justify-self: end;
        padding-right: 0;
        gap: 0.5rem;
    }

    .location-label {
        display: none;
    }

    .location-icon {
        font-size: 1rem;
    }

    .location-btn {
        min-width: 140px;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .mega-title {
        font-size: 3rem;
    }

    .product-title {
        font-size: 2.5rem;
    }

    .product-showcase {
        flex-direction: column !important;
        gap: 2rem;
    }

    .product-image {
        width: 300px;
        height: 300px;
    }

    .product-text {
        text-align: center !important;
    }

    .slide-interaction {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-fullscreen {
        margin-top: 70px;
    }

    /* Mobile responsive for new slide layout */
    .slide-content-full {
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        gap: 2rem;
    }

    .product-card-left {
        max-width: 350px;
    }

    .product-card-img {
        max-width: 100%;
    }

    .product-text-right {
        text-align: center;
        padding-right: 0;
    }

    .product-title-large {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .product-tagline-large {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .nav-link {
        font-size: 0.9rem;
    }

    .location-btn {
        min-width: 120px;
        font-size: 0.8rem;
    }

    .logo-circle {
        width: 50px;
        height: 50px;
    }

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Navigation Bar
   =================================== */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.nav-menu a {
    color: var(--black);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.lang-toggle {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.lang-toggle:hover {
    background-color: var(--dark-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 20;
}

.hero-prev,
.hero-next {
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--white);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.hero-prev:hover,
.hero-next:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-link {
    color: var(--primary-color);
    padding: 0;
}

.btn-link:hover {
    color: var(--dark-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===================================
   Sections
   =================================== */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* ===================================
   Story Snippet
   =================================== */
.story-snippet {
    background-color: var(--gray-light);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.story-text p {
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
    line-height: 1.8;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    height: 400px;
    border-radius: 10px;
}

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

    .hero-title {
        font-size: 2rem;
    }

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

/* ===================================
   Best Sellers / Items Grid
   =================================== */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.item-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.item-image {
    height: 250px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}

.item-details {
    padding: 1.5rem;
}

.item-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.item-details p {
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

/* Placeholder images using gradients */
.signature-coffee { background: linear-gradient(135deg, #6B4423, #8B4513); }
.beef-burger { background: linear-gradient(135deg, #D2691E, #CD853F); }
.cold-brew { background: linear-gradient(135deg, #4A3728, #6B4423); }
.pasta { background: linear-gradient(135deg, #F4A460, #DEB887); }
.coffee-img-1 { background: linear-gradient(135deg, #6B4423, #8B4513); }
.coffee-img-2 { background: linear-gradient(135deg, #8B4513, #A0522D); }
.coffee-img-3 { background: linear-gradient(135deg, #A0522D, #CD853F); }
.coffee-img-4 { background: linear-gradient(135deg, #4A3728, #6B4423); }
.bev-img-1 { background: linear-gradient(135deg, #FFD700, #FFA500); }
.bev-img-2 { background: linear-gradient(135deg, #FF8C00, #FFD700); }
.bev-img-3 { background: linear-gradient(135deg, #D2691E, #CD853F); }
.breakfast-img-1 { background: linear-gradient(135deg, #F4A460, #DEB887); }
.breakfast-img-2 { background: linear-gradient(135deg, #DEB887, #F5DEB3); }
.breakfast-img-3 { background: linear-gradient(135deg, #90EE90, #98FB98); }
.mains-img-1 { background: linear-gradient(135deg, #D2691E, #CD853F); }
.mains-img-2 { background: linear-gradient(135deg, #F4A460, #DEB887); }
.mains-img-3 { background: linear-gradient(135deg, #DAA520, #FFD700); }
.mains-img-4 { background: linear-gradient(135deg, #4682B4, #5F9EA0); }
.dessert-img-1 { background: linear-gradient(135deg, #8B4513, #A0522D); }
.dessert-img-2 { background: linear-gradient(135deg, #F5DEB3, #FFE4B5); }
.dessert-img-3 { background: linear-gradient(135deg, #FFB6C1, #FFC0CB); }
.story-img { background: linear-gradient(135deg, #8B4513, #A0522D); }
.about-img-1 { background: linear-gradient(135deg, #D2691E, #CD853F); }
.team-img-1 { background: linear-gradient(135deg, #708090, #778899); }
.team-img-2 { background: linear-gradient(135deg, #778899, #87CEEB); }
.team-img-3 { background: linear-gradient(135deg, #87CEEB, #B0C4DE); }
.team-img-4 { background: linear-gradient(135deg, #B0C4DE, #D3D3D3); }
.ambience-img-1 { background: linear-gradient(135deg, #8B4513, #A0522D); }
.ambience-img-2 { background: linear-gradient(135deg, #FFD700, #FFA500); }
.ambience-img-3 { background: linear-gradient(135deg, #4682B4, #5F9EA0); }
.ambience-img-4 { background: linear-gradient(135deg, #90EE90, #98FB98); }

/* ===================================
   Special Attraction
   =================================== */
.special-attraction {
    background-color: var(--dark-color);
    color: var(--white);
    text-align: center;
}

.attraction-content {
    max-width: 800px;
    margin: 0 auto;
}

.attraction-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.attraction-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.attraction-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===================================
   Events
   =================================== */
.events {
    background-color: var(--gray-light);
}

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

.event-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
}

.event-date {
    background-color: var(--primary-color);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
}

.date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-badge {
    background-color: var(--success-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
}

.event-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.event-details p {
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.event-time {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===================================
   Location Quick View
   =================================== */
.location-quick {
    background-color: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 2rem;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.info-item p {
    color: var(--gray-dark);
}

.map-placeholder {
    background: linear-gradient(135deg, #4682B4, #5F9EA0);
    height: 400px;
    border-radius: 10px;
}

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

/* ===================================
   Menu Page
   =================================== */

/* Dark theme for menu page */
.page-header-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #FFFFFF;
    padding: 4rem 0;
    text-align: center;
}

.page-header-dark h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.page-header-dark p {
    font-size: 1.2rem;
    color: #CCCCCC;
    margin-bottom: 2rem;
}

.menu-filter-dark {
    background-color: #000000;
    padding: 2rem 0;
    border-bottom: 1px solid #2a2a2a;
}

.menu-filter-dark .filter-btn {
    background-color: #1a1a1a;
    color: #FFFFFF;
    border: 2px solid #2a2a2a;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.menu-filter-dark .filter-btn:hover,
.menu-filter-dark .filter-btn.active {
    background-color: #D2691E;
    color: #FFFFFF;
    border-color: #D2691E;
}

.menu-section-dark {
    background-color: #000000;
    color: #FFFFFF;
    padding: 3rem 0;
}

.menu-section-dark .category-title {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.menu-section-dark .menu-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.menu-section-dark .menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(210, 105, 30, 0.3);
    border-color: #D2691E;
}

.menu-section-dark .menu-item h3 {
    color: #FFFFFF;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.menu-section-dark .menu-price {
    color: #D2691E;
    font-size: 1.2rem;
    font-weight: bold;
}

.menu-section-dark .menu-description {
    color: #CCCCCC;
    margin: 0.5rem 0;
}

.menu-section-dark .tag {
    background-color: #2a2a2a;
    color: #FFFFFF;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.menu-cta-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #FFFFFF;
    padding: 4rem 0;
    text-align: center;
}

.menu-cta-dark h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.menu-cta-dark p {
    font-size: 1.2rem;
    color: #CCCCCC;
    margin-bottom: 2rem;
}
.menu-filter {
    background-color: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-light);
}

/* Quick category pills */
.menu-quick-cats {
    background: #000000;
    padding: 1.2rem 0 0.5rem;
}
.menu-quick-cats .pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}
.pill {
    background: #121212;
    color: #ffffff;
    border: 1px solid #2a2a2a;
    border-radius: 999px;
    padding: 0.55rem 1rem;
    cursor: pointer;
    transition: 0.2s ease;
}
.pill:hover, .pill.active {
    border-color: #D2691E;
    color: #D2691E;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--gray-light);
    color: var(--black);
    border: 2px solid transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.menu-section {
    background-color: var(--white);
}

/* Modern cards like screenshot */
.menu-cards-modern {
    background: #000000;
    padding: 2rem 0 0.5rem;
}
.menu-cards-modern .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}
.mcard {
    background: linear-gradient(135deg, #1a1a1a 0%, #0b0b0b 100%);
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.mcard-img { height: 240px; border-radius: 10px; overflow: hidden; margin-bottom: 1rem; }
.mcard-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mcard-title { color: #ffffff; font-size: 1.05rem; line-height: 1.4; min-height: 3.2rem; }
.mcard-stars { color: #D2691E; letter-spacing: 3px; margin: 0.5rem 0 1rem; }
.mcard-btn { background: transparent; color: #D2691E; border: 1px solid #D2691E; padding: 0.5rem 0.9rem; border-radius: 6px; cursor: pointer; }
.mcard-btn:hover { background: #D2691E; color: #ffffff; }

@media (max-width: 1024px) {
  .menu-cards-modern .cards-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .menu-cards-modern .cards-grid { grid-template-columns: 1fr; }
}

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

.category-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

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

.menu-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-item-image {
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}

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

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.menu-item-info h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
}

.menu-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.menu-description {
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.menu-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tag-hot { background-color: #FFE5E5; color: #D32F2F; }
.tag-cold { background-color: #E3F2FD; color: #1976D2; }
.tag-popular { background-color: #FFF9C4; color: #F57C00; }
.tag-signature { background-color: #E1BEE7; color: #7B1FA2; }
.tag-vegetarian { background-color: #C8E6C9; color: #388E3C; }
.tag-healthy { background-color: #B2DFDB; color: #00796B; }

.menu-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
}

.menu-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.menu-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* ===================================
   Order Page
   =================================== */
.delivery-check {
    background-color: var(--gray-light);
}

.delivery-checker {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.delivery-checker h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.delivery-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.delivery-form input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--gray-medium);
    border-radius: 5px;
    font-size: 1rem;
}

.delivery-result {
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.delivery-result.success {
    background-color: #C8E6C9;
    color: #388E3C;
}

.delivery-result.error {
    background-color: #FFCDD2;
    color: #D32F2F;
}

.order-type-section {
    background-color: var(--white);
}

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

.order-type-card {
    background-color: var(--white);
    border: 3px solid var(--gray-light);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.order-type-card:hover,
.order-type-card.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.order-type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.order-type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.order-type-card p {
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.delivery-time {
    color: var(--primary-color);
    font-weight: 600;
}

.order-menu-section {
    background-color: var(--gray-light);
}

.order-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.order-items {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
}

.order-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.order-tab {
    background-color: var(--gray-light);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}

.order-tab:hover,
.order-tab.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-item {
    display: flex;
    gap: 1rem;
    background-color: var(--gray-light);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.order-item:hover {
    box-shadow: var(--shadow);
}

.order-item-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}

.order-item-info {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.order-item-info h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
}

.order-item-info p {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.order-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-item-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-add-to-cart {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-add-to-cart:hover {
    background-color: var(--dark-color);
}

.order-cart {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-light);
}

.cart-header h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
}

.cart-count {
    background-color: var(--primary-color);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cart-items {
    margin-bottom: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.cart-empty {
    text-align: center;
    color: var(--gray-medium);
    padding: 2rem 0;
}

.cart-summary {
    border-top: 2px solid var(--gray-light);
    padding-top: 1rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: var(--gray-dark);
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    border-top: 2px solid var(--gray-light);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
}

@media (max-width: 968px) {
    .order-layout {
        grid-template-columns: 1fr;
    }

    .order-cart {
        position: relative;
        top: 0;
    }
}

/* ===================================
   Modal
   =================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray-dark);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--black);
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

/* ===================================
   Forms
   =================================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-light);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

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

/* ===================================
   About Page
   =================================== */
.about-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.about-story {
    background-color: var(--white);
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.story-image-large {
    position: sticky;
    top: 100px;
}

.image-placeholder {
    border-radius: 10px;
}

.story-text-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
    line-height: 1.8;
}

.values-section {
    background-color: var(--gray-light);
}

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

.value-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.value-card p {
    color: var(--gray-dark);
}

.team-section {
    background-color: var(--white);
}

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

.team-member {
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--gray-dark);
}

.ambience-section {
    background-color: var(--gray-light);
}

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

.ambience-item {
    text-align: center;
}

.ambience-photo {
    height: 250px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.ambience-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.ambience-item p {
    color: var(--gray-dark);
}

.testimonials-section {
    background-color: var(--white);
}

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

.testimonial-card {
    background-color: var(--gray-light);
    border-radius: 10px;
    padding: 2rem;
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.testimonial-card p {
    color: var(--gray-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author strong {
    color: var(--dark-color);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.about-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

    .story-image-large {
        position: relative;
        top: 0;
    }
}

/* ===================================
   Contact Page
   =================================== */
.contact-info-section {
    background-color: var(--white);
}

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

.contact-info-card {
    background-color: var(--gray-light);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-info-card p {
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.landmark {
    color: var(--primary-color);
    font-weight: 600;
}

.map-section {
    background-color: var(--gray-light);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.directions-info {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
}

.directions-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.directions-info ul {
    list-style: disc;
    padding-left: 2rem;
}

.directions-info li {
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.contact-form-section {
    background-color: var(--white);
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.form-intro p {
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

.quick-contact {
    background-color: var(--gray-light);
    border-radius: 10px;
    padding: 1.5rem;
}

.quick-contact p {
    margin-bottom: 0.5rem;
}

.contact-form-wrapper {
    background-color: var(--gray-light);
    border-radius: 10px;
    padding: 2rem;
}

.form-success {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
}

.form-success h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.form-success p {
    color: var(--gray-dark);
}

.social-section {
    background-color: var(--gray-light);
    text-align: center;
}

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

.social-link-large {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.social-link-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.social-link-large .social-icon {
    font-size: 3rem;
}

.social-link-large .social-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
}

.social-link-large .social-handle {
    color: var(--gray-medium);
}

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

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
}

.footer-col p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

/* ===================================
   Coffee Experiences Section
   =================================== */
.coffee-experiences {
    background-color: #000000;
    padding: 5rem 0;
    color: #FFFFFF;
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.experiences-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.experiences-left,
.experiences-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.experiences-left {
    text-align: right;
}

.experiences-right {
    text-align: left;
}

.experience-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.experience-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #CCCCCC;
    max-width: 400px;
}

.experiences-left .experience-card p {
    margin-left: auto;
}

.experiences-right .experience-card p {
    margin-right: auto;
}

.experiences-center {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

.coffee-illustration {
    font-size: 15rem;
    filter: drop-shadow(0 10px 30px rgba(210, 105, 30, 0.3));
}

.coffee-illustration-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(210, 105, 30, 0.3));
}

/* Responsive for Coffee Experiences */
@media (max-width: 1024px) {
    .experiences-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .experiences-left,
    .experiences-right {
        text-align: center;
    }

    .experience-card p {
        margin: 0 auto !important;
    }

    .coffee-illustration {
        font-size: 10rem;
    }

    .coffee-illustration-img {
        max-width: 350px;
    }

    .section-title-center {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .coffee-experiences {
        padding: 3rem 0;
    }

    .section-title-center {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .experiences-left,
    .experiences-right {
        gap: 2rem;
    }

    .experience-card h3 {
        font-size: 1.3rem;
    }

    .experience-card p {
        font-size: 0.95rem;
    }

    .coffee-illustration {
        font-size: 8rem;
    }

    .coffee-illustration-img {
        max-width: 250px;
    }
}

/* ===================================
   Coffee Discovery Slider
   =================================== */
.coffee-discovery {
    background-color: #000000;
    padding: 5rem 0;
    color: #FFFFFF;
}

.coffee-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1400px;
}

.coffee-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.coffee-slider-track {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.coffee-card-wrapper {
    display: flex;
    justify-content: center;
}

.coffee-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    max-width: 380px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2a2a2a;
}

.coffee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(210, 105, 30, 0.3);
    border-color: #D2691E;
}

.coffee-card-image {
    width: 100%;
    height: 280px;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.coffee-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.coffee-card:hover .coffee-card-image img {
    transform: scale(1.1);
}

.coffee-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-weight: 500;
}

.coffee-rating {
    margin-bottom: 1.5rem;
}

.coffee-rating .star {
    color: #D2691E;
    font-size: 1.2rem;
    margin: 0 0.1rem;
}

.coffee-view-btn {
    background: transparent;
    color: #D2691E;
    border: 2px solid #D2691E;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.coffee-view-btn:hover {
    background-color: #D2691E;
    color: #FFFFFF;
    transform: scale(1.05);
}

.coffee-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.coffee-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #444444;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coffee-slider-dots .dot.active {
    background-color: #D2691E;
    transform: scale(1.3);
}

.coffee-slider-dots .dot:hover {
    background-color: #D2691E;
}

/* Responsive for Coffee Discovery Slider */
@media (max-width: 1024px) {
    .coffee-slider-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .coffee-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .coffee-discovery {
        padding: 3rem 0;
    }

    .coffee-slider-track {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .coffee-card {
        padding: 1.5rem;
    }

    .coffee-card-image {
        height: 220px;
    }

    .coffee-card h3 {
        font-size: 1.3rem;
    }

    .coffee-view-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ===================================
   Coffee Fit For Everyone Section
   =================================== */
.coffee-fit-section {
    background-color: #000000;
    padding: 5rem 0;
    color: #FFFFFF;
    width: 100%;
}

.coffee-fit-section .container {
    max-width: 100%;
    padding: 0 2rem;
}

.coffee-fit-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.coffee-fit-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.coffee-fit-header p {
    font-size: 1rem;
    line-height: 1.8;
    color: #CCCCCC;
}

.coffee-fit-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
    max-width: 100%;
    margin: 0;
}

.coffee-fit-media {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 500px;
    position: relative;
    width: 100%;
}

.coffee-fit-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.opening-hours {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
    height: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.opening-hours h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
    font-weight: 500;
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    overflow-y: auto;
    flex: 1;
}

.hours-list::-webkit-scrollbar {
    width: 6px;
}

.hours-list::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 3px;
}

.hours-list::-webkit-scrollbar-thumb {
    background: #D2691E;
    border-radius: 3px;
}

.hours-list::-webkit-scrollbar-thumb:hover {
    background: #ff8c42;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #2a2a2a;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item .location {
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: 500;
}

.hour-item .time {
    font-size: 1rem;
    color: #D2691E;
    font-weight: 400;
}

/* Responsive for Coffee Fit Section */
@media (max-width: 1024px) {
    .coffee-fit-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .coffee-fit-header h2 {
        font-size: 2rem;
    }

    .coffee-fit-media {
        height: 400px;
    }

    .opening-hours {
        height: auto;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .coffee-fit-section {
        padding: 3rem 0;
    }

    .coffee-fit-header {
        margin-bottom: 2rem;
    }

    .coffee-fit-header h2 {
        font-size: 1.5rem;
    }

    .coffee-fit-header p {
        font-size: 0.95rem;
    }

    .coffee-fit-media {
        height: 300px;
    }

    .opening-hours {
        padding: 1.5rem;
        height: auto;
        min-height: 350px;
    }

    .opening-hours h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hour-item .location {
        font-size: 1rem;
    }

    .hour-item .time {
        font-size: 0.9rem;
    }
}

/* ===================================
   Footer Styles
   =================================== */
.footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 3rem 0 2rem;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Top Section */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
}

.footer-logo {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-description {
    flex: 1;
    text-align: center;
    max-width: 600px;
}

.footer-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #CCCCCC;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    color: #FFFFFF;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #D2691E;
    transform: scale(1.1);
}

/* Bottom Section */
.footer-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    border-top: 1px solid #2a2a2a;
    padding-top: 2rem;
}

.footer-bottom-col {
    text-align: center;
}

.footer-bottom-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-weight: 500;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-text {
    font-size: 1rem;
    color: #CCCCCC;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0;
    }

    .footer-top {
        margin-bottom: 2rem;
    }

    .footer-description p {
        font-size: 0.9rem;
    }

    .footer-logo-img {
        height: 60px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

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

    .contact-text {
        font-size: 0.9rem;
    }
}

/* ===================================
   Utilities
   =================================== */
.hidden {
    display: none !important;
}
