/* ===== PRODUCTS PAGE ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    scroll-behavior: smooth;
    font-family: 'Helvetica Neue', sans-serif;
    background-color: white;;
  }
  
  .main-wrapper {
  background-color: #fbf7e6;;
}
  /* Navbar */
  /* Default Navbar */
.navbar {
    width: 100%;
    z-index: 1000;
    background-color: #faf3e0;
    padding: 1rem 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: fixed;
    top: 30;
    left: 0;
    transition: background-color 0.3s ease;

  }
.navbar.transparent,
.navbar.hero-transparent {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
.logo img,
.logo svg {
  height: 10px;
  width: auto;
  display: block;
  
}

#logo-img {
    margin-left: -3rem; /* or less */
  }
  
  
  /* Transparent navbar style for hero section */
  .navbar.transparent {
    background: transparent;
    position: fixed;
    width: 100%;
    z-index: 10;
    transition: background 0.3s ease;
  }
  
  .navbar.solid {
    background: white;
    box-shadow: 0 1px 10px rgba(0,0,0,0.1);
  }
  
  /* only top-level controls go white over the hero */
  .navbar.transparent .nav-box a,
  .navbar.transparent .logo,
  .navbar.transparent .lang-switcher .lang-btn,
  .navbar.transparent .icon-btn {
    color: white;
  }

  /* dropdown should always be dark text on white bg */
  .menu-panel { background: #fff; }
  .menu-panel a { color: #111 !important; }
  .menu-panel a:hover,
  .menu-panel a:focus { background: #0077cc; color: #fff !important; }


  .navbar.hero-transparent {
    background-color: transparent !important;
    box-shadow: none !important;
    color: white;
    transition: background-color 0.3s ease;
  }
  
  .navbar.hero-transparent a,
  .navbar.hero-transparent .logo,
  .navbar.hero-transparent button {
    color: white;
  }
    
  
  
  .nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    justify-content: space-between; /* logo on left, rest on right */
    padding-top: 30px; /* add some top padding */
    margin-right: 70px;
    
  }
  
  .logo {
    font-weight: bold;
    font-size: 1.8rem;
  }
  
  .nav-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    z-index: 10;
    transition: background-color 0.3s ease;
    margin-left: auto; /* pushes nav box away from logo */
    margin-right: 30px; /* space before lang switcher */
  }
  
  /* Make sure nav links inside look good */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
  }

  /* Style on hero section (default) */
.nav-box.transparent {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .nav-box.transparent .nav-links li a {
    color: white;
  }
  
  /* Style after scrolling down */
  .nav-box.solid {
    background: rgba(255, 255, 255, 0.95);
    background-color: #0A0A2A ;
  }
  
  .nav-box.solid .nav-links li a {
    color: #222;
  }
  
  
  .nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    transition: background 0.3s ease;
  }
  
  
  
  .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: flex;
    height: 100%; /* Make sure it fills the navbar height */
    padding: 0 0.5rem; /* Horizontal spacing between links */
  }
  

  .navbar {
  background-color: #faf3e0 !important; /* creamy white */
}


.nav-links li a:hover {
  background: rgba(240, 240, 240, 0.6);

}
.nav-box.solid .nav-links li a {
  color: white !important;
}

  


  .lang-switch button {
    background: none;
    border: none;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    
    

  }
  
  #lang-options {
    position: absolute;
    top: 110%;
    left: 0;
    background: transparent;  /* no white background */
    border: none;             /* no border */
    box-shadow: none;         /* no shadow */
    min-width: auto;
    padding: 0;
    margin: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
  }
  
  .lang-option-item {
    padding: 2px 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    color: inherit;  /* inherits text color */
  }
  
  .lang-option-item:hover {
    background-color: rgba(0,0,0,0.1); /* subtle highlight */
    border-radius: 4px;
  }
  
  #lang-active-btn {
    background: none;
    border: none;
    padding: 6px 10px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: inherit;
  }
  
/* Transparent style for hero */
.lang-btn.transparent {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }
  
