/* ===========================
   BASE & RESET
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    /* 🎨 Refined Terracotta Palette */
    --color-primary: hsl(20, 49%, 52%);           /* main brand terracotta */
    --color-primary-dark: #8F4A2A;      /* accent for hover or shadows */
    --color-primary-light: #E2A37F;     /* soft highlight tone */
    --color-bg: white;                /* clean warm background */
    --color-text: #2B1B14;              /* deep elegant text */
    --color-muted: #9C8F87;             /* soft secondary */
    --color-accent: #E4B98A;            /* goldish luxury accent */
    --color-white: #ffffff;
    --color-overlay: rgba(43, 27, 20, 0.45);
    --color-green-olive: #999966; 
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
  
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
  }
  
  html {
    scroll-behavior: smooth;
  }
  .header-actions{
      display: flex;
  }
  

  body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
  }
  
  /* ===========================
     HEADER
  =========================== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    background: transparent;
    transition: background 0.4s ease, padding 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img,
.footer-logo img {
    width: 7rem;
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.05);
}

.logo .logo-normal {
    display: block;
}

.logo .logo-scrolled {
    display: none;
}

.header.scrolled .logo .logo-normal {
    display: none;
}

.header.scrolled .logo .logo-scrolled {
    display: block;
}

.nav ul {
    display: flex;
    gap: var(--spacing-lg);
    list-style: none;
}

.nav a {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}
.header.scrolled .nav a  {
    color: var(--color-text);
}
.header.scrolled .lang-toggle{
    color: #8F4A2A!important;
}
.nav a:hover {
    color: var(--color-primary);
}
  
/* ===========================
   RESPONSIVE NAVIGATION (MOBILE)
=========================== */

/* Hamburger Button - Hidden on desktop */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 28px;
    height: 20px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-white);
    border-radius: 3px;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

/* Active state (X icon) */
.mobile-menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
    background: var(--color-primary-dark);
}
.mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
    background: var(--color-primary-dark);
}

/* Scrolled header: change hamburger color */
.header.scrolled .hamburger span {
    background: var(--color-primary-dark);
}

/* Mobile Menu Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-white);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.2);
    padding: var(--spacing-xl) var(--spacing-md);
    transition: left 0.4s cubic-bezier(0.77, 0, 0.18, 1);
    z-index: 1000;
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav ul {
    list-style: none;
    margin-top: 4rem;
}

.mobile-nav li {
    margin-bottom: var(--spacing-md);
}

.mobile-nav a {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--color-primary);
}

/* Overlay backdrop */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===========================
   MEDIA QUERIES - MOBILE NAV
=========================== */
@media (max-width: 992px) {
    /* Show hamburger */
    .mobile-menu-toggle {
        display: block;
    }

    /* Hide desktop nav */
    .nav {
        display: none;
    }

    /* Adjust header layout on mobile */
    .header-container {
        position: relative;
        align-items: center;
        justify-content: center;
    }

    .header-actions {
        gap: var(--spacing-md);
    }

    .btn-reserve {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Lang toggle color on scrolled header */
    .header.scrolled .lang-toggle {
        color: var(--color-primary-dark) !important;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .mobile-nav {
        width: 100%;
        max-width: none;
    }

    .mobile-nav ul {
        margin-top: 3rem;
    }

    .mobile-nav a {
        font-size: 1.3rem;
    }
}
  /* ===========================
     BUTTONS
  =========================== */
  .btn-reserve,
  .btn-cta {
    padding: 0.75rem 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 30px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .btn-reserve:hover,
  .btn-cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
  }
  
  /* ===========================
     HERO
  =========================== */

 
.div-whatsapp {
    width: 50px;
    height: 50px;
    background: #27d045 !important;
    position: fixed;
    bottom: 115px;
    margin: auto;
    right: 30px;
    border-radius: 10px;
    transform: rotate(45deg);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .div-whatsapp::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: #27d045;
    opacity: 0;
    z-index: -1;
    animation: sonarWave 1.2s linear infinite;
  }
  
  .div-whatsapp a {
    font-size: 30px;
    color: white;
  }
  
  .div-whatsapp a i {
    transform: rotate(-30deg);
  }
  @keyframes sonarWave {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      transform: scale(1.5);
      opacity: 0;
    }
  }
  .hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 0 var(--spacing-md);
  }
  .hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--color-white);
    opacity: 0;
  }
  .hero-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--color-white);
    opacity: 0;
  }
  .hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../heroyahabibi6.jpg') center/cover no-repeat; /* Remplace par ton image de fallback */
    z-index: -2;
}

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

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-overlay);
    z-index: 0; /* Overlay au-dessus du fallback, en-dessous de la vidéo */
}

