/* FONTS */
@font-face {
  font-family: 'Product Sans';
  src: local('Product Sans');
}

@font-face {
  font-family: 'Awesome Serif';
  src: local('Awesome Serif');
}

:root {
  --header-h: 88px;
  --black: #1E1E1E;
  --dark: #2B2B2B;
  --white: #FFFFFF;
}

body {
  margin: 0;
  font-family: 'Product Sans', sans-serif;
  background: var(--black);
  color: var(--white);
}


/* ===== GLOBAL OVERLAY ===== */
/* OVERLAY */
#overlay {
  position: fixed;
  inset: 0;
  background: #0f0f0f;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

#overlay h1 {
  font-family: 'Awesome Serif', serif;
  color: #fff;
  font-size: 32px;
  transform: scale(0.2);
  opacity: 0;
}





/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 999;

  /* GLASS BASE */
  background:
    linear-gradient(
      103deg,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.06)
    );

  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);

  /* DEPTH */
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.35);

  /* FROST */
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}


.header-inner {
  height: 100%;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 56px; /* balanced */
}


.menu-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
}
/* SIDE MENU */
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 100%;
  height: 100vh;
  background: var(--dark);
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.77,0,0.18,1);
  z-index: 1000;
}

.side-menu.active {
  transform: translateX(0);
}

.close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
}

.menu-content {
  padding: 100px 40px 40px;
}

.menu-label {
  font-size: 12px;
  opacity: 0.5;
  margin-bottom: 12px;
  display: block;
}

.menu-block {
  margin-bottom: 40px;
}

.menu-link {
  display: block;
  font-family: 'Awesome Serif', serif;
  font-size: 22px;
  margin: 10px 0;
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
}
/* HIVE EFFECT */
/* HIVE EFFECT – STABLE VERSION */
.hive {
  display: block;
  cursor: pointer;
}

.hive span {
  display: inline-block;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

/* hover = small upward movement, not vanish */
.hive:hover span {
  transform: translateY(-6px);
}
@media (max-width: 768px) {
  .side-menu {
    width: 100%;
  }
  .site-header {
    backdrop-filter: blur(8px) saturate(160%);
  }

  .menu-content {
    padding: 90px 24px 32px;
  }

  .menu-link {
    font-size: 20px;
  }
}



/* ===== GLOBAL OVERLAY ===== */
/* OVERLAY */
#overlay {
  position: fixed;
  inset: 0;
  background: #0f0f0f;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

#overlay h1 {
  font-family: 'Awesome Serif', serif;
  color: #fff;
  font-size: 32px;
  transform: scale(0.2);
  opacity: 0;
}




/*==============Contact=============*/
/* CONTACT HERO */
.contact-hero {
  height: calc(100vh - var(--header-h)); /* LOCK viewport */
  padding-top: var(--header-h);          /* HEADER SPACE */
  background: #111;
  color: #fff;
  position: relative;
  overflow: hidden;                      /* CRITICAL */
  padding-left: clamp(5vw, 7vw, 9vw);
  padding-right: clamp(5vw, 7vw, 9vw);
}

/* GRID */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  align-items: center;
}

/* LEFT */
.brand-box {
  max-width: 420px;
}

.brand-title {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: 1px;
}

.brand-title span {
  opacity: 1;
}

.brand-sub {
  margin-top: 8px;
  letter-spacing: 2px;
  font-size: 16px;
  color: #aaa;
}

/* RIGHT */
.contact-right {
  max-width: 360px;
  justify-self: end;
}

.contact-heading {
  font-size: 56px;
  margin-bottom: 12px;
  font-family: 'Awesome Serif', serif;
}

