:root {
  --primary-color: #2e2e2e;
  --accent-color: #f0f4f8;
  --highlight-color: #000;

  --font-serif: 'EB Garamond', serif;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-serif);
}

/* ============================= */
/*         NAVIGATION BAR       */
/* ============================= */


/* ============================= */
/*         HEADER STYLES         */
/* ============================= */
.header-with-bg {
  position: relative;
  background: url('../assets/about-bg.jpg') center center / cover no-repeat;
  color: #fff;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  z-index: 1;
}

.header-with-bg h1 {
  font-family: 'Unica One', serif;
  font-size: 3rem;
  line-height: 1.4;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.header-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1;
}



/* ============================= */
/*         CTA LINK STYLE        */
/* ============================= */
.alt-content a {
  display: inline-block;
  margin-top: 1rem;
  background: #000;
  color: #fff;
  font-family: 'Unica One', serif;
  padding: 0.75rem 1.8rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.alt-content a:hover {
  background: #333;
}

/* ============================= */
/*       BRAND PROMISES PAGE    */
/* ============================= */

.brand-promises-hero {
  position: relative;
  background: url('../assets/about-bg.jpg') center center / cover no-repeat;
  padding: 6rem 2rem;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.brand-promises-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.brand-promises-intro {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.brand-promises-intro h1 {
  font-family: 'Unica One', serif;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.2rem;
  color: #e0e0e0;
}

.brand-promises-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.pillar {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 1.4rem;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  border-color: #fff;
}


.brand-promise {
  background: #fff;
  padding: 4rem 2rem;
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
  border-bottom: 1px solid #e4e4e4;
  z-index: 2;
}

.brand-promise h2 {
  font-family: 'Unica One', serif;
  font-size: 1.8rem;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.brand-promise p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ============================= */
/*     TRIANGLE BACKGROUNDS     */
/* ============================= */

.brand-promises-hero,
.brand-promise {
  position: relative;
}

.brand-promises-hero .triangle,
.brand-promise .triangle {
  position: absolute;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.triangle-1  { top: 5%; left: -20px; transform: rotate(-10deg) scale(1.2); fill: #e6e6e6; }
.triangle-2  { bottom: 8%; right: 12%; transform: rotate(18deg) scale(1); fill: #f0f0f0; }
.triangle-3  { top: 28%; left: 50%; transform: rotate(-15deg) scale(1.1); fill: #dedede; }
.triangle-4  { top: 60%; right: 25%; transform: rotate(12deg) scale(0.9); fill: #eeeeee; }
.triangle-5  { bottom: 10%; left: 18%; transform: rotate(24deg) scale(0.95); fill: #d3d3d3; }
.triangle-6  { top: 45%; right: 8%; transform: rotate(-22deg) scale(0.85); fill: #ececec; }





footer {
  text-align: center;
  padding: 1rem;
  background-color: var(--accent-color);
  color: #000;
  font-size: 0.9rem;
  border-top: 1px solid #ccc;
}
.footer-extra {
  margin-top: 0.5rem;
  font-size: 0.85rem;
    position: relative;
  z-index: 2;
}







/* Body text stays as Garamond */
body, p, li, span {
  font-family: 'EB Garamond', serif;
}

/* Headings use Playfair Display */
h1, h2, h3, .section-title {
  font-family: 'Playfair Display', serif;
}



/* ========== NAVBAR DESKTOP ========== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 0 2rem;
  height: 130px;
  position: relative;
  z-index: 1000;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #ccc;
  padding-right: 2rem;
  height: 100%;
  width: 230px;
}

.logo-img {
  height: 90px;
  width: auto;
  padding-left: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 1.5rem;
  position: relative;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #000;
  line-height: 1.6;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 1rem;
  font-family: 'EB Garamond', serif;
  font-weight: 400;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  right: 0;
  background-color: var(--highlight-color);
  transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  padding: 0.5rem 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1100;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content li {
  padding: 0.5rem 1rem;
 
}

.dropdown-content a {
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  display: block;
}
@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 1.2rem;
    background: #fff;
    position: relative;
    z-index: 9999;
  }

  .navbar-left {
    display: flex;
    align-items: center;
  }

  .logo-img {
    height: 42px;
    
    padding-left: 0;
  }

  .logo-text {
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
  
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 10001;
    margin-left: auto;
  }

  .burger div {
    width: 100%;
    height: 2px;
    background: #000;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100vw;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    color: #000;
    display: block;
    text-align: left;
  }

  .dropdown-content {
    display: none;
    flex-direction: column;
    background: #f9f9f9;
  }

  .dropdown.open .dropdown-content {
    display: flex;
  }

  .dropdown-content a {
    padding-left: 2rem;
    font-size: 0.95rem;
  }

  .dropdown-toggle::after {
    content: "▼";
    float: right;
    font-size: 0.7rem;
    margin-left: 0.5rem;
  }

  .dropdown.open .dropdown-toggle::after {
    content: "▲";
  }

   .whyus-timeline {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 2.5rem;
  }

  .whyus-timeline::before {
    width: 2px;
    height: 100%;
    left: 1.2rem;
    top: 0;
    transform: none;
  }
/* ========== NAVBAR MOBILE ========== */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 1rem 1.2rem;
    height: auto;
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 10001;
    margin-left: auto;
  }

  .burger div {
    width: 100%;
    height: 2px;
    background: #000;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100vw;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }

  .nav-links.open {
    display: flex;
  }

  .dropdown.open .dropdown-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-left: 2px solid #eee;
  }

  .dropdown-content {
    position: relative;
    width: 100%;
    box-shadow: none;
    background: #fafafa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 0;
  }

  .dropdown-content li {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .dropdown-content a {
    padding: 1rem 1.5rem;
    display: block;
    width: 100%;
    font-size: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-family: 'EB Garamond', serif;
  }

  .dropdown-toggle::after {
    content: "▼";
    margin-left: 0.5rem;
    font-size: 0.7rem;
    vertical-align: middle;
    color: #000;
    font-weight: bold;
  }

  .dropdown.open .dropdown-toggle::after {
    content: "▲";
  }
}
