/* ============================================
   HELLO PUNE — Styles
   Palette: Saffron + Maroon + Ivory + Deep Teal
   Fonts: Bricolage Grotesque + Plus Jakarta Sans
   ============================================ */

:root {
  --saffron:    #E8650A;
  --saffron-lt: #F5A05A;
  --maroon:     #8B1A1A;
  --maroon-lt:  #C0392B;
  --ivory:      #FAF6EF;
  --ivory-dk:   #F0E8D8;
  --teal:       #1A4A4A;
  --teal-lt:    #2D7A7A;
  --ink:        #1A1208;
  --ink-soft:   #4A3F30;
  --white:      #FFFFFF;
  --gold:       #C9A84C;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 48px;

  --shadow-sm: 0 2px 12px rgba(26,18,8,0.08);
  --shadow-md: 0 8px 32px rgba(26,18,8,0.12);
  --shadow-lg: 0 20px 60px rgba(26,18,8,0.18);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- FLOATING MOTIFS ---- */
.bg-motifs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.motif {
  position: absolute;
  font-size: 1.2rem;
  color: var(--saffron);
  opacity: 0.08;
  animation: floatMotif 20s ease-in-out infinite;
}
.m1 { top: 10%; left: 5%;  animation-delay: 0s;   font-size: 2rem; }
.m2 { top: 25%; right: 8%; animation-delay: 3s;   font-size: 1.5rem; }
.m3 { top: 55%; left: 3%;  animation-delay: 6s;   font-size: 1rem; }
.m4 { top: 70%; right: 5%; animation-delay: 9s;   font-size: 2.5rem; }
.m5 { top: 85%; left: 15%; animation-delay: 12s;  font-size: 1.8rem; }
.m6 { top: 40%; right: 2%; animation-delay: 15s;  font-size: 1.2rem; }

@keyframes floatMotif {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-20px) rotate(15deg); }
  66%       { transform: translateY(10px) rotate(-10deg); }
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(250,246,239,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232,101,10,0.12);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--maroon);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--saffron);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--saffron); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--saffron);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--maroon); transform: translateY(-1px); }

/* ---- HERO ---- */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(232,101,10,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(139,26,26,0.06) 0%, transparent 60%),
    var(--ivory);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,101,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  background: rgba(232,101,10,0.1);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
  width: fit-content;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.line {
  display: block;
  overflow: hidden;
}
.line-1 {
  font-size: clamp(4rem, 10vw, 9rem);
  color: var(--ink);
  animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.line-2 {
  font-size: clamp(4.5rem, 12vw, 11rem);
  animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.35s both;
}
.accent-text {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--maroon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s ease 0.5s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 4rem;
  animation: fadeUp 0.9s ease 0.65s both;
}
.btn-primary {
  background: var(--saffron);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232,101,10,0.35);
}
.btn-primary:hover {
  background: var(--maroon);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139,26,26,0.35);
}
.btn-ghost {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(26,18,8,0.15);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--saffron); color: var(--saffron); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  animation: fadeUp 0.9s ease 0.8s both;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--maroon);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat span:not(.stat-num):not(.stat-label) {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--saffron);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(26,18,8,0.15);
}

/* ---- MARQUEE ---- */
.marquee-strip {
  position: relative;
  z-index: 1;
  background: var(--maroon);
  padding: 0.9rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
}
.marquee-track span:nth-child(even) { color: var(--saffron-lt); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- SECTION COMMON ---- */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.75rem;
}
.section-tag.light { color: var(--saffron-lt); }
h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

/* ---- ABOUT ---- */
.about {
  position: relative;
  z-index: 1;
  padding: 7rem 4rem;
  background: var(--ivory);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p {
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.inline-link {
  color: var(--saffron);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
  transition: gap 0.2s;
}
.inline-link:hover { gap: 0.6rem; }

.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.visual-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232,101,10,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.visual-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vc-icon { font-size: 2rem; }
.vc-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}
.vc1 { border-top: 3px solid var(--saffron); }
.vc2 { border-top: 3px solid var(--maroon); }
.vc3 { border-top: 3px solid var(--teal-lt); }
.vc4 { border-top: 3px solid var(--gold); }

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--maroon);
  color: var(--white);
  border-radius: 50%;
  width: 90px; height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.about-badge span { font-size: 0.65rem; letter-spacing: 0.1em; opacity: 0.8; }
.about-badge strong { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; }

/* ---- HIGHLIGHTS ---- */
.highlights {
  position: relative;
  z-index: 1;
  padding: 7rem 4rem;
  background: var(--ivory-dk);
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 { color: var(--ink); }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s;
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hc-large {
  grid-column: 1 / 3;
}
.hc-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hc-large .hc-img { height: 220px; }
.hc-emoji { font-size: 3.5rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }
.hc-body { padding: 1.5rem; }
.hc-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  background: rgba(232,101,10,0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.6rem;
}
.hc-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.hc-body p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; }

/* ---- CULTURE ---- */
.culture {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--teal) 0%, var(--maroon) 100%);
  padding: 7rem 4rem;
  text-align: center;
  overflow: hidden;
}
.culture::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.culture-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.culture-inner h2 { color: var(--white); margin-bottom: 2rem; }
.culture-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.pill {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
  cursor: default;
}
.pill:hover { background: rgba(232,101,10,0.4); transform: translateY(-2px); }
.culture-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  letter-spacing: -0.01em;
}

/* ---- VISIT ---- */
.visit {
  position: relative;
  z-index: 1;
  padding: 7rem 4rem;
  background: var(--ivory);
}
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.visit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232,101,10,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.visit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.visit-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.visit-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.visit-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; }

/* ---- FOOTER ---- */
.footer {
  position: relative;
  z-index: 1;
  background: var(--ink);
  color: var(--ivory);
  padding: 3.5rem 4rem 1.5rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(250,246,239,0.1);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--saffron);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand p { font-size: 0.875rem; color: rgba(250,246,239,0.5); max-width: 280px; }
.footer-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(250,246,239,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--saffron); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: rgba(250,246,239,0.35);
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- KEYFRAMES ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .nav { padding: 1rem 2rem; }
  .hero { padding: 7rem 2rem 4rem; }
  .about { padding: 5rem 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { display: none; }
  .highlights { padding: 5rem 2rem; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .hc-large { grid-column: 1 / 3; }
  .culture { padding: 5rem 2rem; }
  .visit { padding: 5rem 2rem; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer { padding: 3rem 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 2rem; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav { padding: 1rem 1.5rem; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stat-divider { display: none; }
  .highlights-grid { grid-template-columns: 1fr; }
  .hc-large { grid-column: 1; }
  .about { padding: 4rem 1.5rem; }
  .highlights { padding: 4rem 1.5rem; }
  .culture { padding: 4rem 1.5rem; }
  .visit { padding: 4rem 1.5rem; }
  .footer { padding: 2.5rem 1.5rem 1.5rem; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}