/* Solid style after scrolling */
.lang-btn.solid {
    background: white;
    
    border: 1px solid #ccc;
}
  
 /* Hide navbar when scrolling down */
.navbar.nav-hidden {
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}
  
.navbar {
    transition: transform 0.4s ease;
}
  
/* Lang part */
  .lang-switcher {
  position: relative;
  display: inline-block;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
  font-weight: 600;
  margin-right: -100px;
}

.lang-btn {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
 
  cursor: pointer;
  min-width: 90px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.lang-btn:hover,
.lang-btn:focus {
  border-color: #0077cc;
  background-color: #f0f8ff;
  outline: none;
}

.flag {
  font-size: 18px;
  line-height: 1;
}

.lang-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
  min-width: 90px;
  z-index: 1000;
  padding: 4px 0;
  user-select: none;
}

.lang-options button {
  background: none;
  border: none;
  width: 100%;
  padding: 8px 16px;
  font-size: 14px;
  text-align: left;
 
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 0;
}

.lang-options button:hover,
.lang-options button:focus {
  background-color: #0077cc;
  color: #fff;
  outline: none;
}

.hidden {
  display: none !important;
}

/* === Hamburger menu (next to language) === */
/* === Minimal hamburger — no background === */
.menu-wrapper { position: relative; display: inline-block; margin-left: 8px; }

.icon-btn {
  background: transparent;   /* no box */
  border: none;              /* no border */
  padding: 8px;              /* keeps a11y hit-area */
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-width: 44px;           /* a11y size */
  min-height: 44px;
  color: currentColor;       /* inherits from .transparent/.solid below */
}

.icon-btn .bar {
  width: 20px;
  height: 2px;
  background: currentColor;  /* line color follows button color */
  border-radius: 2px;
  transition: opacity .2s ease;
}

.icon-btn:hover .bar { opacity: .8; }
.icon-btn:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(0,0,0,.15); border-radius: 8px; }

/* Color states synced with navbar scroll logic */
.icon-btn.transparent { color: #fff; }  /* on hero */
.icon-btn.solid { color: #222; }        /* after scroll */

/* Drawer Styles */
.drawer {
  position: fixed;
  top: 0;
  right: -50%; /* hidden initially */
  width: 50%;
  height: 100%;
  background-color: rgb(75, 139, 223);
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
  z-index: 1001;
  transition: right 0.3s ease;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.drawer.open {
  right: 0;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 2rem;
}

.drawer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.drawer-menu li a {
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  color: white;
  transition: color 0.2s;
  padding-top: 0.5rem 0;
}

.drawer-menu li a:hover {
  color: #1e3a8a; /* highlight color */
}

/* Overlay behind the drawer */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Menu Toggle Button */
.menu-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1100;
  background: #1e3a8a;
  color: #fff;
  border: none;
  padding: 0.7rem 1rem;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 6px;
}


.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  
  /* Responsive */
  @media (max-width: 768px) {
    .split-section {
      flex-direction: column;
    }
  
    .split-right,
    .split-left {
      flex: none;
      width: 100%;
      min-height: 300px;
    }
  
    .split-left {
      padding: 2rem;
      text-align: center;
    }


  }
  

  .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: transparent !important;
  box-shadow: none !important;
}
.nav-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}


/* Transparent navbar over video */
.navbar.transparent {
  background-color: transparent !important;
  box-shadow: none !important;
}

.nav-box.transparent {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Solid navbar after scrolling */
.navbar.solid {
  background-color: #faf3e0 !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.nav-box.solid {
  background-color: #0A0A2A !important;
}


.navbar.transparent {
  background-color: transparent !important;
  box-shadow: none !important;
}

.navbar.solid {
  background-color: #faf3e0 !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.nav-box.transparent {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-box.solid {
  background-color: #0A0A2A !important;
}

.navbar.transparent .lang-btn {
  color: white !important;
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.15);
}











  /* ===== Footer language bar ===== */