.contact-desc {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-item {
  margin-bottom: 22px;
  font-size: 20px;
  font-family: 'Awesome Serif', serif;
}

.contact-item span {
  color: #888;
  font-size: 16px;
  
}

/* FLOATING ICONS */
.float-icon {
  position: absolute;
  bottom: auto;
  width: 26px;
  opacity: 0.45;
  pointer-events: none;
  
}




.float-icon img {
  width: 100%;
  /*filter: invert(1);*/
  animation: float 16s ease-in-out infinite;
  filter: brightness(0) saturate(100%) invert(100%);
}



/* BOTTOM HEAVY */
/* LEFT SAFE ZONE */
.c1  { top: 18%; left: 10%; }
.c2  { top: 34%; left: 16%; }
.c7  { bottom: 20%; left: 5%; }
.c11 { bottom: 10%; left: 54%; }

/* RIGHT SAFE ZONE */
.c3  { top: 22%; right: 5%; }
.c4  { top: 40%; right: 6%; }
.c8  { bottom: 26%; right: 5%; }
.c12 { bottom: 12%; right: 8%; }

/* TOP EDGE (SAFE) */
.c5  { top: 20%; left: 40%; }
.c9  { top: 24%; right: 38%; }

/* BOTTOM EDGE (SAFE) */
.c6  { bottom: 6%; left: 30%; }
.c10 { bottom: 4%; right: 30%; }

/* EXTRA FLOATERS */
.c13 { top: 50%; left: 44%; }
.c14 { top: 70%; right: 60%; }
.c15 { bottom: 8%; left: 14%; }
.c16 { bottom: 38%; right: 10%; }


@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* MOBILE */
@media (max-width: 768px) {

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 18px;               /* 🔴 reduced from 40px */
    align-items: start;      /* 🔴 stop vertical centering */
  }

  .brand-box {
    margin-bottom: 10px;     /* 🔴 tighter spacing */
  }

  .brand-title {
    margin-bottom: 6px;
  }

  .brand-sub {
    margin-bottom: 10px;
  }

  .contact-heading {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .contact-desc {
    margin-bottom: 16px;
  }

  .contact-item {
    margin-bottom: 14px;
  }
  .float-icon {
    width: 18px;
    opacity: 0.25;
  }

  .c5, .c9, .c13, .c15 {
    display: none; /* hide risky center icons */
  }
}



/*======= FOOTER =======*/

/* ===============================
   FOOTER
================================ */

.site-footer {
  background: #1b1b1b;
  color: #fff;
  padding: clamp(64px, 10vh, 120px) clamp(6vw, 8vw, 12vw);
}

.footer-inner {
  max-width: 1400px;
  margin: auto;
}

/* BRAND */
.footer-brand {
  font-family: 'Awesome Serif', serif;
  font-size: clamp(28px, 4vw, 48px);
  text-align: center;
  opacity: 0;
}

/* LINE */
.footer-line {
  height: 1px;
  background: rgba(255,255,255,0.35);
  margin: 24px auto 48px;
  width: 0;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  opacity: 0;
}

/* NAV */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.footer-nav a {
  color: #d0d0d0;
  text-decoration: none;
  font-size: 14px;
}

/* FOOTER LINK HOVER (same feel as menu) */
.footer-nav a,
.footer-bottom a {
  position: relative;
  color: #d0d0d0;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a::after,
.footer-bottom a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.35s ease;
}

.footer-nav a:hover,
.footer-bottom a:hover {
  color: #ffffff;
}

.footer-nav a:hover::after,
.footer-bottom a:hover::after {
  width: 100%;
}

/* SOCIAL ICON HOVER */
.footer-social a {
  color: #d0d0d0;
  font-size: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  color: #ffffff;
  transform: translateY(-3px);
}



/* SOCIAL */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.footer-social a {
  color: #d0d0d0;
  font-size: 18px;
}

/* INFO */
.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  font-size: 14px;
  color: #b5b5b5;
}

.footer-info span {
  display: block;
  margin-bottom: 14px;
  opacity: 0.7;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #9a9a9a;
}
/* Ensure footer always shows */
.site-footer,
.footer-brand,
.footer-grid,
.footer-bottom {
  opacity: 1;
  transform: none;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .footer-info {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer-nav a::after,
  .footer-bottom a::after {
    display: none;
  }
     .footer-info .info-item p {
    justify-content: center;
    text-align: center;
  }

  .footer-info .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}


