:root {
    --gold:       #C8963E;
    --gold-light: #E8B85A;
    --deep-teal:  #33083d;
    --cream:      #FDF6ED;
    --rust:       #8B3A2A;
    --pearl:      #F0EAE0;
    --dark:       #1C1C1C;
    --muted:      #6B6B6B;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', sans-serif;
    --font-accent:  'Cormorant Garamond', serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img{
    max-width: 100%;
}
  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ── TOP BAR ─────────────────────────────────────────── */
  #top-bar {
    background: #333;
    padding: 8px 0;
    font-size: 0.78rem;
    color: #ccc;
  }
  #top-bar a.naca-btn {
    /* background: var(--gold); */
    color: #fff;
    /* border-radius: 3px; */
    padding: 3px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
  }
  #top-bar a.naca-btn:hover {/* background: var(--gold-light); */color: #ffff;}
  #top-bar .top-meta i { vertical-align: middle; margin-right: 4px; }

  /* ── NAVBAR ──────────────────────────────────────────── */
  .navbar {
    background: #fff;
    padding: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1050;
  }
  .navbar-brand {
    padding: 10px 0;
    min-height: 100px;
  }
  
  .logo-mark {
    width: 160px;
    height: 160px;
    position: absolute;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 11px solid #fff;
    background: #fff;
    border-radius: 50%;
  }
  .navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark) !important;
    padding: 1.5rem 1rem !important;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.2s;
  }
  .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 3px;
    background: var(--gold);
    transition: left 0.25s, right 0.25s;
  }
  .navbar-nav .nav-link:hover { color: var(--gold) !important; }
  .navbar-nav .nav-link:hover::after { left: 1rem; right: 1rem; }
  .nav-reg-btn {
    background: var(--gold) !important;
    color: #fff !important;
    border-radius: 4px !important;
    padding: 0.45rem 1.1rem !important;
    margin-left: 0.5rem;
    font-weight: 600 !important;
  }
  .nav-reg-btn:hover { background: var(--rust) !important; }
  .nav-reg-btn::after { display: none !important; }

  /* ── HERO ────────────────────────────────────────────── */
  #hero {
    background-color: var(--deep-teal);
    background-image:
      radial-gradient(ellipse 60% 60% at 15% 50%, rgba(200,150,62,0.18) 0%, transparent 70%),
      radial-gradient(ellipse 50% 70% at 85% 50%, rgba(139,58,42,0.18) 0%, transparent 70%),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='900'%3E%3Cdefs%3E%3Cstyle%3E.p%7Bfill:none;stroke:rgba(200,150,62,.18);stroke-width:1%7D%3C/style%3E%3C/defs%3E%3Ccircle class='p' cx='450' cy='450' r='400'/%3E%3Ccircle class='p' cx='450' cy='450' r='340'/%3E%3Ccircle class='p' cx='450' cy='450' r='280'/%3E%3Ccircle class='p' cx='450' cy='450' r='220'/%3E%3Cellipse class='p' cx='450' cy='450' rx='380' ry='160'/%3E%3Cellipse class='p' cx='450' cy='450' rx='160' ry='380'/%3E%3Cellipse class='p' cx='450' cy='450' rx='320' ry='130' transform='rotate(45 450 450)'/%3E%3Cellipse class='p' cx='450' cy='450' rx='320' ry='130' transform='rotate(-45 450 450)'/%3E%3C/svg%3E") center/cover;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
  }
  /* Paisley corners */
  #hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320' opacity='.07'%3E%3Cpath d='M160 10 C60 10 10 90 30 160 C50 230 130 290 160 310 C190 290 270 230 290 160 C310 90 260 10 160 10 Z' fill='%23C8963E'/%3E%3Ccircle cx='160' cy='120' r='40' fill='none' stroke='%23C8963E' stroke-width='3'/%3E%3C/svg%3E");
    background-position: left bottom, right top;
    background-repeat: no-repeat;
    pointer-events: none;
  }

  .hero-left h6.eyebrow {
    color: var(--gold-light);
    font-family: var(--font-accent);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
  }
  .hero-left h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0.4rem;
  }
  .hero-left h2 {
    font-family: var(--font-accent);
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
  }
  .hero-left p {
    color: rgba(255,255,255,0.8);
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 490px;
    margin-bottom: 2rem;
  }
  .btn-gold {
    background: var(--gold);
    color: #fff;
    border: 2px solid var(--gold);
    padding: 0.7rem 2rem;
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
  }
  .btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: #333; }
  .btn-outline-pearl {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 0.7rem 2rem;
    font-weight: 500;
    font-size: 0.92rem;
    border-radius: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
  }
  .btn-outline-pearl:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.1); }

  /* Swiper hero */
  .hero-swiper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    position: relative;
  }
  .hero-swiper .swiper-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }
  .swiper-pagination-bullet-active { background: var(--gold) !important; }

  /* ── SECTION COMMONS ─────────────────────────────────── */
  section { padding: 90px 0; }
  .section-eyebrow {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--deep-teal);
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .section-subtitle {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 580px;
  }
  .section-divider {
    width: 55px; height: 3px;
    background: var(--gold);
    margin: 1rem 0 1.5rem;
  }
  .section-divider.mx-auto { margin-left: auto; margin-right: auto; }

  /* ── ABOUT ───────────────────────────────────────────── */
  #about {
    background: var(--pearl);
  }
  .about-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  }
  .about-img-wrap img { width: 100%; height: 520px; object-fit: cover; display: block; }
  .about-img-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--gold);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
  }
  .about-img-badge span { display: block; font-size: 0.78rem; font-weight: 400; opacity: 0.85; }
  #about .section-title { color: var(--deep-teal); }
  #about p { color: #444; line-height: 1.85; font-size: 1.02rem; }

  /* ── TRIP PLAN ───────────────────────────────────────── */
  #trip-plan {
    background: var(--deep-teal);
    background-image:
      radial-gradient(ellipse 80% 60% at 50% 100%, rgba(200,150,62,0.12) 0%, transparent 70%),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' opacity='.05'%3E%3Ccircle cx='300' cy='300' r='280' fill='none' stroke='%23C8963E' stroke-width='2'/%3E%3Ccircle cx='300' cy='300' r='220' fill='none' stroke='%23C8963E' stroke-width='1'/%3E%3Ccircle cx='300' cy='300' r='160' fill='none' stroke='%23C8963E' stroke-width='1'/%3E%3Cpath d='M300 20 L340 150 L480 150 L370 230 L410 360 L300 280 L190 360 L230 230 L120 150 L260 150 Z' fill='%23C8963E'/%3E%3C/svg%3E") center/cover;
    position: relative;
    overflow: hidden;
  }
  #trip-plan .section-title, #trip-plan .section-eyebrow { color: var(--gold-light); }
  #trip-plan .section-subtitle { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }

  /* Timeline */
  .timeline {
    position: relative;
    margin-top: 60px;
  }
  .timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(200,150,62,0.2));
  }
  .tl-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
  }
  .tl-item:nth-child(odd) { flex-direction: row-reverse; }
  .tl-item:nth-child(odd) .tl-card {/* text-align: right; */padding-left: 60px;/* padding-left: 0; */}
  .tl-item:nth-child(even) .tl-card {padding-right: 60px;}
  .tl-dot {
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--deep-teal);
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 800;
    font-size: 1rem;
    z-index: 2;
    /* font-family: var(--font-display); */
  }
  .tl-card {
    width: calc(50% - 0px);
  }
  .tl-day-label {
    color: var(--gold);
    /* font-family: var(--font-accent); */
    font-size: 0.8rem;
    /* letter-spacing: 0.12em; */
    /* text-transform: uppercase; */
    margin-bottom: 4px;
    font-weight: bold;
  }
  .tl-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 6px;
  }
  .tl-card p {color: rgba(255,255,255,0.6);font-size: 0.9rem;line-height: 1.6;}
  .tl-icon-wrap {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(200,150,62,0.15);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(200,150,62,0.3);
    flex-shrink: 0;
  }
  @media(max-width: 768px) {
    .timeline::before { left: 24px; }
    .tl-item, .tl-item:nth-child(odd) { flex-direction: column; padding-left: 60px; }
    .tl-item:nth-child(odd) .tl-card { text-align: left; padding-right: 0; padding-left: 0; }
    .tl-item:nth-child(even) .tl-card { padding-left: 0; }
    .tl-dot { left: 24px; }
    .tl-card { width: 100%; }
  }

  /* ── WHY THIS EVENT ──────────────────────────────────── */
  #why-event {
    background: var(--cream);
  }
  .why-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.6rem;
    text-align: center;
    border: 1px solid rgba(200,150,62,0.15);
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  }
  .why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: var(--gold);
  }
  .why-icon-wrap {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
  }
  .why-card h5 {
    /* font-family: var(--font-display); */
    font-size: 1.08rem;
    color: var(--deep-teal);
    margin-bottom: 0.6rem;
  }
  .why-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

  /* ── PRE-REGISTER ────────────────────────────────────── */
  #pre-register {
    background: var(--deep-teal);
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Cdefs%3E%3CradialGradient id='rg' cx='50%25' cy='50%25' r='50%25'%3E%3Cstop offset='0' stop-color='%23C8963E' stop-opacity='.12'/%3E%3Cstop offset='1' stop-color='%23C8963E' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='800' height='600' fill='url(%23rg)'/%3E%3Cellipse cx='100' cy='100' rx='150' ry='80' fill='none' stroke='rgba(200,150,62,.15)' stroke-width='1'/%3E%3Cellipse cx='700' cy='500' rx='150' ry='80' fill='none' stroke='rgba(200,150,62,.15)' stroke-width='1'/%3E%3C/svg%3E") center/cover;
    position: relative;
  }
  #pre-register .section-title { color: #fff; }
  #pre-register .section-eyebrow { color: var(--gold-light); }
  #pre-register p { color: rgba(255,255,255,0.75); font-size: 1.02rem; line-height: 1.8; }
  .reg-form-wrap {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,150,62,0.25);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(6px);
  }
  .reg-form-wrap .form-control,
  .reg-form-wrap .form-select {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(200,150,62,0.3);
    /* color: #fff; */
    border-radius: 6px;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
  .reg-form-wrap .form-control::placeholder { color: rgba(255,255,255,0.4); }
  .reg-form-wrap .form-control:focus,
  .reg-form-wrap .form-select:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,150,62,0.2);
    color: #fff;
  }
  .reg-form-wrap .form-select option{color: #111;}
  .reg-form-wrap .form-select { color: rgba(255,255,255,0.5); }
  .reg-form-wrap label { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 4px; }
  .pre-reg-points { list-style: none; padding: 0; margin-top: 1.8rem; }
  .pre-reg-points li {
    display: flex; align-items: flex-start; gap: 10px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.8rem;
    font-size: 0.92rem;
  }
  .pre-reg-points li .icon-check { color: var(--gold-light); margin-top: 2px; flex-shrink: 0; }

  /* ── GALLERY ─────────────────────────────────────────── */
  #gallery {
    background: var(--pearl);
  }
  .masonry-grid {
    columns: 4 220px;
    column-gap: 12px;
  }
  .masonry-item {
    break-inside: avoid;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }
  .masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
  }
  .masonry-item:hover img { transform: scale(1.06); }
  .masonry-item .overlay {
    position: absolute; inset: 0;
    background: rgba(26,74,74,0.55);
    opacity: 0;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.3s;
    color: #fff;
  }
  .masonry-item:hover .overlay { opacity: 1; }

  /* ── FAQ ─────────────────────────────────────────────── */
  #faq {
    background: #fff;
  }
  .accordion-item {
    border: 1px solid rgba(200,150,62,0.2) !important;
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 10px;
  }
  .accordion-button {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--deep-teal) !important;
    background: var(--pearl) !important;
    font-size: 0.97rem;
    padding: 1.1rem 1.3rem;
  }
  .accordion-button:not(.collapsed) {
    background: var(--deep-teal) !important;
    color: #fff !important;
    box-shadow: none;
  }
  .accordion-button::after { display: none !important; }
  .acc-icon { margin-right: 12px; transition: transform 0.3s; }
  .accordion-button:not(.collapsed) .acc-icon { transform: rotate(45deg); color: var(--gold-light); }
  .accordion-body { background: #fff; color: #444; line-height: 1.75; font-size: 0.93rem; }

  /* ── FOOTER ──────────────────────────────────────────── */
  footer {
    background: #111;
    color: rgba(255,255,255,0.65);
    padding: 70px 0 0;
  }
  .footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold-light);
    font-weight: 700;
  }
  footer h5 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
  }
  footer h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 35px; height: 2px;
    background: var(--gold);
  }
  footer p { font-size: 0.88rem; line-height: 1.8; }
  footer ul { list-style: none; padding: 0; }
  footer ul li { margin-bottom: 0.55rem; }
  footer ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
    display: flex; align-items: center; gap: 6px;
  }
  footer ul li a:hover { color: var(--gold-light); }
  .footer-event-item {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 0.75rem;
    font-size: 0.88rem;
  }
  .footer-event-item .fi { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.2rem 0;
    margin-top: 50px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
  }
  .footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
  .footer-bottom a:hover { color: var(--gold-light); }

  /* ── GO TO TOP ───────────────────────────────────────── */
  #goTop {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, background 0.2s;
    z-index: 2000;
  }
  #goTop.visible { opacity: 1; pointer-events: all; }
  #goTop:hover { background: var(--deep-teal); }

  /* ── ANIMATIONS ──────────────────────────────────────── */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-left.visible { opacity: 1; transform: translateX(0); }
  .fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-right.visible { opacity: 1; transform: translateX(0); }

  /* Image placeholders */
  .img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 1rem;
  }

  /* Decorative gold line separator */
  .ornament {
    display: flex; align-items: center; gap: 12px;
    margin: 1rem 0;
  }
  .ornament::before, .ornament::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
  }
  .ornament span {
    color: var(--gold);
    font-size: 1.2rem;
  }

  /* Responsive */
  @media(max-width: 991px) {
    .hero-swiper .swiper-slide img { height: 320px; }
    #hero { padding: 60px 0; }
  }
  @media(max-width: 767px) {
    .masonry-grid { columns: 2 160px; }
    #hero { min-height: auto; }
    .navbar-brand{min-height:80px ;}
    .logo-mark{width: 120px; height: 120px;}
  }

  /* Logo SVG */
  .navbar-logo-svg text { font-family: var(--font-display); }