@font-face {
  font-family: "Alexandria";
  src: url("./assets/Alexandria-VariableFont_wght.48122b6566da6755bd70.ttf") format("truetype");
  font-weight: 100 900;
}

:root {
  --ink: #211006;
  --muted: rgba(33, 16, 6, 0.56);
  --line: #ffd8bf;
  --soft: #fff4ed;
  --primary: #fd6003;
  --primary-dark: #cf4700;
  --accent: #fd6003;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Alexandria", Arial, sans-serif;
  overflow-x: hidden;
}

main {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 8vh 5vw 15vh;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 246, 240, 0.28), rgba(255, 255, 255, 0.04) 60%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0) 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 610px;
  margin-top: 2rem;
}

.site-logo {
  position: absolute;
  z-index: 4;
  top: clamp(1.25rem, 3vw, 2.5rem);
  left: clamp(1.25rem, 5vw, 4rem);
  display: inline-flex;
  align-items: center;
  width: clamp(150px, 18vw, 250px);
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(253, 96, 3, 0.18);
  border-radius: 14px;
  background: rgba(255, 248, 243, 0.64);
  box-shadow: 0 18px 45px rgba(253, 96, 3, 0.12);
  backdrop-filter: blur(10px);
}

.site-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.launch-timer {
  width: min(680px, 100%);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(253, 96, 3, 0.22);
  border-radius: 18px;
  background: rgba(255, 248, 243, 0.62);
  box-shadow: 0 26px 80px rgba(253, 96, 3, 0.14);
  backdrop-filter: blur(10px);
}

.launch-timer p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  font-weight: 760;
  line-height: 1.35;
}

.timer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.timer-unit {
  min-height: 132px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.35rem;
  border: 2px solid rgba(253, 96, 3, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 233, 219, 0.9)),
    radial-gradient(circle at 30% 20%, rgba(253, 96, 3, 0.22), transparent 42%);
  box-shadow: inset 0 0 28px rgba(253, 96, 3, 0.08), 0 14px 34px rgba(253, 96, 3, 0.1);
}

.timer-unit strong {
  color: var(--primary);
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  line-height: 0.95;
  font-weight: 820;
  font-variant-numeric: tabular-nums;
}

.timer-unit span {
  color: rgba(33, 16, 6, 0.58);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.search-pill {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 230px;
  min-height: 58px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 24px 70px rgba(253, 96, 3, 0.26);
  font-weight: 670;
}

.search-pill img {
  width: 18px;
  height: 18px;
}

.section,
.about,
.social-footer {
  width: min(1152px, calc(100% - 8vw));
  margin: 0 auto;
}

.section {
  padding: 88px 0 60px;
}

.section-heading {
  text-align: center;
  margin: 0 auto 2.5rem;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

.section-heading p {
  width: min(760px, 100%);
  margin: 1.2rem auto 0;
  color: rgba(33, 16, 6, 0.42);
  font-size: 1.05rem;
  font-weight: 530;
  line-height: 1.65;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.55rem;
}

.category-card {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
  box-shadow: 0 24px 55px rgba(253, 96, 3, 0.08);
}

.category-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: hue-rotate(82deg) saturate(1.45) brightness(1.04);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 50% 58%, rgba(253, 96, 3, 0.2), transparent 36%);
  mix-blend-mode: color;
  pointer-events: none;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
}

.category-card div {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 1.65rem;
  display: grid;
  justify-items: center;
  gap: 1.2rem;
}

.category-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.category-card a {
  min-width: 158px;
  padding: 1rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--primary), var(--primary-dark));
  color: #fff;
  text-align: center;
  font-weight: 650;
}

.about {
  padding: 80px 0;
}

.about-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
  min-height: 390px;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 0 0 20px 20px;
  background: linear-gradient(100deg, #fff8f3, #fff0e5);
}

.about-card p {
  color: rgba(33, 16, 6, 0.72);
  font-size: 1.05rem;
  font-weight: 620;
  line-height: 1.55;
}

.about-card img {
  justify-self: center;
  width: min(420px, 90%);
}

.brand-logo {
  display: block;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(253, 96, 3, 0.12);
}

.whitepaper {
  display: inline-flex;
  margin-top: 1rem;
  padding: 1rem 1.55rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(140deg, var(--primary), var(--primary-dark));
  font-weight: 650;
}

.social-footer {
  display: flex;
  justify-content: center; 
  gap: 24px;              
  padding: 20px 0;
}

.social-footer a {
  color: #333333;         
  font-size: 24px;        
  text-decoration: none;
  transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.social-footer a:hover {
  transform: translateY(-2px); /* Slight lift on hover */
}

/* Brand hover colors */
.social-footer a[aria-label="Facebook"]:hover {
  color: #1877F2;
}

.social-footer a[aria-label="WhatsApp"]:hover {
  color: #25D366;
}

.social-footer a[aria-label="Location"]:hover {
  color: #EA4335; /* Map pin red */
}


.social-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0 0 72px;
}

.social-footer a {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: #fff7f2;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 750;
  box-shadow: 0 12px 32px rgba(253, 96, 3, 0.1);
}

.social-footer a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

@media (max-width: 960px) {
  .hero {
    min-height: 780px;
    padding-top: 4rem;
    align-items: start;
  }

  .hero-content {
    margin-top: 7rem;
  }

  .site-logo {
    width: 150px;
  }

  .category-grid,
  .about-card {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 460px;
  }

  .about-card {
    text-align: center;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 690px;
    padding: 2rem 1.25rem 7rem;
  }

  .timer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timer-unit {
    min-height: 108px;
  }

  .search-pill {
    width: calc(100% - 2.5rem);
  }

  .site-logo {
    left: 1rem;
    top: 1rem;
    width: 132px;
    padding: 0.45rem 0.55rem;
  }

  .section,
  .about,
  .social-footer {
    width: min(100% - 2rem, 1152px);
  }

  .social-footer {
    padding-bottom: 48px;
  }
}
