/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #111;
}

/* ================= VARIABLES ================= */
:root {
  --header-height: 72px;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.nav {
  max-width: 1200px;
  height: 100%;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 600;
  font-size: clamp(16px, 2vw, 20px);
  letter-spacing: 0.6px;
}

.nav-links a {
  margin-left: 28px;
  text-decoration: none;
  font-size: 14px;
  color: #222;
}

/* LOGIN BUTTON */
.login-btn {
  margin-left: 24px;
  padding: 8px 18px;
  background: #00796B;
  color: #ffffff !important;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.login-btn:hover {
  background: #009688;
}

/* ================= LOGO GOLD SHINE ================= */
.shine-text {
  background: linear-gradient(
    110deg,
    #111 40%,
    #d4af37 50%,
    #111 60%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShine 3.5s linear infinite;
}

@keyframes goldShine {
  from { background-position: 200% center; }
  to   { background-position: 0% center; }
}

/* ================= GLOBAL CITY (GREEN + PEARL) ================= */
.green-pearl-shine {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 14px;

  background: linear-gradient(
    110deg,
    #0b7d3e 40%,
    #fdfcf8 50%,
    #0b7d3e 60%
  );

  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: greenPearlShine 4.5s linear infinite;
}

@keyframes greenPearlShine {
  from { background-position: 200% center; }
  to   { background-position: 0% center; }
}

/* ================= SCROLL ================= */
.scroll-container {
  scroll-snap-type: y mandatory;
}

/* ================= PANELS ================= */
.panel {
  min-height: calc(100vh - var(--header-height));
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  scroll-snap-align: start;
}

/* ================= HERO ================= */
.hero {
  background:
    linear-gradient(
      rgba(176, 150, 90, 0.75),
      rgba(120, 95, 45, 0.75)
    ),
    url('img/hero-bg.jpg') center / cover no-repeat;
}

.hero-text {
  max-width: 900px;
  text-align: center;
  color: #fff;

  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
}

.hero-text h2 {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Hindi / normal hero H1 only */
.hero-text h1:not(.green-pearl-shine) {
  margin-top: 22px;
  font-size: 40px;
  font-weight: inherit;
  line-height: 1.45;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.hero-text span {
  color: #d4af37;
}

/* ================= CARDS ================= */
.card {
  background: #ffffff;
  max-width: 900px;
  padding: 56px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  text-align: center;

  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
}

.card h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.card p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* ================= MAP ================= */
.map-img {
  width: 100%;
  margin: 32px 0;
  border-radius: 16px;
}

/* ================= DIRECTORS ================= */
.director-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.director-box {
  width: 280px;
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.director-box:hover {
  transform: translateY(-6px);
}

.director-box img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}

.director-box h4 {
  font-size: 18px;
  margin-top: 8px;
}

.director-box p {
  font-size: 14px;
  color: #777;
  margin-top: 4px;
}

.director-box span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-weight: 600;
  color: #00796B;
  font-size: 15px;
  white-space: nowrap;
}

/* ================= FOOTER ================= */
.footer {
  background: #111;
  color: #aaa;
  font-size: 14px;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  .scroll-container {
    scroll-snap-type: none;
  }

  .panel {
    min-height: auto;
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: 40px;
  }

  /* GLOBAL CITY dominant */
  .green-pearl-shine {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1.6px;
  }

  /* Hindi text smaller */
  .hero-text h1:not(.green-pearl-shine) {
    font-size: 22px;
    line-height: 1.6;
    padding: 0 10px;
  }

  .hero-text h2 {
    font-size: 13px;
  }

  .card {
    padding: 32px 20px;
  }

  .director-row {
    flex-direction: column;
    gap: 24px;
  }

  .director-box {
    width: 100%;
    max-width: 360px;
    margin: auto;
  }
}

/* ================= MOBILE MENU ================= */
.mobile-menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transform: translateY(-120%);
  transition: transform 0.3s ease;
  z-index: 999;
}

.mobile-menu a {
  text-decoration: none;
  color: #222;
  font-size: 16px;
}

.mobile-menu.open {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .mobile-menu-icon {
    display: block;
  }
}