.site-footer {
    background-color: #111135;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.footer-main {
    padding: 40px 10%;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-columns h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

.footer-columns ul li {
    margin-bottom: 8px;
}

.footer-columns a {
    color: #ccc;
    text-decoration: none;
}

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

.footer-lang {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background-color: #fff;
    color: #333;
    font-size: 0.95rem;
}

.footer-lang span {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-lang span:hover {
    text-decoration: underline;
}

.footer-bottom {
    background-color: #0f0f0f;
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
    color: #aaa;
}

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

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-logo {
  max-width: 120px;   /* Adjust as needed */
  height: auto;       /* Keeps aspect ratio */
  display: block;     /* Prevents inline spacing issues */
}



/* ================= SECTION 1: INTRO VIDEO ================= */

.intro-video-section{
  position: relative;
  width: 100%;
  height: 100vh;      /* full screen */
  overflow: hidden;
  background: #000;   /* fallback */
  margin-top: -110px;
}

.intro-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  /* fills like a hero image */
}





/* ================= SECTION 1: BEYOND ================= */

#home-section-1 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #ffffff;
}

#home-hero-image {
  width: auto;
  max-width: 800px;      
  height: auto;
  margin-top: 200px;
  
}


/* ================= SECTION 2: CORE ================= */

#home-section-2 {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #ffffff;
}

#home-core-image {
  width: 80vw;            /* BIG */
  max-width: 1400px;      /* prevents absurd scaling */
  height: auto;
  margin-top: 200px;
}


/* ================= SECTION 3 ================= */

#home-section-3 {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  overflow: hidden;
}

/* Image */
.section-3-bg {
  width: 55%;
  max-width: 1500px;
  height: auto;
  display: block;
  margin-left: 7vw;
  margin-top: 100px
}


/* Button overlay */
.section-3-btn {
  position: absolute;
  background-color: #14145a;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 28px 64px; 
  border-radius: 70px;
  z-index: 2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  right: 40%;         /* fine-tune horizontally */
  bottom: 11%;        /* fine-tune vertically */
}

.section-3-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);

}



/* ================= SECTION 4 ================= */

#home-section-4 {
  width: 100vw;              /* full viewport width */
  overflow: hidden;
  background-color: #ffffff;
}

/* Image fills the screen edge-to-edge */
.section-4-img {
  width: 102%;
  height: auto;
  display: block;
  margin-left: -1%;
  margin-top: 100px;
}

/* ================= SECTION 4 ================= */

#home-section-4 {
  width: 100vw;              /* full viewport width */
  overflow: hidden;
  background-color: #ffffff;
}

.section-4-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Image fills the screen edge-to-edge */
.section-4-img {
  width: 102%;
  height: auto;
  display: block;
  margin-left: -1%;
  margin-top: 100px;
  z-index: 1;
  position: relative;
}

/* Beige Button */
.section-4-btn-beige {
  position: absolute;
  bottom: 8%;
  left: 6%;
  background-color: #f7f3df;
  color: #14145a;
  font-family: var(--font-owners-bold);
  font-weight: 700;
  font-size: 16px;
  padding: 22px 48px;
  border-radius: 70px;
  z-index: 2;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-left: 100px;
}

.section-4-btn-beige:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Pill button */
.section-6-btn {
  position: absolute;
  bottom: 8%;
  left: 6%;
  background-color: #f7f3df;
  color: #14145a;
  font-family: var(--font-owners-bold);
  font-weight: 700;
  font-size: 16px;
  padding: 22px 48px;
  border-radius: 70px;
  z-index: 2;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-left: 1000px;
}

/* Subtle hover (luxury feel) */
.section-6-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}



/* ================= SECTION 5 ================= */

.section-5 {
  background-color: #fbf7e6;
  padding: 120px 8vw;
  
}

.section-5-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.section-5-title {
  font-family: var(--font-owners-black);
  font-size: 48px;
  color: #14145a;
  margin-bottom: 10px;
}