.hero-content,
.scroll-indicator {
    position: relative;
    z-index: 1;
}
  /* ===========================
     INTRO SECTION
  =========================== */
  .intro {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
    background-image: url('../zelij2.png');

  }
  .intro-content {
    width: 50%;
  }
  .intro-text {
    color: var(--color-muted);
    font-size: 1.15rem;
    line-height: 1.8;
  }
  
  
  /* ===========================
     CTA
  =========================== */

  
  /* ===========================
     FOOTER
  =========================== */
  .footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
  }
  .footer a:hover {
    color: var(--color-accent);
  }
  
  /* ===========================
     ANIMATIONS
  =========================== */
  section {
    /* opacity: 0; */
    transform: translateY(10px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ===========================
     RESPONSIVE
  =========================== */
  @media (max-width: 768px) {
    .intro {
      flex-direction: column;
    }
    .intro-content {
      width: 90%;
    }
    .founders-grid {
      grid-template-columns: 1fr;
    }
  }
  
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}/* ===========================
   GALLERY
=========================== */
.gallery-section {
    padding: var(--spacing-xxl) 0;
    background: var(--color-white);
    margin-bottom: 3rem;
  }
  .gallery-grid {
    max-width: 1400px;
    width: 90vw;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    grid-auto-rows: 380px;
  }
  .gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15); /* Lightened shadow for better contrast on white bg */
  }
  .gallery-item img {
    width: 100%;
    height: 120%; /* Make image 20% taller than container to reveal more during movement */
    /* margin-top: -10%; Center the extra height initially (half of the extra 20%) */
    object-fit: cover;
    transition: transform 0.8s ease;
  }
  .gallery-item:hover img {
    transform: scale(1.12);
  }
  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.7));
  }

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-logo {
    max-width: 400px; /* Adjust as needed */
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: var(--font-serif); /* Elegant serif font; ensure it's loaded via @import or link */
    font-size: 1.8rem;
    /* font-style: italic; */
    font-weight: 300; /* Lighter weight for elegance */
    letter-spacing: 1.5px; /* Increased spacing for a refined look */
    color: #f5f5f5; /* Soft white */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    margin: 0;
    padding: 0 2rem; /* Side padding for better flow */
    line-height: 1.4; /* Improved readability */
    opacity: 0; /* Initial state for animation */
    transform: translateY(20px); /* Initial state for animation */
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    text-align: center;
    color: var(--color-gray-light);
    margin-bottom: var(--spacing-lg);
}
.intro {
    display: flex;
    width: 100vw;
    height: auto;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    padding: var(--spacing-xl) 0;
    background-color: var(--color-light);
    /* Moroccan geometric pattern */
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 50vw 100%; /* adjust pattern size */
}
.intro-section-title{
    text-align: start;

}
.about-image {
    width: 425px;
    height: auto;
    border-radius: 500px 500px 20px 20px;
    object-fit: cover;
    border: white 3px solid;
}
.container-intro{
    display: flex;
    align-items: center;
    width: 80%;
    justify-content: space-between;
    gap: 15rem;
}
.intro-content {
    max-width: 800px;
    text-align: start;
    width: 50%;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: var(--spacing-md);
}


