/*
Theme Name: My Theme
Author: Karam Deep Singh
Version: 1.0
*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Montserrat', sans-serif;
      background: #F8F3EC;
      color: #1A1A1A;
      overflow-x: hidden;
    }

    :root {
      --forest: #1C3320;
      --forest-mid: #2a4a2e;
      --gold: #D4AF37;
      --gold-light: #F0CC55;
      --cream: #FDFAF5;
      --stone: #9A8060;
      --dark: #0f1a10;
      --light-stone: #F0E8D8;
      --text-muted: #5A5A5A;
    }

    h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }

    /* ─── NAV ─────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 1.8rem 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.4s ease;
    }
    nav.scrolled {
      background: rgba(15, 26, 16, 0.96);
      backdrop-filter: blur(12px);
      padding: 1rem 4rem;
      box-shadow: 0 2px 30px rgba(0,0,0,0.4);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      color: white;
      font-size: 1.25rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-decoration: none;
      line-height: 1.2;
    }
    .nav-logo span { color: var(--gold); font-style: italic; }
    .nav-links { display: flex; gap: 2.8rem; list-style: none; align-items: center; }
    .nav-links a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 500;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: var(--gold) !important;
      color: #0f1a10 !important;
      padding: 0.65rem 1.6rem !important;
      font-weight: 700 !important;
      transition: background 0.3s !important;
    }
    .nav-cta:hover { background: var(--gold-light) !important; color: #0f1a10 !important; }
    .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: white; transition: all 0.3s; }

    /* ─── HERO ─────────────────────────────────────── */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 680px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        175deg,
        rgba(10, 20, 11, 0.45) 0%,
        rgba(10, 20, 11, 0.30) 45%,
        rgba(10, 20, 11, 0.70) 100%
      );
    }
    .hero-content {
      position: relative;
      text-align: center;
      color: white;
      padding: 0 2rem;
      max-width: 960px;
    }
    .hero-eyebrow {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.8rem;
      display: block;
      opacity: 0;
      animation: fadeUp 1s 0.4s forwards;
    }
    .hero-title {
      font-size: clamp(3.2rem, 7.5vw, 6.5rem);
      font-weight: 300;
      line-height: 1.06;
      letter-spacing: 0.01em;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 1s 0.7s forwards;
    }
    .hero-title em { font-style: italic; color: var(--gold); }
    .hero-sub {
      font-size: 0.85rem;
      font-weight: 300;
      letter-spacing: 0.16em;
      color: rgba(255,255,255,0.82);
      margin-bottom: 3.2rem;
      opacity: 0;
      animation: fadeUp 1s 1s forwards;
    }
    .hero-btns {
      display: flex;
      gap: 1.2rem;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 1s 1.2s forwards;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--dark);
      padding: 1.05rem 2.6rem;
      text-decoration: none;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 700;
      transition: all 0.3s;
      border: 2px solid var(--gold);
      display: inline-block;
    }
    .btn-primary:hover { background: transparent; color: white; }
    .btn-outline {
      background: transparent;
      color: white;
      padding: 1.05rem 2.6rem;
      text-decoration: none;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 600;
      border: 2px solid rgba(255,255,255,0.6);
      transition: all 0.3s;
      display: inline-block;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
    .hero-scroll {
      position: absolute;
      bottom: 2.8rem;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,0.5);
      font-size: 0.58rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.6rem;
      animation: scrollBounce 2.5s infinite;
    }
    .hero-scroll::after {
      content: '';
      width: 1px;
      height: 55px;
      background: linear-gradient(to bottom, rgba(201,160,85,0.7), transparent);
    }

    /* ─── STATS BAR ─────────────────────────────────── */
    .stats-bar {
      background: var(--forest);
      display: flex;
      justify-content: center;
    }
    .stat-item {
      flex: 1;
      max-width: 240px;
      text-align: center;
      padding: 2.5rem 1.5rem;
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .stat-item:last-child { border-right: none; }
    .stat-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      display: block;
    }
    .stat-label {
      font-size: 0.58rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-top: 0.5rem;
      display: block;
    }

    /* ─── SHARED ─────────────────────────────────────── */
    section { padding: 8rem 0; }
    .container { max-width: 1300px; margin: 0 auto; padding: 0 4rem; }
    .section-eyebrow {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.62rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
      display: block;
    }
    .section-title {
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      font-weight: 300;
      line-height: 1.18;
      color: var(--forest);
    }
    .section-title em { font-style: italic; color: var(--stone); }
    .section-body {
      font-size: 0.92rem;
      line-height: 1.9;
      color: var(--text-muted);
      font-weight: 300;
      max-width: 540px;
    }
    .gold-rule { width: 55px; height: 2px; background: var(--gold); margin: 1.8rem 0; }
    .btn-link {
      display: inline-block;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.62rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--forest);
      text-decoration: none;
      border-bottom: 2px solid var(--gold);
      padding-bottom: 3px;
      transition: color 0.3s;
    }
    .btn-link:hover { color: var(--gold); }

    /* ─── INTRO ─────────────────────────────────────── */
    #intro { background: var(--cream); padding: 8rem 0; }
    .intro-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 7rem;
      align-items: center;
    }
    .intro-text .section-title { margin-bottom: 0; }
    .intro-text .section-body { margin-top: 0; }
    .intro-img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      display: block;
      box-shadow: 20px 20px 0 var(--light-stone);
    }

    /* ─── SPACES ─────────────────────────────────────── */
    #spaces {
      background: var(--dark);
      padding: 8rem 0;
    }
    #spaces .section-title { color: white; margin-bottom: 4rem; }
    .spaces-mosaic {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 320px 320px;
      gap: 8px;
    }
    .space-card {
      position: relative;
      overflow: hidden;
    }
    .space-card:first-child {
      grid-row: span 2;
    }
    .space-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
      display: block;
    }
    .space-card:hover img { transform: scale(1.08); }
    .space-label {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,20,11,0.88) 0%, rgba(10,20,11,0.1) 50%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.6rem;
    }
    .space-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem;
      color: white;
      font-weight: 400;
      line-height: 1.2;
    }
    .space-desc {
      font-size: 0.65rem;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.12em;
      margin-top: 0.3rem;
      text-transform: uppercase;
    }

    /* ─── OFFERINGS ─────────────────────────────────── */
    #offerings { background: var(--light-stone); padding: 8rem 0; }
    .offerings-header {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 5rem;
    }
    .offerings-header .section-title { margin-bottom: 1rem; }
    .offerings-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .offering-card {
      background: white;
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .offering-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 60px rgba(0,0,0,0.13);
    }
    .offering-img {
      width: 100%;
      aspect-ratio: 16/10;
      object-fit: cover;
      display: block;
    }
    .offering-body { padding: 2.5rem 2.2rem 3rem; }
    .offering-tag {
      font-size: 0.58rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 0.8rem;
      display: block;
    }
    .offering-title {
      font-size: 2rem;
      font-weight: 400;
      color: var(--forest);
      margin-bottom: 1.2rem;
      line-height: 1.15;
    }
    .offering-body p {
      font-size: 0.862rem;
      line-height: 1.85;
      color: #5A5A5A;
      font-weight: 300;
      margin-bottom: 1.8rem;
    }
    .offering-features {
      list-style: none;
      margin-bottom: 2rem;
    }
    .offering-features li {
      font-size: 0.78rem;
      color: #5A5A5A;
      padding: 0.5rem 0 0.5rem 1.3rem;
      border-bottom: 1px solid var(--light-stone);
      position: relative;
      font-weight: 300;
      line-height: 1.5;
    }
    .offering-features li:first-child { border-top: 1px solid var(--light-stone); }
    .offering-features li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-size: 0.65rem;
    }

    /* ─── EVENTS DEEP ─────────────────────────────── */
    #events-detail {
      background: var(--dark);
      color: white;
      padding: 9rem 0;
      position: relative;
      overflow: hidden;
    }
   
    .events-inner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 7rem;
      align-items: center;
    }
    #events-detail .section-title { color: white; margin-bottom: 1.5rem; }
    #events-detail .section-body { color: rgba(255,255,255,0.65); margin-bottom: 2.8rem; max-width: 480px; }
    .event-types {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      margin-bottom: 3rem;
    }
    .event-type {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(201,160,85,0.15);
      padding: 1.5rem 1.6rem;
      transition: all 0.3s;
    }
    .event-type:hover {
      background: rgba(201,160,85,0.08);
      border-color: rgba(201,160,85,0.5);
    }
    .event-icon { font-size: 1.5rem; margin-bottom: 0.6rem; display: block; }
    .event-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      color: white;
      display: block;
      margin-bottom: 0.2rem;
    }
    .event-cap {
      font-size: 0.62rem;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.12em;
    }
    .events-gallery {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }
    .events-gallery img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
      display: block;
      transition: opacity 0.3s;
    }
    .events-gallery img:first-child {
      grid-column: span 2;
      aspect-ratio: 16/9;
    }
    .events-gallery img:hover { opacity: 0.85; }
    #events-detail .btn-primary { margin-top: 0; }

    /* ─── EXPLORE ─────────────────────────────────── */
    #explore { background: var(--cream); padding: 8rem 0; }
    .explore-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 7rem;
      align-items: center;
    }
    .explore-img-wrap { position: relative; }
    .explore-img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    .explore-img-accent {
      position: absolute;
      bottom: -2rem;
      right: -2rem;
      width: 55%;
      aspect-ratio: 1;
      object-fit: cover;
      border: 6px solid var(--cream);
      display: block;
    }
    .explore-list { list-style: none; margin: 2rem 0 2.5rem; }
    .explore-list li {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 0.9rem 0;
      border-bottom: 1px solid rgba(139,115,85,0.18);
      font-size: 0.88rem;
      color: var(--text-muted);
      font-weight: 300;
      line-height: 1.6;
    }
    .explore-list li::before {
      content: '✦';
      color: var(--gold);
      font-size: 0.55rem;
      margin-top: 0.45rem;
      flex-shrink: 0;
    }

    /* ─── CONTACT ─────────────────────────────────── */
    #contact { background: var(--forest); color: white; padding: 9rem 0; }
    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 7rem;
    }
    .contact-left .section-title { color: white; margin-bottom: 1.5rem; }
    .contact-left .section-body { color: rgba(255,255,255,0.65); margin-bottom: 3rem; }
    .contact-info { display: flex; flex-direction: column; gap: 1px; }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1.2rem;
      padding: 1.5rem 1.8rem;
      background: rgba(255,255,255,0.04);
      border-left: 3px solid var(--gold);
      margin-bottom: 1px;
    }
    .c-label {
      font-size: 0.58rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 0.4rem;
    }
    .c-value {
      font-size: 0.92rem;
      color: white;
      font-weight: 300;
      line-height: 1.6;
    }
    .c-value a { color: white; text-decoration: none; transition: color 0.3s; }
    .c-value a:hover { color: var(--gold); }

    /* Form */
    .contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.55rem; }
    .form-group label {
      font-size: 0.58rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      color: white;
      padding: 0.95rem 1.1rem;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.875rem;
      font-weight: 300;
      outline: none;
      transition: border-color 0.3s, background 0.3s;
      width: 100%;
      -webkit-appearance: none;
      border-radius: 0;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
    .form-group select option { background: #1a3a1e; color: white; }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
      background: rgba(255,255,255,0.09);
    }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .btn-submit {
      background: var(--gold);
      color: var(--dark);
      border: none;
      padding: 1.15rem 2rem;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s;
      width: 100%;
      margin-top: 0.4rem;
    }
    .btn-submit:hover { background: var(--gold-light); }
    .form-note {
      font-size: 0.7rem;
      color: rgba(255,255,255,0.35);
      line-height: 1.7;
      text-align: center;
    }
    .form-note a { color: var(--gold); text-decoration: none; }

    /* ─── FOOTER ─────────────────────────────────── */
    footer {
      background: var(--dark);
      padding: 2.8rem 4rem;
      text-align: center;
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      color: white;
      font-weight: 300;
      letter-spacing: 0.06em;
      margin-bottom: 1.2rem;
    }
    .footer-logo span { color: var(--gold); font-style: italic; }
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      list-style: none;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy {
      font-size: 0.68rem;
      color: rgba(255,255,255,0.25);
      letter-spacing: 0.08em;
    }
    .footer-copy a { color: rgba(201,160,85,0.6); text-decoration: none; }

    /* ─── ANIMATIONS ──────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(35px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes scrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
      50% { transform: translateX(-50%) translateY(10px); opacity: 0.8; }
    }
    .reveal {
      opacity: 0;
      transform: translateY(45px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.15s; }
    .reveal-delay-2 { transition-delay: 0.28s; }
    .reveal-delay-3 { transition-delay: 0.42s; }

    /* ─── RESPONSIVE ─────────────────────────────── */
    @media (max-width: 1100px) {
      .container { padding: 0 2.5rem; }
      nav, nav.scrolled { padding-left: 2.5rem; padding-right: 2.5rem; }
      .intro-inner, .explore-inner, .contact-inner, .events-inner { grid-template-columns: 1fr; gap: 3.5rem; }
      .offerings-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
      .spaces-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .space-card:first-child { grid-column: span 2; aspect-ratio: 16/9; }
      .space-card { aspect-ratio: 4/3; }
      .explore-img-accent { display: none; }
      .intro-img { aspect-ratio: 16/10; }
    }
    @media (max-width: 768px) {
      .container { padding: 0 1.5rem; }
      nav { padding: 1.2rem 1.5rem; }
      nav.scrolled { padding: 0.8rem 1.5rem; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      section { padding: 5rem 0; }
      .stats-bar { flex-wrap: wrap; }
      .stat-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
      .stat-item:nth-child(2) { border-right: none; }
      .spaces-mosaic { grid-template-columns: 1fr; }
      .space-card:first-child { grid-column: span 1; }
      .form-row { grid-template-columns: 1fr; }
      .events-gallery { display: none; }
      .event-types { grid-template-columns: 1fr; }
      .footer-links { gap: 1.5rem; }
      footer { padding: 2rem 1.5rem; }
    }

    /* Mobile nav overlay */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10,20,11,0.98);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      color: white;
      text-decoration: none;
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      font-weight: 300;
      letter-spacing: 0.05em;
      transition: color 0.3s;
    }
    .mobile-nav a:hover { color: var(--gold); }
    .mobile-nav .close-btn {
      position: absolute;
      top: 1.5rem;
      right: 1.8rem;
      color: white;
      font-size: 2rem;
      cursor: pointer;
      background: none;
      border: none;
      line-height: 1;
    }