* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    scroll-behavior: smooth;
    font-family: 'Helvetica Neue', sans-serif;
  }

  body {
  background-color: #0A0A2A;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
  
  /* 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: 0;
    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.nav-hidden {
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.navbar {
  transition: transform 0.4s ease;
}

  
  .navbar.solid {
    
    box-shadow: 0 1px 10px rgba(0,0,0,0.1);
  }


  .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 li a:hover {
    background: white(255, 255, 255, 0.2);
  }
  
  
  .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    display: flex;
    height: 100%; /* Make sure it fills the navbar height */
    padding: 0 0.5rem; /* Horizontal spacing between links */
  }
  
  .nav-box.solid .nav-links li a {
  color: white !important;
}

  

 body.about-page #nav-box.nav-box {
  background: #0A0A2A;  /* Apple gray */
}



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

  }
  
  #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;
    color: #222;
    border: 1px solid #ccc;
  }
  
  
   /* 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;
  color: #333;
  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;
  color: #333;
  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: 2rem;
}

.drawer-menu li a {
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  color: whitesmoke;
  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);
  }
  




/* 1) Make sure the navbar really sits at the top */
.navbar {
  top: 0;                 /* you had `top: 30` (invalid) */
  /* ...keep your other navbar styles */
}

/* 2) Reserve vertical space for the fixed navbar */
:root {
  --nav-h: 110px;         /* adjust to your real header height */
}

/* Easiest: push the whole page down by the header’s height */
body {
  padding-top: var(--nav-h);
}

/* 3) When you jump to a section (e.g., #why-us), keep it below the header */
section[id] {
  scroll-margin-top: var(--nav-h);
}

/* If #why-us is still a bit tight, give it a tiny extra cushion */
#why-us { 
  padding-top: 200px;       /* optional micro buffer */
}











/* ===== OUR STORY: HERO SECTION ===== */
#our-story-hero {
  position: relative;
  background-color: #fff;
  padding: 8rem 10% 6rem;
  overflow: hidden;
}

#our-story-hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.hero-left {
  max-width: 50%;
}

.sub-heading {
  font-family: var(--font-owners-medium);
  font-size: 2.8rem;
  color: #191951;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.main-heading {
  font-family: var(--font-tangier-bold);
  font-size: 2.8rem;
  color: #191951;
  margin-left: 6rem; /* offset to the right, creates asymmetry */
}

.hero-right {
  max-width: 40%;
  text-align: right;
}

.hero-right .quote {
  font-family: var(--font-owners-medium-italic);
  font-size: 1.2rem;
  color: #191951;
}

.hero-title {
  text-align: center;
  margin-top: 5rem;
  font-size: 2.8rem;
}