.section-5-subtitle {
  font-family: var(--font-owners-medium-italic);
  font-size: 26px;
  color: #14145a;
  text-align: right;
  margin-bottom: 40px;
  font-style: italic;
  font-weight: 700;
}

/* Image row */
.section-5-images {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
}

.section-5-img {
  width: 110px;
  height: 150px;
  object-fit: cover;
  border-radius: 20px;
}

/* Tagline */
.section-5-tagline {
  font-family: var(--font-owners-medium-italic);
  font-size: 22px;
  color: #14145a;
  margin-bottom: 40px;
  font-style: italic;
  font-weight: 700;

}

/* Button */
.section-5-btn {
  display: inline-block;
  background-color: #14145a;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 22px 48px;
  border-radius: 60px;
}

/* RIGHT */
.section-5-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-5-text {
  font-family: var(--font-owners-medium);
  font-size: 22px;
  line-height: 1.4;
  color: #14145a;
  font-style: italic;
  font-weight: 700;
  margin-left: 100px;
}

/* LEFT IMAGE FOR SECTION 5 */
.section-5-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-5-left-img {
  width: 100%;
  max-width: 600px;   /* control size */
  height: auto;
  display: block;
  margin-right: 50px;
}


/* ================= SECTION 5 BALLS DECORATION ================= */

.section-5-wrapper {
  position: relative;
  background-color: #fbf7e6;
}

.section-5-balls-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.section-5-balls-img.top {
    margin-top: 20px;;
  margin-bottom:  -30px; /* adjusts the gap, tweak as needed */
}

.section-5-balls-img.bottom {
  margin-top: -30px; /* closes the gap to the next section */
  margin-bottom: 30px;
}

/* Container to hold image + button */
.section-5-img-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-5-left-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  border-radius: 20px;
  margin-bottom: 20px;
  margin-left: 10px;
}

/* Button in bottom-left */
.section-5-btn-overlay {
  position: absolute;
  bottom: 6%;
  left: 6%;
  background-color: #14145a;  /* dark blue */
  color: #ffffff;
  font-family: var(--font-owners-bold);
  font-weight: 700;
  font-size: 14px;
  padding: 18px 40px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: -90px;
  margin-left: -30px;
}

.section-5-btn-overlay:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}





/* ================= SECTION 5 — SINGLE IMAGE ================= */

/* ================= SECTION 5 — FULL BLEED ================= */

.section-5 {
  width: 100vw;          /* full viewport width */
  margin: 0;
  padding: 0;
}

.section-5-img-container {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}


/* image truly edge-to-edge */
.section-5-img {
  width: 100vw;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;   /* 👈 image layer */
}


/* Button — bottom left on image */
.section-5-btn-overlay {
  position: absolute;
  bottom: 6%;
  left: 5%;
  z-index: 10;  /* 👈 button layer (THIS is why you couldn’t see it) */

  background-color: #14145a #f7f3df;
  color: #f7f3df;
  font-family: var(--font-owners-bold);
  font-weight: 700;
  font-size: 14px;
  padding: 25px 40px;
  border-radius: 999px;
  text-decoration: none;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 60px;
  margin-left: 20px;
}


.section-5-btn-overlay:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* ================= SECTION 6 ================= */


.home-section-6 {
  background-color: #16164b;
  color: #ffffff;
  text-align: center;
  position: relative;

  padding: 48px 80px 28px;   /* ⬅️ much thinner */
  
  border-bottom-left-radius: 120px;
  border-bottom-right-radius: 120px;

  margin-bottom: 50px;
}


.section-6-quote {
  font-family: var(--font-owners-black); /* strongest weight */
  font-weight: 700;                      /* reinforce */
  font-size: 30px;                       /* BIG */
  line-height: 1.25;
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}


/* SIGNATURE WRAPPER — remove constraints */
.section-6-signature-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: none;
  margin: 0 auto 80px;
}

/* LOGO — absolute authority */
.section-6-signature {
  display: block;
  width: 60px !important;     /* 👈 BIG */
  max-width: none !important;
  height: auto !important;
  min-width: 6px !important;
  margin-bottom: -60px;
  margin-top: -40px;
}



