/*
Theme Name: GODPLANN
Theme URI: https://godplann.com
Author: GODPLANN Studio
Author URI: https://godplann.com
Description: Custom WordPress theme for GODPLANN — the bhajan-clubbing duo Mansi Jain & Tamanna Jain. Editable homepage banner, Instagram reels page, reviews page and contact page, all manageable from the WordPress dashboard.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: godplann
*/

/* ============================================================
   TOKENS
   Palette: temple-gold meets late-night indigo — devotional and
   nightclub in the same breath.
   ============================================================ */
:root{
  --gp-indigo: #1C1230;      /* near-black, deep indigo — the "club" half */
  --gp-indigo-2: #2A1B41;
  --gp-maroon: #6E1E2B;      /* temple maroon — the "bhajan" half */
  --gp-marigold: #E8A33D;    /* marigold garland orange */
  --gp-gold: #C99A3A;        /* muted gold, for restraint */
  --gp-ivory: #F7EFE1;       /* warm ivory background */
  --gp-ivory-2: #EFE4CE;
  --gp-ink: #241A1F;         /* body text on light */

  --gp-font-display: 'Cormorant Garamond', 'Georgia', serif;
  --gp-font-body: 'Manrope', 'Segoe UI', sans-serif;

  --gp-radius: 4px;
  --gp-container: 1180px;
  --gp-ease: cubic-bezier(.22,.61,.36,1);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--gp-ivory);
  color: var(--gp-ink);
  font-family: var(--gp-font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family: var(--gp-font-display);
  font-weight: 600;
  margin: 0 0 .4em;
  color: var(--gp-maroon);
  letter-spacing: .01em;
}
p{ margin:0 0 1em; }
:focus-visible{ outline: 2px solid var(--gp-marigold); outline-offset: 3px; }
.gp-container{ max-width: var(--gp-container); margin: 0 auto; padding: 0 24px; }
.gp-eyebrow{
  font-family: var(--gp-font-body);
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gp-gold);
  font-weight: 700;
}
.gp-btn{
  display:inline-flex;
  align-items:center;
  gap:.5em;
  padding: 14px 30px;
  border-radius: var(--gp-radius);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--gp-ease), background .25s, color .25s, border-color .25s;
}
.gp-btn:hover{ transform: translateY(-2px); }
.gp-btn--gold{ background: var(--gp-marigold); color: var(--gp-indigo); }
.gp-btn--gold:hover{ background: var(--gp-gold); }
.gp-btn--ghost{ background: transparent; color: var(--gp-ivory); border-color: rgba(247,239,225,.5); }
.gp-btn--ghost:hover{ border-color: var(--gp-marigold); color: var(--gp-marigold); }
.gp-btn--maroon{ background: var(--gp-maroon); color: var(--gp-ivory); }
.gp-btn--maroon:hover{ background: #57171f; }

/* Diya-flame divider — the theme's signature mark, used wherever
   sections change register (devotional -> club -> practical). */
.gp-flame-divider{ display:flex; align-items:center; justify-content:center; gap:14px; margin: 6px 0 46px; }
.gp-flame-divider::before, .gp-flame-divider::after{ content:""; flex:1; max-width:120px; height:1px; background: linear-gradient(90deg, transparent, var(--gp-gold), transparent); }
.gp-flame-divider svg{ width:22px; height:26px; flex-shrink:0; }

/* ============================================================
   SITE HEADER
   ============================================================ */
.gp-header{
  position: sticky; top:0; z-index: 60;
  background: rgba(28,18,48,.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201,154,58,.25);
}
.gp-header__inner{ display:flex; align-items:center; justify-content:space-between; padding: 16px 24px; }
.gp-logo{ font-family: var(--gp-font-display); font-size: 26px; font-weight:700; color: var(--gp-ivory); letter-spacing:.03em; }
.gp-logo span{ color: var(--gp-marigold); }
.gp-nav{ display:flex; gap: 34px; }
.gp-nav a{ color: var(--gp-ivory); font-size: 13.5px; letter-spacing:.12em; text-transform:uppercase; font-weight:600; position:relative; padding: 4px 0; }
.gp-nav a::after{ content:""; position:absolute; left:0; bottom:-2px; width:0; height:1px; background: var(--gp-marigold); transition: width .3s var(--gp-ease); }
.gp-nav a:hover::after, .gp-nav a.is-active::after{ width:100%; }
.gp-menu-toggle{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
.gp-menu-toggle span{ display:block; width:24px; height:2px; background:var(--gp-ivory); margin:5px 0; transition:.3s; }

@media (max-width: 860px){
  .gp-nav{ position:fixed; inset: 68px 0 auto 0; background: var(--gp-indigo); flex-direction:column; gap:0; padding: 8px 24px 20px; transform: translateY(-12px); opacity:0; pointer-events:none; transition: .3s var(--gp-ease); border-bottom: 1px solid rgba(201,154,58,.25); }
  .gp-nav.is-open{ transform: translateY(0); opacity:1; pointer-events:auto; }
  .gp-nav a{ padding: 14px 0; border-bottom: 1px solid rgba(247,239,225,.08); }
  .gp-menu-toggle{ display:block; }
}

/* ============================================================
   HERO BANNER — crossfading photo transition + gold mandala ring
   ============================================================ */
.gp-hero{
  position: relative;
  min-height: 92vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background: var(--gp-indigo);
}
.gp-hero__slides{ position:absolute; inset:0; }
.gp-hero__slide{
  position:absolute; inset:0;
  opacity:0;
  transition: opacity 1.6s ease;
}
.gp-hero__slide.is-active{ opacity:1; z-index:1; }
.gp-hero__slide img{
  width:100%; height:100%; object-fit:cover; object-position: center 20%;
  transform: scale(1);
  animation: gpKenBurns 9s linear forwards;
}
.gp-hero__slide.is-active img{ animation-play-state: running; }
@keyframes gpKenBurns{ from{ transform: scale(1);} to{ transform: scale(1.08);} }

.gp-hero__scrim{
  position:absolute; inset:0; z-index:2;
  background:
    radial-gradient(ellipse at 30% 100%, rgba(28,18,48,.15), transparent 55%),
    linear-gradient(180deg, rgba(28,18,48,.55) 0%, rgba(28,18,48,.35) 35%, rgba(28,18,48,.92) 100%);
}
/* mandala ring, pure CSS, sits behind the hero copy as a devotional
   halo that also reads as a spotlight / vinyl ring for the "club" side */
.gp-hero__mandala{
  position:absolute; z-index:2; right:6%; top:8%;
  width: 480px; height:480px;
  border-radius:50%;
  border: 1px solid rgba(201,154,58,.35);
  box-shadow: 0 0 0 22px rgba(201,154,58,.05), 0 0 0 46px rgba(201,154,58,.03);
  animation: gpSpin 90s linear infinite;
  pointer-events:none;
}
.gp-hero__mandala::before{
  content:""; position:absolute; inset: 34px; border-radius:50%; border: 1px dashed rgba(232,163,61,.4);
}
@keyframes gpSpin{ to{ transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce){
  .gp-hero__mandala{ animation:none; }
  .gp-hero__slide img{ animation:none; }
}

.gp-hero__content{ position:relative; z-index:3; padding: 60px 24px 88px; width:100%; }
.gp-hero__eyebrow{ color:var(--gp-marigold); }
.gp-hero__title{
  color: var(--gp-ivory);
  font-size: clamp(42px, 7vw, 84px);
  line-height: .98;
  margin: 14px 0 18px;
}
.gp-hero__title em{ font-style: normal; color: var(--gp-marigold); }
.gp-hero__sub{ color: rgba(247,239,225,.82); font-size: 18px; max-width: 560px; margin-bottom: 30px; }
.gp-hero__cta{ display:flex; gap:16px; flex-wrap:wrap; }

.gp-hero__dots{ position:absolute; z-index:3; right:24px; bottom:28px; display:flex; gap:10px; }
.gp-hero__dots button{ width:9px; height:9px; border-radius:50%; border:1px solid var(--gp-marigold); background:transparent; padding:0; cursor:pointer; }
.gp-hero__dots button.is-active{ background: var(--gp-marigold); }

@media (max-width: 760px){
  .gp-hero{ min-height: 82vh; align-items:flex-end; }
  .gp-hero__mandala{ width:300px; height:300px; right:-60px; top:0; }
}

/* ============================================================
   ABOUT / DUO SECTION
   ============================================================ */
.gp-section{ padding: 96px 0; }
.gp-section--dark{ background: var(--gp-indigo); color: var(--gp-ivory); }
.gp-section--dark h2, .gp-section--dark h3{ color: var(--gp-ivory); }
.gp-section--tint{ background: var(--gp-ivory-2); }

.gp-about{ display:grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items:center; }
.gp-about__figure{ position:relative; }
.gp-about__figure img{ border-radius: var(--gp-radius); }
.gp-about__figure::after{
  content:""; position:absolute; inset: 18px -18px -18px 18px; z-index:-1;
  border: 1px solid var(--gp-gold);
  border-radius: var(--gp-radius);
}
.gp-about h2{ font-size: clamp(30px, 4vw, 46px); }
.gp-about__names{ font-size: 15px; letter-spacing:.08em; text-transform:uppercase; color: var(--gp-maroon); font-weight:700; margin-bottom: 18px; }

@media (max-width: 860px){ .gp-about{ grid-template-columns:1fr; } }

/* pillars / what-is-bhajan-clubbing strip */
.gp-pillars{ display:grid; grid-template-columns: repeat(3,1fr); gap: 34px; margin-top: 50px; }
.gp-pillar{ padding: 28px 26px; border: 1px solid rgba(201,154,58,.3); border-radius: var(--gp-radius); }
.gp-pillar__num{ font-family: var(--gp-font-display); font-size: 34px; color: var(--gp-marigold); }
@media (max-width: 760px){ .gp-pillars{ grid-template-columns:1fr; } }

/* ============================================================
   TEASER LINKS (Instagram / Reviews / Contact cards on homepage)
   ============================================================ */
.gp-teasers{ display:grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.gp-teaser{
  position:relative; padding: 40px 30px; background: var(--gp-ivory);
  border: 1px solid rgba(110,30,43,.15); border-radius: var(--gp-radius);
  transition: transform .3s var(--gp-ease), box-shadow .3s var(--gp-ease);
}
.gp-teaser:hover{ transform: translateY(-6px); box-shadow: 0 18px 34px -18px rgba(28,18,48,.35); }
.gp-teaser h3{ font-size:24px; margin-bottom:10px; }
.gp-teaser__link{ display:inline-flex; gap:6px; margin-top:16px; font-weight:700; font-size:13.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--gp-maroon); }
@media (max-width: 860px){ .gp-teasers{ grid-template-columns:1fr; } }

/* ============================================================
   PAGE HEADER (used on Instagram / Reviews / Contact pages)
   ============================================================ */
.gp-page-hero{ background: var(--gp-indigo); color: var(--gp-ivory); padding: 90px 0 60px; text-align:center; }
.gp-page-hero h1{ color:var(--gp-ivory); font-size: clamp(34px,5vw,58px); margin-top:12px; }
.gp-page-hero p{ max-width: 560px; margin: 0 auto; color: rgba(247,239,225,.8); }

/* ============================================================
   INSTAGRAM / REELS PAGE
   ============================================================ */
.gp-insta-follow{ text-align:center; margin-bottom: 56px; }
.gp-reel-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.gp-reel-grid > *{ min-width:0; }
@media (max-width: 900px){ .gp-reel-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .gp-reel-grid{ grid-template-columns: 1fr; } }
.gp-reel-empty{
  border: 1px dashed rgba(110,30,43,.3); border-radius: var(--gp-radius);
  padding: 46px 30px; text-align:center; color: rgba(36,26,31,.6);
}

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.gp-reviews-wrap{ display:grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
@media (max-width: 760px){ .gp-reviews-wrap{ grid-template-columns:1fr; } }
.gp-review{
  background: var(--gp-ivory); border-radius: var(--gp-radius);
  border: 1px solid rgba(110,30,43,.15);
  padding: 30px 32px; position:relative;
}
.gp-review::before{
  content:"“"; font-family: var(--gp-font-display); font-size: 64px; color: var(--gp-marigold);
  position:absolute; top:6px; left:18px; line-height:1;
}
.gp-review-text{ margin: 26px 0 16px; font-size: 16.5px; }
.gp-review-author{ font-weight:700; color: var(--gp-maroon); margin:0; font-size:14.5px; letter-spacing:.03em; }
.gp-review-stars{ color: var(--gp-marigold); letter-spacing:2px; margin-bottom:6px; display:block; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.gp-contact{ display:grid; grid-template-columns: .9fr 1.1fr; gap: 60px; }
@media (max-width: 860px){ .gp-contact{ grid-template-columns:1fr; } }
.gp-contact__info h3{ font-size:22px; margin-top:34px; }
.gp-contact__info h3:first-child{ margin-top:0; }
.gp-contact-form{ display:grid; gap:18px; }
.gp-field label{ display:block; font-size:13px; letter-spacing:.06em; text-transform:uppercase; font-weight:700; color:var(--gp-maroon); margin-bottom:6px; }
.gp-field input, .gp-field textarea{
  width:100%; padding: 13px 15px; border: 1px solid rgba(110,30,43,.25); border-radius: var(--gp-radius);
  font-family: var(--gp-font-body); font-size: 15.5px; background: #fff; color: var(--gp-ink);
}
.gp-field textarea{ min-height: 140px; resize: vertical; }
.gp-hp-field{ position:absolute; left:-9999px; top:-9999px; }
.gp-form-notice{ padding: 14px 18px; border-radius: var(--gp-radius); margin-bottom: 20px; font-size:14.5px; font-weight:600; }
.gp-form-notice--success{ background:#e4f2e1; color:#2e5c2a; border:1px solid #b6d9af; }
.gp-form-notice--error{ background:#f7e3e3; color:#7a2323; border:1px solid #e3b6b6; }

/* ============================================================
   FOOTER
   ============================================================ */
.gp-footer{ background: var(--gp-indigo); color: rgba(247,239,225,.75); padding: 60px 0 30px; }
.gp-footer__top{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:30px; padding-bottom:34px; border-bottom:1px solid rgba(201,154,58,.2); }
.gp-footer .gp-logo{ margin-bottom:10px; }
.gp-footer__social{ display:flex; gap:16px; }
.gp-footer__social a{ width:38px; height:38px; border:1px solid rgba(201,154,58,.4); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; }
.gp-footer__social a:hover{ border-color: var(--gp-marigold); color: var(--gp-marigold); }
.gp-footer__bottom{ padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:13px; }

.gp-fade-up{ opacity:0; transform: translateY(24px); transition: opacity .8s var(--gp-ease), transform .8s var(--gp-ease); }
.gp-fade-up.is-visible{ opacity:1; transform:none; }
