/* --- RESET & GLOBAL VARIABLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* LENIS REQUIRED CSS STYLES */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

:root {
  --bg-main: #f8f3ee;
  --bg-sec: #efe4d8;
  --accent-pri: #9b6a45;
  --text-dark: #4a352a;
  --text-light: #7b6a5d;
  --gold-high: #c7a36b;
  --border: #dcc8b7;
  --radius: 12px;
  --shadow-soft: rgba(74, 53, 42, 0.05) 0px 4px 20px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-dark);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.brand-logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.logo {
  background-color: rgba(255, 255, 255, 0.588);
  padding: 3px;
  border-radius: 10px;
  /* backdrop-filter: blur(5px); */
}
.brand-logo {
  max-width: 5rem;
  max-height: 5rem;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: nonewqef;
  color: inherit;
}
.btn-2 {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
  position: relative;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
  will-change: transform; /* Performance optimization */
  text-decoration: none;
}

.btn-pri {
  background: linear-gradient(135deg, var(--accent-pri), var(--gold-high));
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(155, 106, 69, 0.2);
}

.btn-pri:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 106, 69, 0.4);
}

.btn-sec {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-sec:hover {
  background-color: #ffffff;
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* --- 1. GLOBAL NAVIGATION BAR --- */
header {
  position: absolute; /* Floating header for Hero */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(220, 200, 183, 0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-high);
}

.nav-right-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #ffffff;
}

.nav-icon {
  height: 36px;
  padding-inline: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-icon:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

/* --- 2. HERO SECTION --- */
.hero-section {
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #140e0a;
}

/* Hardware Accelerated CSS Parallax - Clean & Smooth */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(20, 14, 10, 0.55), rgba(20, 14, 10, 0.55)),
    url("../img/1.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Pure CSS magic */
  z-index: 1;
  transform: translateZ(0); /* Force GPU acceleration */
}

.hero-wrapper {
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-subtitle-top {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
  text-transform: capitalize;
}

.hero-tagline {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

.arrow-left {
  left: 40px;
}
.arrow-right {
  right: 40px;
}

.slider-counter {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  z-index: 3;
}

.counter-item.active {
  color: #ffffff;
  border-bottom: 2px solid var(--gold-high);
  padding-bottom: 2px;
}

/* --- 3. ABOUT DIVINE EYES --- */
.about-section {
  background-color: var(--bg-sec);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-pri);
  margin-bottom: 12px;
  display: block;
}

.about-content h2 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-img-frame {
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: calc(var(--radius) + 16px);
  background: var(--bg-main);
  box-shadow: var(--shadow-soft);
}

.about-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* --- 4. SERVICES PORTFOLIO GRID --- */
.section-title-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-title-block h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 20px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
  will-change: transform;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-pri);
  background: #ffffff;
}

.service-icon {
  font-size: 32px;
  color: var(--gold-high);
  margin-bottom: 20px;
  /* display: inline-block; */
}
.service-icon img {
  max-width: 250px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--text-light);
  font-size: 14px;
}

/* --- 5. PREMIUM VENUES & WHY CHOOSE US --- */
.venue-section {
  background-color: var(--bg-sec);
}

.venue-slider-title {
  font-size: 2rem;
  /* text-transform: uppercase; */
  letter-spacing: 2px;
  /* color: var(--text-light); */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.venue-track {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.venue-partner {
  font-family: "Playfair Display", serif;
  /* font-size: 20px; */
  /* color: var(--text-dark); */
  /* font-weight: 600; */
  /* opacity: 0.75; */
  /* padding: 10px 20px; */
  transition:
    opacity 0.3s ease,
    color 0.3s ease;
  max-width: 20rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.a-img {
  width: 100%;
  height: 90%;
}
.a-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.pillar-item {
  background: rgba(248, 243, 238, 0.6);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius);
}

.pillar-item strong {
  color: var(--accent-pri);
  font-family: "Playfair Display", serif;
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}

/* --- 6. CONTACT INTAKE & FOOTER --- */
.contact-cta-block {
  background: linear-gradient(135deg, var(--text-dark), #2d1f17);
  color: var(--bg-main);
  border-radius: var(--radius);
  padding: 60px;
  text-align: center;
  margin-bottom: 80px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-cta-block h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 16px;
}

.contact-cta-block p {
  color: var(--border);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.contact-cta-block .info-text {
  font-size: 18px;
  color: var(--gold-high);
  font-weight: 500;
  margin-top: 20px;
}

footer {
  border-top: 1px solid var(--border);
  padding-top: 60px;
  padding-bottom: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-light);
  max-width: 360px;
}

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--accent-pri);
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-light);
}

.footer-col ul li a:hover {
  color: var(--accent-pri);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 30px;
  font-size: 12px;
  color: var(--text-light);
}

/* --- RESPONSIVE ADAPTABILITY --- */
@media (max-width: 992px) {
  .hero-title {
    font-size: 52px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .slider-arrow {
    display: none;
  }
  .hero-bg {
    background-attachment: scroll;
  } /* Better performance on mobile/tablets */
}

@media (max-width: 600px) {
  .nav-links,
  .nav-right-icons {
    display: none;
  }
  .hero-title {
    font-size: 38px;
  }
  .hero-subtitle-top {
    font-size: 22px;
  }
  .contact-cta-block {
    padding: 40px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* Clean Typography & Context Rem Mapping */
#founders-section .font-serif {
  font-family: "Playfair Display", Georgia, serif;
}

#founders-section .font-sans {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
}

/* Optimization for fluid rendering scale adjustments */
.founder-card {
  will-change: transform, box-shadow;
}
.founder-card img {
  will-change: transform;
}

/* Custom Properties for Your Color Palette */
:root {
  --bg-main: #f8f3ee;
  --bg-sec: #efe4d8;
  --accent-pri: #9b6a45;
  --text-dark: #4a352a;
  --text-light: #7b6a5d;
  --gold-high: #c7a36b;
  --border: #dcc8b7;
}

/* Section Styling */
.founders-section {
  background-color: var(--bg-main);
  padding: 80px 24px;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}

.founders-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.founders-header {
  text-align: center;
  margin-bottom: 60px;
}

.founders-header .subtitle {
  color: var(--gold-high);
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.founders-header .title {
  color: var(--text-dark);
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.founders-header .divider {
  width: 50px;
  height: 3px;
  background-color: var(--accent-pri);
  margin: 16px auto 0;
}

/* Founders Layout Grid */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Cards */
.founder-card {
  background-color: var(--bg-sec);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Subtly elevates card on hover without breaking the clean aesthetic */
.founder-card:hover {
  transform: translateY(-4px);
}

/* Image Container */
.image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3; /* Keeps proportions consistent */
  background-color: var(--border); /* Fallback placeholder color */
  overflow: hidden;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: top;
}

/* Info Details */
.founder-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.founder-role {
  color: var(--accent-pri);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.founder-name {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.founder-bio {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Breakpoint for Mobile Devices */
@media (max-width: 768px) {
  .founders-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .founders-section {
    padding: 60px 16px;
  }

  .founders-header .title {
    font-size: 28px;
  }
}

