/* ============================================
   OTAPH - Core Styles
   ============================================ */
:root {
  /* Colors */
  --color-green: #2B4447;
  --color-green-dark: #20332C;
  --color-cream: #F5F0E8;
  --color-offwhite: #FAF8F4;
  --color-white: #FFFFFF;
  --color-black: #1A1A1A;
  --color-gold: #D3B88C;
  --color-gold-light: #D5A97D;
  /* Typography */
  --font-Suisse: 'Suisse Intl';
  --font-Salsa: 'Hot Salsa';
  --font-Canela: 'Canela';
  /* Spacing */
  --container-width: 1260px;
  --section-padding: 80px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-Canela);
  color: var(--color-black);
  background-color: var(--color-offwhite);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}
/* Common Typography */
.section-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-Suisse);
  margin-bottom: 12px;
  color: #4A2916;
}
.section-label-light {
  color: #D3B88C;
}
.section-title {
  font-family: var(--font-Canela);
  font-size: 48px;
  font-weight: 400;
  color: #4A2916;
  line-height: 1.1;
  margin-bottom: 20px;
}
.text-white {
  color: var(--color-white);
}
/* ============================================
   HEADER
   ============================================ */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 25px 0;
  background-color: var(--color-white);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-img {
  height: 38px;
}
.nav {
  display: flex;
  gap: 40px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-black);
  transition: color 0.3s ease;
  font-family: var(--font-Suisse);
}
.nav-link:hover {
  color: var(--color-green);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-black);
}
/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background-color: var(--color-white);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}
.mobile-link {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--color-black);
}
.close-nav {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  padding-top: 74px;
  /* Header height offset */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-left {
  flex: 1;
  /* Transparent because the background image has the dark area */
  background-color: transparent;
}
.hero-content {
  max-width: 550px;
}
.hero-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--color-white);
  text-transform: uppercase;
  font-family: var(--font-Suisse);
  margin-bottom: 30px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 40px;
}
.hero-title-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold-light);
  font-family: var(--font-Salsa);
  font-size: 90%;
}
.hero-desc {
  font-size: 18px;
  color: var(--color-white);
  font-family: var(--font-Suisse);
  font-weight: 400;
  line-height: 1.4;
}
/* ============================================
   STATS ROW
   ============================================ */
.stats {
  background-color: var(--color-green);
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.stats-container {
  display: flex;
  justify-content: space-between;
}
.stat-item {
  flex: 1;
  padding: 0 40px;
}
.stat-item-center {
  border-left: 1px solid #C8A96EB2;
  border-right: 1px solid #C8A96EB2;
}
.stat-number {
  font-size: 30px;
  font-weight: 400;
  color: #D3B88C;
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-Suisse);
}
.stat-text {
  font-size: 24px;
  font-weight: 300;
  font-family: var(--font-Canela);
  color: var(--color-cream);
  font-style: italic;
  line-height: 1.4;
}
/* ============================================
   ABOUT
   ============================================ */
.about {
  background: linear-gradient(to right, var(--color-green) 50%, var(--color-cream) 50%);
  margin-top: -1px;
  padding: 0;
}
.about-container {
  display: flex;
  align-items: stretch;
  /* Match heights */
  gap: 0;
}
.about-left {
  width: 50%;
  background-color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.about-img {
  width: 100%;
  height: auto;
  max-width: 500px;
  object-fit: contain;
}
.about-right {
  width: 50%;
  padding: var(--section-padding) 0 var(--section-padding) var(--section-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* The divider line under heading */
.about-right .section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background-color: var(--color-gold);
  margin-top: 30px;
}
.about-text p {
  font-size: 16px;
  color: #6B6B6B;
  margin-bottom: 15px;
  line-height: 1.6;
}
.about-text p:last-child {
  margin-bottom: 0;
}
/* ============================================
   CATEGORIES
   ============================================ */
.categories {
  background-color: var(--color-offwhite);
  padding: var(--section-padding) 0;
}
.categories-header {
  margin-bottom: 40px;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.category-card {
  background: #F0F0F0;
  text-align: center;
  display: block;
}
.cat-img-wrapper {
  background-color: #F1F1F1;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}
.category-card:hover .cat-img-wrapper {
  background-color: #E8E8E8;
}
.cat-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.cat-name {
  color: #4A2916;
  font-family: var(--font-serif);
  padding: 0 10px 20px;
  font-size: 20px;
}
/* ============================================
   APP SECTION
   ============================================ */
.app {
  background-color: var(--color-green);
  padding: calc(var(--section-padding) / 1.5) 0;
  overflow: hidden;
}
.app-container {
  display: flex;
  align-items: center;
  gap: 80px;
}
.app-content {
  flex: 1;
  padding-right: 40px;
}
.app-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}
.app-stores {
  display: flex;
  gap: 15px;
}
.store-btn img {
  height: 56px;
}
.app-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ============================================
   CONTACT
   ============================================ */
.contact {
  background-color: var(--color-cream);
  padding: var(--section-padding) 0;
}
.contact-container {
  display: flex;
  gap: var(--section-padding);
}
.contact-left {
  flex: 1;
}
.contact-divider {
  border: none;
  height: 1px;
  background-color: var(--color-gold);
  margin-bottom: 20px;
  width: 60px;
}
.contact-desc {
  font-size: 16px;
  color: #6B6B6B;
  line-height: 1.5;
  max-width: 500px;
}
.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.contact-item:first-child {
  padding-top: 0;
}
.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.contact-title {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.15em;
  font-family: var(--font-Suisse);
  color: #4A2916;
  margin-bottom: 5px;
}
.contact-value {
  font-family: var(--font-Canela);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-black);
  transition: color 0.3s;
}
.contact-value:hover {
  color: var(--color-gold);
}
/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--color-green);
  padding: 50px 0;
  text-align: center;
}
.footer-logo {
  margin: 0 auto 20px;
  filter: brightness(0) invert(1);
}
.footer-tagline {
  font-family: var(--font-Salsa);
  font-style: italic;
  color: #C8A96E;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 300;
}
.footer-copyright {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #D3B88C;
  font-family: var(--font-Suisse);
  text-transform: uppercase;
}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    padding-top: var(--section-padding);
  }
  .hero-left {
    padding: 40px;
    background-color: rgba(42, 68, 56, 0.8);
    /* fallback if image doesn't cover text well on mobile */
  }
  .stats-container {
    flex-direction: column;
    gap: 40px;
  }
  .stat-item-center {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(213, 169, 125, 0.3);
    border-bottom: 1px solid rgba(213, 169, 125, 0.3);
    padding: 40px;
    margin: 0 -40px;
  }
  .about-container {
    flex-direction: column;
  }
  .about-right {
    padding: 60px 40px;
  }
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .app-container {
    flex-direction: column;
    text-align: center;
  }
  .app-content {
    padding-right: 0;
  }
  .app-desc {
    margin: 0 auto 40px;
  }
  .app-stores {
    justify-content: center;
  }
  .contact-container {
    flex-direction: column;
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-title {
    font-size: 48px;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-img {
  height: 28px;
}
.container {
  padding: 0 20px;
}
.hero-left {
  padding: 40px 20px;
}
.hero {
  justify-content: center;
}
.hero-desc {
  font-size: 16px;
}
.stat-item {
  padding: 0;
}
.about-left {
  width: 100%;
}
.about {
  background: var(--color-cream);
}
.about-right {
  padding: 60px 0px;
  width: 100%;
}
.app-container {
  gap: 40px;
}
body {
  zoom: .9;
}
.about-container {
  padding-top: var(--section-padding);
}
}