/* ===========================
   FOUNDERS / FEATURES
=========================== */
.founders {
    padding: var(--spacing-xxl) 0;
    background: white;
  }
  
  .founders-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-top: var(--spacing-lg);
  }
  
  .founders-grid:nth-child(even) {
    direction: rtl;
  }
  
  .founders-grid:nth-child(even) .founder-content {
    direction: ltr;
    order: 1;
  }
  
  .founder-name {
    font-size: 2.2rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-md);
  }
  
  .founder-bio {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-muted);
  }
  
  .founder-image video {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    
  }
  .founder-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    
  }
.cta {
    padding: var(--spacing-xl) 0;
    background: var(--color-green-olive);
    color: var(--color-white);
    text-align: center;
  }
  .btn-cta {
    background: var(--color-white);
    color: var(--color-primary-dark);
  }
  .btn-cta:hover {
    background: var(--color-primary);
    color: var(--color-white);
  }
.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--color-light);
    margin-bottom: var(--spacing-sm);
}

.cta-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--color-gray-light);
    margin-bottom: var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-xs);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.footer-col p {
    font-size: 0.95rem;
    color: var(--color-gray-light);
    margin-bottom: var(--spacing-xs);
}

.footer-note {
    color: var(--color-gray);
    font-style: italic;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.social-link {
    color: var(--color-gray-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--color-gray);
}

.footer-awards {
    display: flex;
    gap: var(--spacing-sm);
}

.award-badge {
    padding: 0.4rem 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .nav ul {
        gap: var(--spacing-md);
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

  
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }
    .container-intro{
        flex-direction: column;
    }
    .intro-content {
        width: 90%;
      }
      .intro{
       padding: 0%;
        background-image: none;
    
      }
      .about-image{
        width: 425px;
        height: auto;
        border-radius: 0px;
        object-fit: cover;
       
      }
      .container-intro{
          gap: 2rem;
      }
      
    .nav {
        order: 3;
        width: 100%;
        margin-top: var(--spacing-sm);
    }

    .nav ul {
        justify-content: center;
        gap: var(--spacing-sm);
        flex-wrap: wrap;
    }

    .nav a {
        font-size: 0.85rem;
    }

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

    .menu-item-image {
        height: 300px;
    }

    .gallery-item {
        flex: 0 0 300px;
        height: 400px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .founder-content {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-md: 1rem;
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    .header-actions {
        gap: var(--spacing-sm);
    }

    .btn-reserve {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

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

    .gallery-item {
        flex: 0 0 250px;
        height: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        align-items: center;
    }
}
/* Menu Section */

.menu-section {

    padding: 4rem 0;

    text-align: center;

    max-width: 1400px;

    margin: 0 auto;

    width: 80vw;

    display: flex;

    flex-direction: column;

    align-items: center;

}

.menu-title {

    font-size: clamp(2.8rem, 6vw, 4rem);

    text-align: center;

    color: var(--color-primary-dark);

}

.menu-description {

    color: var(--color-gray);

    max-width: 50%;

    margin-bottom: 2rem;

    font-size: 1.15rem;

    line-height: 1.8;

}

.categories {

    display: flex;

    align-items: center;

    margin-bottom: 2rem;

    width: 100%;

    overflow: hidden;

}

.category-swiper {

    width: 100%;

    overflow: hidden;

}

.swiper-wrapper {

    display: flex;

}

.swiper-slide {

    width: auto;

}

.category-btn {

    background: #fff;

    border: 1px solid #ddd;

    border-radius: 20px;

    padding: 0.5rem 1.5rem;

    font-family: var(--font-sans);

    font-size: 1rem;

    color: #333;

    cursor: pointer;

    transition: background 0.3s ease;

    /* white-space: nowrap; */
 
    width: fit-content;
}

.category-btn.active {

    background: var(--color-green-olive); /* Orange background for active */

    color: #fff;

    border-color: var(--color-green-olive);

}

.view-all {

    margin-left: auto;

    font-family: var(--font-sans);

    font-size: 1rem;

    color: var(--color-primary);

    text-decoration: none;

    transition: color 0.3s ease;

}

.view-all:hover {

    color: var(--color-primary-dark);

}

.menu-card {

    display: flex;

    background: var(--color-primary); /* Dark green background  4a5c3e*/

    border-radius: 20px;

    overflow: hidden;

    color: #fff;

}

.menu-text {

    flex: 1;

    padding: 2rem;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

}

.card-title {

    font-family: var(--font-serif);

    font-size: 2rem;

    font-weight: 700;

    text-transform: uppercase;

    margin-bottom: 2rem;

    line-height: 1.2;

}

.dish-item {

    margin-bottom: 1rem;

}

.dish-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer; /* Indicate clickable */

}

.dish-header h4 {

    font-family: var(--font-sans);

    font-size: 1.5rem;

    font-weight: 400;

    margin: 0;

}

.price {

    font-family: var(--font-sans);

    font-size: 1.2rem;

    font-weight: 600;

}

.dish-description {

    font-family: var(--font-sans);

    font-size: 0.9rem;

    color: #ddd;

    margin-top: 0.5rem;

}

.ingredients {

    font-family: var(--font-sans);

    font-size: 0.9rem;

    color: #ddd;

    margin-top: 0.5rem;

    opacity: 0;

    max-height: 0;

    overflow: hidden;

    transition: opacity 0.5s ease, max-height 0.5s ease;

}

.ingredients.show {

    opacity: 1;

    max-height: 200px; /* Adjust based on expected content height */

}

.dish-divider {

    border: 0;

    border-top: 1px solid rgba(255, 255, 255, 0.2);

    margin: 1rem 0;

}

.menu-image {

    flex: 0 0 50%;

    position: relative;

    overflow: hidden;

}

.menu-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

/* ==================== CONTACT PAGE ==================== */
.contact-hero .hero-title { 
    font-family: var(--font-serif); 
    color: white; 
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.contact-section {
    padding: var(--spacing-xxl) 0;
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-info h2 {
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-top: 0.2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.3rem;
}

.contact-item p,
.contact-item a {
    color: var(--color-muted);
    text-decoration: none;
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--color-primary);
}

.social-contact h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary-dark);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    font-size: 2rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--color-primary-dark);
    transform: translateY(-4px);
}

.contact-map iframe {
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-map {
        order: -1;
        margin-bottom: var(--spacing-lg);
    }
    .founders .section-title{
        margin-bottom: 4rem;
    }
    .container-intro{
        flex-direction: column;
    }
    .intro-content {
        width: 90%;
      }
      .intro{
       padding: 0%;
        background-image: none;
    
      }
      .about-image{
        width: 425px;
        height: auto;
        border-radius: 0px;
        object-fit: cover;
       
      }
      .container-intro{
          gap: 2rem;
      }
}


/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
  }
  .section-title {
    font-size: clamp(2.8rem, 6vw, 4rem);
    text-align: center;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-lg);
  }
  .intro-text,
.founder-bio,
.menu-description {
  font-size: 1.15rem; /* Adjust based on class, e.g., 1.2rem for .intro-text */
  line-height: 1.8;
  color: var(--color-muted);
  margin-bottom: var(--spacing-md);
}
/* ===========================
   RESPONSIVE GALLERY
=========================== */

/* Tablet */
@media (max-width: 1024px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 300px;
      gap: 1.8rem;
    }
  
    /* Disable manual grid positioning */
    .gallery-item {
      grid-area: auto !important;
    }
  }
  
  /* Mobile */
  @media (max-width: 640px) {
    .gallery-section {
      padding: var(--spacing-xl) 0;
    }
  
    .gallery-grid {
      grid-template-columns: 1fr;
      grid-auto-rows: auto;
      gap: 1.5rem;
    }
  
    .gallery-item {
      
      border-radius: 18px;
    }
  
    .gallery-item img {
      height: 110%;
    }
  }
  