.blue-title {
  font-family: var(--font-owners-bold);
  font-size: 2rem;
  color: rgb(75, 139, 223);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-box {
  background-color: #fffce7; /* beige */
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 2rem 2.5rem;
  border-radius: 70px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.hero-box p {
  font-family: var(--font-owners-regular);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  text-align: center;
  font-weight: 540;
}

.background-title {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.06); /* soft faded gray */
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 8vw; /* scales with viewport width */
  letter-spacing: 0.05em;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  transform: translateY(-10%);
  top: 95%;  /* move further down */
}

.our-craft-section {
  background-color: white;
  padding: 80px 10%;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.craft-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.craft-image {
  flex: 1;
  
}

.craft-image-img {
  width: 100%;
  max-width: 600px;      /* 👈 controls how SMALL it is */
  height: auto;
  display: block;
  margin: 0 auto;        /* center it */
  object-fit: contain;  /* no cropping, no zoom */
}


.craft-pdf {
  width: 100%;
  height: 400px;
  border: none;
}

.craft-text-box {
  flex: 1;
  background-color: #fdfbee; /* beige */
  padding: 40px;
  border-radius: 25px;       /* rounded corners */
  font-family: 'owners', sans-serif; /* same as About Us */
  font-weight: 600;
  font-style: normal;        /* not italic */
  font-size: 1.1rem;
  line-height: 1.7;
  color: #222;
  margin-bottom: 20px; /* space between paragraphs */
}

.craft-text-box .craft-quote {
  color: rgb(64, 154, 227); /* blue */
  font-weight: 700;
  display: block;
  margin: 20px 0;
  font-style: normal;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .craft-row {
    flex-direction: column;
    gap: 30px;
  }

  .craft-pdf {
    height: 300px;
  }
}



/* Responsive tweaks */
@media (max-width: 900px) {
  .hero-top {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
  }

  .main-heading {
    margin-left: 2rem;
  }

  .hero-right {
    margin-top: 1rem;
    text-align: left;
  }

  .background-title {
    font-size: 14vw;
  }
}


/* Fade-in (matches your site) */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .6s ease-out, transform .6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ====================
   Footer (keep global feel)
   ==================== */
.site-footer {
  background-color: #111135;
  color: #fff;
  font-family: "owners", 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; margin: 0; }
.footer-columns ul li { margin-bottom: 8px; }
.footer-columns a { color: #ccc; text-decoration: none; }
.footer-columns a:hover { color: #fff; }

.footer-logo {
  max-width: 120px;   /* safe logo size in footer */
  height: auto;
  display: block;
}

/* Footer language bar + active state */
.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-lang-btn.active { font-weight: 700; text-decoration: underline; }

/* ====================
   Responsive tweaks
   ==================== */
@media (max-width: 980px) {
  #nav-box.nav-box {
    max-width: min(92vw, 820px);
    padding: 10px 14px;
    gap: 1rem;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 20px; /* adjust value until it looks right */
  }
  .nav-links li a { padding: 7px 10px; }
}

@media (max-width: 768px) {
  #logo-img { height: 48px; }
  .section-content h2 { font-size: 2rem; }
  .section-content .lead { font-size: 1.05rem; }
  .section-content p { font-size: 1rem; }
}

.section-three {
  background-color: white;
  padding: 80px 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.section-three-row {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.logo-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.black-logo {
  max-width: 500px;
  height: auto;
}

.blue-box-right {
  flex: 1;
  background-color: #191951; /* dark blue */
  padding: 50px 40px;         /* more padding for rectangle */
  border-radius: 50px;        /* very rounded edges for "circley" style */
  max-width: 500px;           /* wider for rectangle shape */
  min-height: 220px;          /* taller to fit text nicely */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* subtle depth */
  
}

.blue-box-right p {
  color: #fdfbee; /* beige */
  font-family: 'owners', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 850;
}

.thank-you-text {
  font-family: 'tangier', serif; /* your Adobe italic font */
  font-style: italic;
  font-size: 4rem;
  color: #222;
  text-align: center;
  margin-top: 100px;
  font-weight: 700;
}

.bottom-design {
  margin-top: 40px;
  width: 100vw;        /* full viewport width */
  position: relative;  /* optional if you need absolute positioning */
  left: 0;             /* make sure it aligns with the left edge */
}

.toplar-img {
  width: 100vw;        /* spans entire screen */
  height: auto;        /* maintain aspect ratio */
  display: block;
  object-fit: cover;   /* optional, fills container nicely */
}


/* RESPONSIVE */
@media (max-width: 1024px) {
  .section-three-row {
    flex-direction: column;
    gap: 30px;
  }

  .blue-box-right {
    text-align: center;
  }
}


/* =========================
   GLOBAL MOBILE FIXES
   ========================= */
@media (max-width: 768px) {
  body {
    padding-top: 80px; /* smaller navbar height */
  }

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

  section {
    padding-left: 6vw !important;
    padding-right: 6vw !important;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding-top: 10px;
    margin-right: 0;
  }

  .logo img {
    height: 40px;
  }

  .nav-box {
    display: none; /* hide desktop nav */
  }

  .lang-switcher {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  #our-story-hero {
    padding: 5rem 6vw 4rem;
  }

  .hero-top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
    text-align: left;
  }

  .sub-heading,
  .main-heading {
    font-size: 1.8rem;
    margin-left: 0;
  }

  .hero-right .quote {
    font-size: 1rem;
  }

  .background-title {
    font-size: 22vw;
    top: 85%;
  }
}

@media (max-width: 768px) {
  .our-craft-section {
    padding: 60px 6vw;
    gap: 60px;
  }

  .craft-text-box {
    padding: 24px;
    font-size: 1rem;
  }

  .craft-image-img {
    max-width: 100%;
  }

  .craft-pdf {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .section-three {
    padding: 60px 6vw;
  }

  .section-three-row {
    flex-direction: column;
    gap: 30px;
  }

  .black-logo {
    max-width: 280px;
  }

  .blue-box-right {
    padding: 30px 24px;
    min-height: auto;
  }

  .blue-box-right p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.3rem; }

  p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .thank-you-text {
    font-size: 2.5rem;
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
}

/* =========================
   iPhone fixed-navbar overlap fix
   ========================= */
@media (max-width: 430px) {
  #our-story-hero {
    padding-top: calc(9rem + env(safe-area-inset-top));
  }
}

@media (max-width: 430px) {
  .sub-heading {
    margin-top: 1.2rem;
  }
}

@media (max-width: 430px) {
  #our-story-hero .hero-content {
    padding-top: 1rem;
  }
}







/* ===== Global Font Setup (Adobe Fonts: Tangier + Owners) ===== */

: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;
}


.center-image-section {
  width: 100%;
  background: #ffffff;
  padding: 120px 0;            /* vertical presence */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -150px;
  margin-bottom: -100px;
}

.center-image {
  width: 88vw;                 /* BIG but controlled */
  max-width: 1200px;           /* cap on large screens */
  height: auto;
  display: block;
}



@media (max-width: 768px) {
  * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

