/* ----------- Global Reset & Base Styles ----------- */
* {
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    box-sizing: border-box; /* Include padding and border in element's total width/height */
    font-family: 'Poppins', sans-serif; /* Set default font */
}

/* ----------- Body Styles ----------- */
body {
    color: #3c2f2f; /* Set default text color */
    line-height: 1.7; /* Improve readability with consistent line spacing */
    background-color: #fffaf5; /* Light background color for a soft aesthetic */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* ----------- Container Utility Class ----------- */
.container {
    max-width: 1440px; /* Limit content width */
    margin: 0 auto; /* Center the container horizontally */
    padding: 0 30px; /* Add horizontal padding */
}


/* ============================================== Header Syling ================================================================== */

.header {
    background: #ffffff; /* Default white background */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Subtle shadow for elevation */
    padding: 20px 0;
    position: fixed; /* Keeps header at the top on scroll */
    width: 100%;
    top: 0;
    z-index: 1000; /* Ensures header stays above other elements */
    transition: all 0.4s ease; /* Smooth transition for background and shadow */
}

/* Header style when scrolled */
.header.scrolled {
    background: rgba(255, 255, 255, 0.97); /* Slightly transparent for scroll effect */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12); /* Stronger shadow on scroll */
}

/* Layout for header content */
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ----------- Logo Styling ----------- */
.logo h1 a {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #5f3a24;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo h1 a:hover {
    color: #d4a373; /* Color change on hover */
}

/* ----------- Navigation Menu ----------- */
.nav ul {
    list-style: none;
    display: flex;
    gap: 30px; /* Space between nav items */
}

.nav-link {
    text-decoration: none;
    color: #3c2f2f;
    font-size: 1.15rem;
    font-weight: 500;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.nav-link:hover, 
.nav-link.active {
    color: #d4a373; /* Highlight active or hovered link */
}

/* Underline effect on hover/active */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: #d4a373;
    bottom: 0;
    left: 0;
    transition: width 0.4s ease;
}

.nav-link:hover::after, 
.nav-link.active::after {
    width: 100%; /* Animate underline */
}

/* ----------- Mobile Menu Icon ----------- */
.menu-icon {
    display: none; /* Hidden on desktop */
    font-size: 2rem;
    cursor: pointer;
    color: #3c2f2f;
    transition: all 0.3s ease;
}

.menu-icon:hover {
    color: #d4a373;
}