/* ================= SECTION 7 ================= */

.home-section-7 {
  position: relative;
  z-index: 2;
  width: 100vw;
  overflow: hidden;
  background-color: #ffffff;
}

/* Full-bleed image */
.section-7-img {
  width: 100vw;
  height: auto;
  display: block;

  /* kill subpixel gaps */
  margin-left: calc(-50vw + 50%);
}


/* ================= SECTION 8 ================= */
.home-section-8 {
  width: 100%;
  background-color: #ffffff;
  padding: 100px 0;
}

.section-8-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.section-8-left {
  flex: 0 0 30%; /* LEFT: only 30% of the width */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.section-8-right {
  flex: 0 0 70%; /* RIGHT: gets 70% */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.section-8-left .section-8-img {
  max-width: 75%;   /* control size of the smaller image */
  height: auto;
  display: block;
}

.section-8-right .section-8-img {
  width: 80%;      /* full width of its container */
  height: auto;
  display: block;
  border-radius: 20px;
}

.section-8-img-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Dark Blue Button */
.section-8-btn {
  position: absolute;
  bottom: 6%;
  right: 5%;
  margin-right: 80px;

  background-color: #14145a;  /* dark blue */
  color: #ffffff;
  font-family: var(--font-owners-bold);
  font-weight: 700;
  font-size: 14px;
  padding: 18px 40px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-8-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}


/* ================= SECTION 9 ================= */

.home-section-9 {
  width: 100%;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  margin-top: 30px;
}

.section-9-image-wrap {
  position: relative;
  width: 100%;
}

.section-9-img {
  width: 92%;          /* 🔼 Increase from 80% to 92% */
  max-width: 1100px;   /* More generous max-width */
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
}


/* Pill Button in Bottom Right */
.section-9-btn {
  position: absolute;
  bottom: 3%;
  right: 15%;
 

  background-color: #f7f3df; /* beige */
  color: #14145a;           /* dark blue text */
  font-family: var(--font-owners-bold);
  font-weight: 700;
  font-size: 16px;
  padding: 20px 54px;
  border-radius: 999px;
  text-decoration: none;

  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-right: 80px;
  margin-bottom: 30px;
}

.section-9-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}





html, body {
  font-family: var(--font-owners-regular);
  font-weight: 400;
  font-style: normal;
}



:root {
  --font-tangier-bold: "tangier", sans-serif;           /* 700 normal */
  --font-owners-regular: "owners", sans-serif;          /* 400 normal */
  --font-owners-medium: "owners", sans-serif;           /* 500 normal */
  --font-owners-medium-italic: "owners", sans-serif;    /* 500 italic */
  --font-owners-bold: "owners", sans-serif;             /* 700 normal */
  --font-owners-bold-italic: "owners", sans-serif;      /* 700 italic */
  --font-owners-black: "owners", sans-serif;            /* 800 normal */
  --font-owners-black-italic: "owners", sans-serif;     /* 800 italic */
}

/* Base text */
html, body {
  font-family: var(--font-owners-regular);
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Form elements inherit font */
button, input, select, textarea {
  font-family: inherit;
}



/* =========================================================
   HOME / PRODUCTS PAGE — RESPONSIVE OVERRIDES
   Desktop untouched. Mobile fixed properly.
   ========================================================= */

/* -------------------------
   GLOBAL FIXES
-------------------------- */

/* Fix invalid navbar top */
.navbar { top: 0 !important; }

/* Reserve space for fixed navbar */
:root { --nav-h: 110px; }

body {
  padding-top: var(--nav-h);
}

/* iOS safe-area support */
@supports (padding: max(0px)) {
  body {
    padding-top: max(var(--nav-h), calc(var(--nav-h) + env(safe-area-inset-top)));
  }
}

html, body {
  overflow-x: hidden;
}

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

/* -------------------------
   <= 1200px (small laptops)
-------------------------- */
@media (max-width: 1200px) {
  :root { --nav-h: 100px; }

  .nav-container {
    margin-right: 0;
    padding-top: 18px;
  }

  #logo-img {
    margin-left: 0;
  }
}

/* -------------------------
   <= 992px (tablets)
-------------------------- */
@media (max-width: 992px) {
  :root { --nav-h: 95px; }

  .nav-container {
    max-width: 92vw;
    margin-right: 0;
  }
}

/* -------------------------
   <= 768px (mobile baseline)
-------------------------- */
@media (max-width: 768px) {
  :root { --nav-h: 88px; }

  /* NAVBAR */
  .nav-box {
    display: none !important; /* rely on hamburger */
  }

  .lang-switcher {
    margin-right: 0 !important;
    margin-left: auto;
  }

  .drawer {
    width: 88% !important;
    right: -88% !important;
  }
  .drawer.open { right: 0 !important; }

  /* SECTION 1 */
  #home-hero-image {
    max-width: 90%;
    margin-top: 80px;
  }

  /* SECTION 2 */
  #home-section-2 {
    height: auto;
    padding: 80px 0;
  }

  #home-core-image {
    width: 90%;
    margin-top: 0;
  }

  /* SECTION 3 */
  .section-3-bg {
    width: 90%;
    margin: 60px auto 0;
  }

  .section-3-btn {
    font-size: 13px;
    padding: 14px 28px;
    right: auto;
    left: 6%;
    bottom: 10%;
  }

  /* SECTION 4 */
  .section-4-img {
    margin-top: 60px;
  }

  .section-4-btn-beige,
  .section-6-btn {
    font-size: 13px;
    padding: 14px 28px;
    left: 6%;
    margin-left: 0;
  }

  /* SECTION 5 */
  .section-5-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .section-5-subtitle {
    font-size: 1.4rem;
    text-align: left;
  }

  .section-5-text {
    margin-left: 0;
    font-size: 1.1rem;
  }

  .section-5-images {
    justify-content: center;
  }

  .section-5-img {
    height: 120px;
  }

  .section-5-btn {
    font-size: 14px;
    padding: 14px 28px;
  }

  /* FULL BLEED BUTTON */
  .section-5-btn-overlay {
    font-size: 12px;
    padding: 12px 22px;
    left: 6%;
    bottom: 10%;
    margin: 0;
  }

  /* SECTION 6 */
  .home-section-6 {
    padding: 40px 6vw 20px;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
  }

  .section-6-quote {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }

  .section-6-signature {
    width: 44px !important;
    margin-bottom: -30px;
  }

  /* SECTION 8 */
  .section-8-inner {
    flex-direction: column;
    gap: 24px;
  }

  .section-8-left,
  .section-8-right {
    flex: 1 1 100%;
  }

  .section-8-btn {
    font-size: 12px;
    padding: 12px 22px;
    right: 6%;
    margin-right: 0;
  }

  /* SECTION 9 */
  .section-9-img {
    width: 95%;
  }

  .section-9-btn {
    font-size: 12px;
    padding: 12px 26px;
    right: 6%;
    margin-right: 0;
  }
}

/* -------------------------
   <= 430px (iPhone 12 / 13 / 14)
-------------------------- */
@media (max-width: 430px) {
  :root { --nav-h: 78px; }

  .section-3-btn,
  .section-4-btn-beige,
  .section-5-btn,
  .section-5-btn-overlay,
  .section-8-btn,
  .section-9-btn {
    font-size: 11.5px;
    padding: 10px 20px;
  }

  .section-5-title {
    font-size: 1.8rem;
  }

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

/* -------------------------
   <= 375px (small phones)
-------------------------- */
@media (max-width: 375px) {
  :root { --nav-h: 72px; }

  .section-3-btn,
  .section-4-btn-beige,
  .section-5-btn-overlay,
  .section-8-btn,
  .section-9-btn {
    font-size: 11px;
    padding: 9px 18px;
  }

  .section-6-quote {
    font-size: 1.2rem;
  }
}

/* =========================================
   MOBILE REFINEMENT — BUTTONS + SECTION 8
   ========================================= */

/* -------------------------
   <= 768px (mobile baseline)
-------------------------- */
@media (max-width: 768px) {

  /* ---------- GLOBAL BUTTON SCALE DOWN ---------- */
  .section-3-btn,
  .section-4-btn-beige,
  .section-5-btn,
  .section-5-btn-overlay,
  .section-6-btn,
  .section-8-btn,
  .section-9-btn {
    font-size: 12.5px !important;
    padding: 10px 22px !important;
    border-radius: 999px;
  }

  /* ---------- SECTION 8 IMAGE BALANCE ---------- */
  .section-8-left {
    flex: 1 1 100%;
    padding: 10px;
  }

  .section-8-left .section-8-img {
    max-width: 55% !important;   /* ⬅️ make it clearly secondary */
  }

  .section-8-right .section-8-img {
    width: 92% !important;
  }
}

/* -------------------------
   <= 430px (iPhone 12 / 13 / 14)
-------------------------- */
@media (max-width: 430px) {

  /* Buttons slightly smaller */
  .section-3-btn,
  .section-4-btn-beige,
  .section-5-btn,
  .section-5-btn-overlay,
  .section-6-btn,
  .section-8-btn,
  .section-9-btn {
    font-size: 11.5px !important;
    padding: 9px 18px !important;
  }

  /* Section 8 left image even smaller */
  .section-8-left .section-8-img {
    max-width: 48% !important;
  }
}

/* -------------------------
   <= 375px (very small phones)
-------------------------- */
@media (max-width: 375px) {

  .section-3-btn,
  .section-4-btn-beige,
  .section-5-btn-overlay,
  .section-8-btn,
  .section-9-btn {
    font-size: 11px !important;
    padding: 8px 16px !important;
  }

  .section-8-left .section-8-img {
    max-width: 42% !important;
  }
}

/* =========================================
   SECTION 8 — MAKE LEFT IMAGE MUCH SMALLER
   ========================================= */

/* Mobile */
@media (max-width: 768px) {
  .section-8-left .section-8-img {
    max-width: 38% !important;   /* ⬅️ clearly small */
  }
}

/* iPhone 12 / 13 / 14 */
@media (max-width: 430px) {
  .section-8-left .section-8-img {
    max-width: 32% !important;   /* ⬅️ very secondary */
  }
}

/* Very small phones (SE / mini) */
@media (max-width: 375px) {
  .section-8-left .section-8-img {
    max-width: 26% !important;   /* ⬅️ accent-level */
  }
}

/* =========================================
   SECTION 9 — SMALLER BUTTON + LOWER POSITION
   ========================================= */

/* Mobile */
@media (max-width: 768px) {
  .section-9-btn {
    font-size: 11.5px !important;   /* smaller text */
    padding: 9px 18px !important;   /* smaller pill */
    
    bottom: 1% !important;          /* ⬇️ move DOWN */
    right: 6% !important;

    margin: 0 !important;
  }
}

/* iPhone 12 / 13 / 14 */
@media (max-width: 430px) {
  .section-9-btn {
    font-size: 11px !important;
    padding: 8px 16px !important;

    bottom: 0.5% !important;        /* even lower */
  }
}

/* Very small phones */
@media (max-width: 375px) {
  .section-9-btn {
    font-size: 10.5px !important;
    padding: 7px 14px !important;

    bottom: 0% !important;          /* safest position */
  }
}


/* =========================================
   SECTION 9 — MICRO POSITION NUDGE UP
   ========================================= */

/* Mobile */
@media (max-width: 768px) {
  .section-9-btn {
    bottom: 2.5% !important;   /* ⬆️ small lift */
  }
}

/* iPhone 12 / 13 / 14 */
@media (max-width: 325px) {
  .section-9-btn {
    bottom: 2% !important;
  }
}

/* Very small phones */
@media (max-width: 250px) {
  .section-9-btn {
    bottom: 1.8% !important;
  }
}