/* ============================================== Section Styles =========================================================== */
/* Global Container for Centering */
.container-style {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Safe padding to prevent edge touching */
    width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.hero-style {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video-style {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay-style {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 20px; /* Reduced padding for smaller screens */
    color: #fff;
    backdrop-filter: blur(3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 800px; /* Prevent overlay stretching */
    width: 90%; /* Responsive width */
}

.hero-style h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.6);
}

.hero-subtitle-style {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 25px;
}

.hero-description-style {
    font-size: 1.4rem;
    max-width: 650px;
    margin: 0 auto 40px;
}

.hero-cta-style {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.hero-button-style {
    background: linear-gradient(45deg, #5f3a24, #7b4e2f);
    color: #fff;
    padding: 16px 50px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.hero-button-style:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.newsletter-form-style {
    display: flex;
    gap: 10px;
    flex-wrap: wrap; /* Prevent overflow on small screens */
    justify-content: center;
}

.newsletter-form-style input {
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    width: 250px;
    max-width: 100%; /* Ensure input doesn’t overflow */
}

.hero-button-style.secondary-style {
    background: linear-gradient(45deg, #d4a373, #e8b88a);
    padding: 12px 30px;
}

/* ------------------------------------------------- Menu Preview --------------------------------------------------------- */
.menu-preview-style {
    padding: 80px 0; /* Reduced padding for better vertical spacing */
    background: #fffaf5;
    text-align: center;
}

.menu-carousel-style {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 30px;
    padding: 20px 0;
    margin: 0 auto;
    max-width: 1200px; /* Prevent stretching */
    overflow-x: auto; /* Fallback for older browsers */
}

.carousel-item-style {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.4s ease;
}

.carousel-item-style:hover {
    transform: scale(1.05);
}

.carousel-item-style img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.carousel-item-style h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #5f3a24;
    margin-bottom: 10px;
}

.carousel-item-style p {
    font-size: 1rem;
    color: #4a3728;
}

/* --------------------------------------------------- Section Divider ----------------------------------------------------------------------- */
.section-divider-style {
    text-align: center;
    padding: 40px 0;
}

.divider-icon-style {
    width: 100px;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.divider-icon-style:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* ----------------------------------------------------- Content Sections ----------------------------------------------------------------------------- */
.content-section-style {
    padding: 80px 0; /* Reduced for better mobile experience */
    background-color: #fffaf5;
}

.content-row-style {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Grid for better control */
    align-items: center;
    gap: 30px; /* Reduced gap for smaller screens */
    max-width: 1200px;
    margin: 0 auto;
}

.content-row-style.reverse-style {
    grid-template-columns: 1fr 1fr; /* Maintain grid for reverse */
    direction: rtl; /* Reverse content visually */
}

.content-row-style.reverse-style > * {
    direction: ltr; /* Reset child elements to normal direction */
}

.content-image-style, .content-text-style {
    min-width: 0; /* Prevent grid overflow */
}

.content-image-style img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s ease;
}

.content-image-style img:hover {
    transform: scale(1.03);
}

.content-text-style h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #5f3a24;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
}

.content-text-style h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #d4a373;
    bottom: -12px;
    left: 0;
}

.content-text-style p {
    font-size: 1.15rem;
    color: #4a3728;
    margin-bottom: 35px;
}

.content-button-style {
    background: linear-gradient(45deg, #5f3a24, #7b4e2f);
    color: #fff;
    padding: 14px 40px;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.content-button-style:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* --------------------------------------------------------------- Quote Section ----------------------------------------------------------------------------- */
.quote-section-style {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff, #fffaf5);
    text-align: center;
    position: relative;
}

.quote-section-style::before {
    content: '“';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 12rem;
    color: #d4a373;
    opacity: 0.08;
}

.quote-section-style blockquote {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px; /* Added padding for mobile */
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.quote-section-style p {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-style: italic;
    color: #5f3a24;
    margin-bottom: 20px;
}

.quote-section-style footer {
    font-size: 1.3rem;
    color: #4a3728;
    font-weight: 500;
}

/* ------------------------------------------------------------- Back to Top ----------------------------------------------------------- */
.back-to-top-style {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #5f3a24;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.4s ease;
}

.back-to-top-style.show-style {
    opacity: 1;
}

.back-to-top-style:hover {
    background: #7b4e2f;
    transform: scale(1.1);
}

/* =============================================== Responsive Design Style CSS ================================================  */
@media (max-width: 1200px) {
    .container-style {
        max-width: 960px;
    }

    .hero-style h1 {
        font-size: 4.5rem;
    }

    .hero-subtitle-style {
        font-size: 1.8rem;
    }

    .hero-description-style {
        font-size: 1.3rem;
    }

    .content-row-style {
        gap: 20px;
    }

    .content-text-style h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .container-style {
        max-width: 720px;
    }

    .hero-style h1 {
        font-size: 4rem;
    }

    .hero-overlay-style {
        padding: 40px 15px;
    }

    .content-row-style, .content-row-style.reverse-style {
        grid-template-columns: 1fr; /* Stack on smaller screens */
        text-align: center;
    }

    .content-text-style h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .container-style {
        max-width: 540px;
        padding: 0 15px;
    }

    .nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        text-align: center;
        padding: 30px 0;
    }

    .nav ul li {
        margin: 15px 0;
    }

    .menu-icon {
        display: block;
    }

    .hero-style h1 {
        font-size: 3rem;
    }

    .hero-subtitle-style {
        font-size: 1.6rem;
    }

    .hero-description-style {
        font-size: 1.2rem;
    }

    .hero-cta-style {
        flex-direction: column;
    }

    .newsletter-form-style {
        width: 100%;
        justify-content: center;
    }

    .newsletter-form-style input {
        width: 100%;
    }

    .menu-carousel-style {
        grid-template-columns: 1fr; /* Single column for mobile */
    }

    .carousel-item-style {
        max-width: 300px;
        margin: 0 auto; /* Center items */
    }

    .quote-section-style p {
        font-size: 2rem;
    }

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

@media (max-width: 480px) {
    .container-style {
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-subtitle-style {
        font-size: 1.3rem;
    }

    .hero-description-style {
        font-size: 1rem;
    }

    .hero-overlay-style {
        padding: 30px 10px;
    }

    .hero-button-style {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .content-text-style h2 {
        font-size: 2.2rem;
    }

    .quote-section-style p {
        font-size: 1.8rem;
    }

    .quote-section-style blockquote {
        padding: 20px 10px;
    }
}
/* ============================================== End of Section Styles CSS =========================================================== */

/* ============================================== Enhanced Scroll Effects =========================================================== */
/* Scroll-Triggered Fade-In and Slide-Up */
.hero-overlay-style, .carousel-item-style, .content-row-style, .quote-section-style blockquote {
    opacity: 1; /* Ensure visibility without JS */
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-overlay-style.is-visible, .carousel-item-style.is-visible, .content-row-style.is-visible, .quote-section-style blockquote.is-visible {
    opacity: 1;
    transform: translateY(0);
    margin-top: 90px; /* Adjust margin for visibility */
}

.hero-overlay-style:not(.is-visible), .carousel-item-style:not(.is-visible), .content-row-style:not(.is-visible), .quote-section-style blockquote:not(.is-visible) {
    opacity: 0;
    transform: translateY(30px);
}

/* Staggered Animation for Carousel Items */
.carousel-item-style:nth-child(1) { transition-delay: 0.1s; }
.carousel-item-style:nth-child(2) { transition-delay: 0.2s; }
.carousel-item-style:nth-child(3) { transition-delay: 0.3s; }

/* Subtle Image Scale on Scroll */
.content-image-style img {
    transition: transform 0.8s ease-out;
}

.content-row-style.is-visible .content-image-style img {
    transform: scale(1);
}

.content-row-style:not(.is-visible) .content-image-style img {
    transform: scale(0.95);
}

/* Responsive Adjustments for Animations */
@media (max-width: 768px) {
    .hero-overlay-style, .carousel-item-style, .content-row-style, .quote-section-style blockquote {
        transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Faster on mobile */
    }
}

@media (max-width: 480px) {
    .hero-overlay-style, .carousel-item-style, .content-row-style, .quote-section-style blockquote {
        transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* Even faster for small screens */
    }
}
/* ============================================== End of Enhanced Scroll Effects =========================================================== */

/* ============================================== Menu Section Styles =========================================================== */
/* Global Container for Centering */
.container-menu {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.hero-menu {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;

    background: linear-gradient(
        rgba(0, 0, 0, 0.5), 
        rgba(0, 0, 0, 0.5)
      ),
      url('../images/hot_coffee.jpg'); /* Replace with your image path or URL */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.hero-overlay-menu {
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.5);
    max-width: 800px;
    width: 90%;
    border-radius: 15px;
    margin-top: 120px;
}

.hero-menu h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-overlay-menu p {
    font-size: 1.4rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Menu Sections */
.menu-section-menu {
    padding: 80px 0;
    background: #fffaf5;
    text-align: center;
}

.menu-section-menu h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #5f3a24;
    margin-bottom: 15px;
}

.section-subtitle-menu {
    font-size: 1.3rem;
    color: #4a3728;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.menu-item-menu {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.4s ease;
}

.menu-item-menu:hover {
    transform: scale(1.05);
}

.menu-item-menu h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #5f3a24;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.icon-menu {
    font-size: 1.5rem;
    color: #d4a373;
}

.menu-item-menu p {
    font-size: 1rem;
    color: #4a3728;
    margin-bottom: 15px;
}

.price-menu {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #5f3a24;
}

/* Section Divider */
.section-divider-menu {
    text-align: center;
    padding: 40px 0;
}

.divider-icon-menu {
    width: 100px;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.divider-icon-menu:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container-menu {
        max-width: 960px;
    }

    .hero-menu h1 {
        font-size: 4rem;
    }

    .menu-section-menu h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .container-menu {
        max-width: 720px;
    }

    .hero-menu h1 {
        font-size: 3.5rem;
    }

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

    .menu-grid-menu {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container-menu {
        max-width: 540px;
        padding: 0 15px;
    }

    .hero-menu {
        height: 50vh;
    }

    .hero-menu h1 {
        font-size: 3rem;
    }

    .hero-overlay-menu {
        padding: 30px 15px;
    }

    .menu-section-menu {
        padding: 60px 0;
    }

    .menu-section-menu h2 {
        font-size: 2.5rem;
    }

    .section-subtitle-menu {
        font-size: 1.2rem;
    }

    .menu-grid-menu {
        grid-template-columns: 1fr; /* Single column for mobile */
    }

    .menu-item-menu {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container-menu {
        max-width: 100%;
        padding: 0 10px;
    }

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

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

    .menu-section-menu h2 {
        font-size: 2.2rem;
    }

    .section-subtitle-menu {
        font-size: 1rem;
    }

    .menu-item-menu h3 {
        font-size: 1.6rem;
    }

    .menu-item-menu p {
        font-size: 0.9rem;
    }

    .price-menu {
        font-size: 1.1rem;
    }
}
/* ============================================== End of Menu Section Styles =========================================================== */

/* ============================================== Enhanced Scroll Effects =========================================================== */
/* Scroll-Triggered Fade-In and Slide-Up */
.hero-overlay-menu, .menu-section-menu, .menu-item-menu, .section-divider-menu {
    opacity: 1; /* Ensure visibility without JS */
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-overlay-menu.is-visible, .menu-section-menu.is-visible, .menu-item-menu.is-visible, .section-divider-menu.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-overlay-menu:not(.is-visible), .menu-section-menu:not(.is-visible), .menu-item-menu:not(.is-visible), .section-divider-menu:not(.is-visible) {
    opacity: 0;
    transform: translateY(30px);
}

/* Staggered Animation for Menu Grid Items */
.menu-item-menu:nth-child(1) { transition-delay: 0.1s; }
.menu-item-menu:nth-child(2) { transition-delay: 0.2s; }
.menu-item-menu:nth-child(3) { transition-delay: 0.3s; }
.menu-item-menu:nth-child(4) { transition-delay: 0.4s; }
.menu-item-menu:nth-child(5) { transition-delay: 0.5s; }
.menu-item-menu:nth-child(6) { transition-delay: 0.6s; }

/* Subtle Scale Effect on Scroll */
.menu-item-menu {
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.menu-item-menu.is-visible {
    transform: scale(1);
}

.menu-item-menu:not(.is-visible) {
    transform: scale(0.95);
}

/* Responsive Adjustments for Animations */
@media (max-width: 768px) {
    .hero-overlay-menu, .menu-section-menu, .menu-item-menu, .section-divider-menu {
        transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Faster on mobile */
    }
}

@media (max-width: 480px) {
    .hero-overlay-menu, .menu-section-menu, .menu-item-menu, .section-divider-menu {
        transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* Even faster for small screens */
    }
}
/* ============================================== End of Enhanced Scroll Effects =========================================================== */
    




/* ============================================== About Section CSS =========================================================== */
/* Global Container for Centering */
.container-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.hero-about {
    height: 80vh;
    background: url('../images/pexels-marta-dzedyshko-1042863-2067431.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    will-change: transform;
}

.hero-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.65));
    z-index: 1;
}

.hero-overlay-about {
    position: relative;
    z-index: 2;
    background: rgba(74, 55, 40, 0.6);
    padding: 60px 20px; /* Adjusted for smaller screens */
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1.2s ease, transform 1.2s ease;
    margin-top: 110px;
    max-width: 800px; /* Prevent stretching */
    width: 90%;
    
}

.hero-overlay-about.fade-in-about {
    opacity: 1;
    transform: translateY(0);
}

.hero-about h1 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 4.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-subtitle-about {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 400;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.hero-description-about {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 600px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    margin-left: auto;
    margin-right: auto;
}

.hero-button-about {
    display: inline-block;
    padding: 12px 24px;
    background: #d4a373;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 25px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-button-about:hover {
    background: #b5895a;
    transform: scale(1.05);
}

/* Content Sections */
.content-section-about {
    padding: 80px 0;
}

.content-row-about {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Grid for better control */
    align-items: center;
    gap: 30px; /* Reduced for smaller screens */
    max-width: 1200px;
    margin: 0 auto;
}

.content-row-about.reverse-about {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.content-row-about.reverse-about > * {
    direction: ltr;
}

.content-image-about {
    min-width: 0;
}

.content-image-about img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.content-image-about img:hover {
    transform: scale(1.03);
}

.content-text-about {
    min-width: 0;
    padding: 20px;
}

.content-text-about h2 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 2.8rem;
    color: #5a3b24;
    margin-bottom: 20px;
    position: relative;
}

.content-text-about h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #d4a373;
    bottom: -10px;
    left: 0;
}

.content-text-about p {
    font-size: 1.2rem;
    color: #4a3728;
    margin-bottom: 20px;
}

.content-button-about {
    display: inline-block;
    padding: 10px 20px;
    background: #d4a373;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 20px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.content-button-about:hover {
    background: #b5895a;
    transform: scale(1.05);
}

/* Section Divider */
.section-divider-about {
    text-align: center;
    padding: 20px 0;
    background: #fdf6ec;
}

.divider-icon-about {
    width: 100px;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.divider-icon-about:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Quote Section */
.quote-section-about {
    padding: 60px 0;
    background: #f8f1e9;
    text-align: center;
}

.quote-section-about blockquote {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 2rem;
    color: #5a3b24;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quote-section-about footer {
    font-size: 1.2rem;
    color: #4a3728;
    font-weight: 400;
}

/* Juicy Section */
.juicy-section-about {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff, #fdf6ec);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container-about {
        max-width: 960px;
    }

    .hero-about h1 {
        font-size: 4.2rem;
    }

    .hero-subtitle-about {
        font-size: 1.6rem;
    }

    .hero-description-about {
        font-size: 1.3rem;
    }

    .content-text-about h2 {
        font-size: 2.6rem;
    }
}

@media (max-width: 992px) {
    .container-about {
        max-width: 720px;
    }

    .hero-about h1 {
        font-size: 3.8rem;
    }

    .hero-overlay-about {
        padding: 40px 15px;
    }

    .content-row-about, .content-row-about.reverse-about {
        grid-template-columns: 1fr; /* Stack on smaller screens */
        text-align: center;
    }

    .content-text-about h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .container-about {
        max-width: 540px;
        padding: 0 15px;
    }

    .hero-about {
        height: 60vh;
    }

    .hero-about h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle-about {
        font-size: 1.5rem;
    }

    .hero-description-about {
        font-size: 1.2rem;
        padding: 0 15px;
    }

    .hero-button-about {
        font-size: 1.1rem;
        padding: 10px 20px;
    }

    .hero-overlay-about {
        padding: 30px 15px;
    }

    .content-section-about {
        padding: 60px 0;
    }

    .content-row-about {
        gap: 20px;
    }

    .content-text-about {
        padding: 0;
    }

    .content-text-about h2 {
        font-size: 2.2rem;
    }

    .content-text-about p {
        font-size: 1.1rem;
    }

    .quote-section-about blockquote {
        font-size: 1.6rem;
    }

    .quote-section-about footer {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container-about {
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-about h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle-about {
        font-size: 1.3rem;
    }

    .hero-description-about {
        font-size: 1rem;
    }

    .hero-button-about {
        font-size: 1rem;
        padding: 8px 16px;
    }

    .hero-overlay-about {
        padding: 20px 10px;
        margin-top: 120px; /* Adjusted for smaller screens */
    }

    .content-text-about h2 {
        font-size: 2rem;
    }

    .content-text-about p {
        font-size: 1rem;
    }

    .content-button-about {
        font-size: 1rem;
        padding: 8px 16px;
    }

    .quote-section-about blockquote {
        font-size: 1.4rem;
    }

    .quote-section-about footer {
        font-size: 0.9rem;
    }
}

/* Navigation and Footer (Unaffected) */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }

    .nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: linear-gradient(180deg, #ffffff, #fdf6ec);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 100;
        transform: translateY(-10px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav.active {
        display: block;
        transform: translateY(0);
        opacity: 1;
    }

    .nav ul {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .nav ul li {
        margin: 15px 0;
    }

    .nav ul li a {
        padding: 15px 0;
        font-size: 1.3rem;
    }

    .menu-icon {
        display: block;
    }

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

    .social-links {
        justify-content: center;
        display: flex;
    }
}
/* ============================================== End of About Section CSS =========================================================== */





/* ============================================== Contact Section CSS =========================================================== */
/* Global Container for Centering */
.container-contact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.hero-contact {
    height: 80vh;
    background: url('../images/phone.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px; /* Account for potential fixed header */
}

.hero-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-overlay-contact {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    color: #fff;
    background: rgba(74, 55, 40, 0.6);
    max-width: 800px;
    width: 90%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    opacity: 1; /* Ensure visibility without JS */
    transform: translateY(0);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.hero-overlay-contact.fade-in-contact {
    opacity: 1;
    transform: translateY(0);
}

.hero-contact h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-overlay-contact p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.hero-button-contact {
    background: linear-gradient(45deg, #6f4e37, #8b5a2b);
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-button-contact:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Section Divider */
.section-divider-contact {
    text-align: center;
    padding: 20px 0;
    background: #f8f1e9;
}

.divider-icon-contact {
    width: 100px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.divider-icon-contact:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Contact Form Section */
.contact-form-section-contact {
    padding: 80px 0;
    background-color: #f8f1e9;
    text-align: center;
}

.contact-form-section-contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #6f4e37;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
}

.contact-form-section-contact h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #d4a373;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-form-contact {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 1; /* Ensure visibility without JS */
    transform: translateY(0);
    border: 1px solid #e0e0e0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-form-contact.fade-in-contact {
    opacity: 1;
    transform: translateY(0);
}

.form-group-contact {
    margin-bottom: 20px;
    text-align: left;
}

.form-group-contact label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #6f4e37;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group-contact input,
.form-group-contact textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #3c2f2f;
    background-color: #f8f1e9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group-contact input:focus,
.form-group-contact textarea:focus {
    border-color: #d4a373;
    box-shadow: 0 0 5px rgba(212, 163, 115, 0.3);
    outline: none;
}

.form-group-contact textarea {
    resize: vertical;
}

.form-button-contact {
    background: linear-gradient(45deg, #6f4e37, #8b5a2b);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.form-button-contact:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Contact Details Section */
.contact-details-section-contact {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff, #f8f1e9);
    text-align: center;
}

.contact-details-section-contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #6f4e37;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
}

.contact-details-section-contact h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #d4a373;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-details-grid-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 1; /* Ensure visibility without JS */
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.8s ease;
}

.info-item-contact.fade-in-contact {
    opacity: 1;
    transform: translateY(0);
}

.info-item-contact:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.info-item-contact .icon-contact {
    font-size: 1.8rem;
    color: #d4a373;
    transition: transform 0.3s ease;
}

.info-item-contact:hover .icon-contact {
    transform: rotate(15deg);
}

.info-item-contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #6f4e37;
    margin-bottom: 5px;
}

.info-item-contact p {
    font-size: 1.1rem;
    color: #4a3728;
    margin: 0;
}

.info-item-contact p a {
    color: #6f4e37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item-contact p a:hover {
    color: #d4a373;
}

.contact-map-contact {
    border-radius: 10px;
  
}

.contact-map-contact.fade-in-contact {
    opacity: 1;
    transform: translateY(0);
}

.contact-map-contact iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container-contact {
        max-width: 960px;
    }

    .hero-contact h1 {
        font-size: 4rem;
    }

    .contact-form-section-contact h2 {
        font-size: 2.8rem;
    }

    .contact-details-section-contact h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .container-contact {
        max-width: 720px;
    }

    .hero-contact h1 {
        font-size: 3.5rem;
    }

    .hero-overlay-contact {
        padding: 30px 15px;
    }

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

    .contact-details-grid-contact {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-map-contact {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .container-contact {
        max-width: 540px;
        padding: 0 15px;
    }

    .hero-contact {
        height: 50vh;
        background-attachment: scroll;
        padding-top: 60px; /* Adjusted for header */
    }

    .hero-overlay-contact {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .hero-contact h1 {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .hero-overlay-contact p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .hero-button-contact {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .section-divider-contact {
        padding: 15px 0;
    }

    .divider-icon-contact {
        width: 80px;
    }

    .contact-form-section-contact {
        padding: 60px 0;
    }

    .contact-form-section-contact h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .contact-form-contact {
        padding: 20px;
        max-width: 100%;
    }

    .form-group-contact {
        margin-bottom: 15px;
    }

    .form-group-contact label {
        font-size: 1rem;
    }

    .form-group-contact input,
    .form-group-contact textarea {
        padding: 10px;
        font-size: 0.95rem;
    }

    .form-button-contact {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .contact-details-section-contact {
        padding: 60px 0;
    }

    .contact-details-section-contact h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .contact-info-contact {
        gap: 15px;
    }

    .info-item-contact {
        padding: 15px;
        border-radius: 8px;
    }

    .info-item-contact .icon-contact {
        font-size: 1.6rem;
    }

    .info-item-contact h3 {
        font-size: 1.3rem;
    }

    .info-item-contact p {
        font-size: 0.95rem;
    }

    .contact-map-contact {
        min-height: 200px;
    }

    .contact-map-contact iframe {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .container-contact {
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-contact {
        height: 45vh;
        padding-top: 50px;
    }

    .hero-overlay-contact {
        padding: 15px 10px;
        margin-top: 50px;
    }

    .hero-contact h1 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .hero-overlay-contact p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .hero-button-contact {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .section-divider-contact {
        padding: 10px 0;
    }

    .divider-icon-contact {
        width: 60px;
    }

    .contact-form-section-contact {
        padding: 40px 0;
    }

    .contact-form-section-contact h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .contact-form-contact {
        padding: 15px;
    }

    .form-group-contact {
        margin-bottom: 12px;
    }

    .form-group-contact label {
        font-size: 0.9rem;
    }

    .form-group-contact input,
    .form-group-contact textarea {
        padding: 8px;
        font-size: 0.9rem;
    }

    .form-button-contact {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .contact-details-section-contact {
        padding: 40px 0;
    }

    .contact-details-section-contact h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .contact-info-contact {
        gap: 12px;
    }

    .info-item-contact {
        padding: 12px;
    }

    .info-item-contact .icon-contact {
        font-size: 1.4rem;
    }

    .info-item-contact h3 {
        font-size: 1.2rem;
    }

    .info-item-contact p {
        font-size: 0.9rem;
    }

    .contact-map-contact {
        min-height: 180px;
    }
}
/* ============================================== End of Contact Section CSS =========================================================== */


/* Hero Section */
.hero {
    background: url('../images/brew.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    background: rgba(74, 55, 40, 0.6);
    padding: 30px;
    color: #FFF8F0;
    background: rgba(74, 55, 40, 0.6);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 20px;
}

.hero-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #D4A373;
    color: #FFF8F0;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #B5895A;
}

/* Article Section */
.article-section {
    padding: 60px 0;
}

.article-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.article-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 30px 0 15px;
}

.article-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Quote Section */
.quote-section {
    background-color: #F5E6D3;
    padding: 40px 0;
    text-align: center;
}

.quote-section blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #4A3728;
    max-width: 700px;
    margin: 0 auto;
}

.quote-section footer {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #6B4E31;
}

/* Values Section */
.values-section {
    padding: 60px 0;
    background-color: #FFF8F0;
    text-align: center;
}

.values-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.mission-statement {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.values-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.values-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: left;
}

.values-list strong {
    color: #D4A373;
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background-color: #F5E6D3;
}

.team-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    flex: 1 1 300px;
    max-width: 350px;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-member h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.team-member .role {
    font-size: 1.1rem;
    color: #6B4E31;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

/* ============================================== Responsive Design =========================================================== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

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

    .hero-description {
        font-size: 1.2rem;
    }

    .content-row {
        gap: 40px;
    }

    .content-text h2 {
        font-size: 2.6rem;
    }

    /* Enhanced Rules */
    .hero-overlay {
        padding: 30px 15px; /* Slightly reduced padding */
        max-width: 90%; /* Prevent stretching */
        margin: 0 auto;
    }

    .content-image img {
        width: 100%;
        height: auto; /* Ensure images scale properly */
    }

    .newsletter-form input {
        max-width: 300px; /* Prevent input overflow */
    }

    .quote-section blockquote {
        padding: 30px 15px; /* Adjust padding */
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        text-align: center;
        padding: 30px 0;
    }

    .nav ul li {
        margin: 15px 0;
    }

    .menu-icon {
        display: block;
    }

    .hero h1 {
        font-size: 3rem;
        margin-top: 50px;
    }

    .hero-overlay {
        padding: 40px;
        margin-top: 60px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .newsletter-form {
        width: 100%;
        justify-content: center;
    }

    .newsletter-form input {
        width: 100%;
    }

    .content-row, .content-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .content-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .quote-section p {
        font-size: 2rem;
    }

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

    /* Enhanced Rules */
    .hero {
        height: auto; /* Prevent fixed height issues */
        min-height: 60vh;
        padding: 20px 0; /* Flexible padding */
    }

    .hero-overlay {
        padding: 20px 15px; /* Tighter padding */
        margin-top: 80px; /* Adjusted for header */
        width: 95%; /* Slightly narrower */
    }

    .hero-button {
        padding: 12px 30px; /* Smaller buttons */
        font-size: 1rem;
    }

    .nav ul li a {
        font-size: 1.2rem;
        padding: 15px;
        display: block; /* Full touch area */
        touch-action: manipulation; /* Improve touch response */
    }

    .menu-icon {
        font-size: 1.8rem;
        padding: 10px;
        cursor: pointer;
        touch-action: manipulation;
    }

    .content-row {
        gap: 20px; /* Reduced gap */
        padding: 0 10px;
    }

    .content-image, .content-text {
        width: 100%; /* Full width */
    }

    .content-image img {
        max-width: 100%;
        height: auto;
    }

    .quote-section blockquote {
        padding: 20px 10px;
        font-size: 1.8rem;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .footer-section p, .footer-bottom p {
        font-size: 0.9rem;
    }

    .social-links a {
        font-size: 1.2rem;
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

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

    .content-text h2 {
        font-size: 2.2rem;
    }

    /* Enhanced Rules */
    .hero {
        min-height: 50vh;
        padding: 15px 0;
    }

    .hero-overlay {
        padding: 15px 10px;
        margin-top: 70px; /* Adjusted for smaller header */
        width: 90%;
    }

    .hero-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .hero-cta {
        gap: 10px;
    }

    .newsletter-form input {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .nav ul {
        padding: 20px 0;
    }

    .nav ul li a {
        font-size: 1.1rem;
        padding: 10px;
    }

    .menu-icon {
        font-size: 1.6rem;
        padding: 8px;
    }

    .content-row {
        gap: 15px;
    }

    .content-text h2 {
        margin-bottom: 15px;
    }

    .content-text p {
        font-size: 1rem;
    }

    .content-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .quote-section p {
        font-size: 1.6rem;
    }

    .quote-section blockquote {
        padding: 15px 10px;
    }

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

    .footer-section p, .footer-bottom p {
        font-size: 0.8rem;
    }

    .social-links a {
        font-size: 1.1rem;
        margin: 0 6px;
    }
}

/* New Breakpoint for Extra Small Devices */
@media (max-width: 576px) {
    .hero {
        min-height: 45vh;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-top: 40px;
    }

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

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-overlay {
        padding: 10px 8px;
        margin-top: 60px;
        width: 92%;
    }

    .hero-button {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .newsletter-form input {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .content-row {
        gap: 10px;
    }

    .content-text h2 {
        font-size: 2rem;
    }

    .content-text p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .content-button {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .quote-section p {
        font-size: 1.4rem;
    }

    .quote-section blockquote {
        padding: 10px 8px;
    }

    .footer-section {
        margin-bottom: 15px;
    }

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

    .footer-bottom {
        padding-top: 15px;
    }
}
/* ============================================== End of Enhanced Responsive Design =========================================================== */
/* ============================================== End of Our story Section CSS =========================================================== */



/* ============================================== Event section =========================================================== */


/* Hero Section */
.hero {
    background: url('../images/bliss_member.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    background: rgba(74, 55, 40, 0.6);
    color: #FFF8F0;
    margin-top: 20px;
    
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Article Section */
.article-section {
    padding: 60px 0;
    background-color: #FFF8F0;
}

.article-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.article-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 30px 0 15px;
}

.article-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Quote Section */
.quote-section {
    background-color: #F5E6D3;
    padding: 40px 0;
    text-align: center;
}

.quote-section blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #4A3728;
    max-width: 700px;
    margin: 0 auto;
}

.quote-section footer {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #6B4E31;
}


/* Responsive Design */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

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

@media (max-width: 600px) {
    .hero {
        height: 50vh;
    }

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

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

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

    .article-section h2 {
        font-size: 2rem;
    }

    .article-section h3 {
        font-size: 1.5rem;
    }

    .quote-section blockquote {
        font-size: 1.5rem;
    }
}
/* ============================================== End of Event section CSS =========================================================== */


/* ============================================== Loyalty Section CSS =========================================================== */




/* Signup Section */
.signup-section {
    padding: 120px 0 60px;
    background-color: #FFF8F0;
    text-align: center;
}

.signup-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.2rem;
    color: #6B4E31;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #4A3728;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #d3c7a4;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #5f3a24;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.form-group.checkbox input {
    width: auto;
}

.form-message {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #d9534f;
    display: none;
}

.form-message.success {
    color: #28a745;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #5f3a24;
    color: #FFF8F0;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #4A3728;
}



/* Responsive Design */
@media (max-width: 600px) {
    .signup-section h2 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .form-container {
        padding: 20px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
/* ============================================== End of Loyalty Section CSS =========================================================== */



/* ============================================== promotion CSS =========================================================== */



/* Hero Section */
.hero {
    background: url('../images/promotion.jpg') no-repeat center center/cover;
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    background: rgba(74, 55, 40, 0.6);
    padding: 6px;
    color: #FFF8F0;
    margin-top: 100px;
    
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 20px;
}

.hero-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #D4A373;
    color: #FFF8F0;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #B5895A;
}

/* Promotions Section */
.promotions-section {
    padding: 60px 0;
    background-color: #FFF8F0;
}

.promotions-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.promotions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.promotion-item {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #F5E6D3;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promotion-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.promotion-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.promotion-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.promotion-item p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.promotion-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #D4A373;
    color: #FFF8F0;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.promotion-button:hover {
    background-color: #B5895A;
}

/* Quote Section */
.quote-section {
    background-color: #F5E6D3;
    padding: 40px 0;
    text-align: center;
}

.quote-section blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #4A3728;
    max-width: 700px;
    margin: 0 auto;
}

.quote-section footer {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #6B4E31;
}



/* Responsive Design */
@media (max-width: 900px) {
    .nav ul {
        display: none;
    }

    .nav.active ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fffaf5;
        padding: 20px 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 15px;
        text-align: center;
    }

    .menu-icon {
        display: block;
    }



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

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

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

    .promotions-grid {
        gap: 20px;
    }

    .promotion-item {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

@media (max-width: 600px) {
    .hero {
        height: 45vh;

    }







 @media (max-width: 600px) {
    .hero {
        height: 45vh;
        background-image: url('../images/p');
        background-color: #4A3728; /* Optional fallback background color */
    }

    .hero-overlay {
     
        color: #fff; /* Ensure text is visible */

    }
}



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

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

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

    .promotions-section h2 {
        font-size: 2rem;
    }

    .promotion-item h3 {
        font-size: 1.5rem;
    }

    .promotion-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .quote-section blockquote {
        font-size: 1.5rem;
    }
}

/* ============================================== End of promotion CSS =========================================================== */
























































/* --------------------------------------------------------------------- Footer ------------------------------------------------------------ */
.footer {
    background: url('../images/coffee-texture.jpg') no-repeat center center/cover, #2c2c2c;
    background-blend-mode: overlay;
    color: #fff;
    padding: 80px 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.9);
}

.footer-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p, .footer-section a {
    font-size: 1.05rem;
    color: #e0e0e0;
    font-weight: 400;
    text-decoration: none;
}

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

.social-links a {
    color: #fff;
    font-size: 1.8rem;
    margin-right: 20px;
    transition: all 0.4s ease;
}

.social-links a:hover {
    color: #d4a373;
    transform: translateY(-4px);
}

.footer-bottom {
    position: relative;
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 25px;
}

.footer-bottom p {
    font-size: 1rem;
    color: #e0e0e0;
}

.footer-bottom a {
    color: #d4a373;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}









/* ===============================================
   ===           END OF STYLESHEET             ===
   =============================================== */
/* 
       .-""""-.
     / -   -  \
    |  o   o  |
    |    ∆    |   
    |  \___/  |   
     \_______/
*/