 :root {
      --maroon: #7b1a1a;
      --gold: #c9922a;
      --gold-light: #f0c060;
      --cream: #fdf6e3;
      --dark: #1a0a00;
      --text: #3d1f00;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    .navbar {
      background: linear-gradient(135deg, #5a0d0d 0%, #8b1a1a 50%, #5a0d0d 100%);
      border-bottom: 3px solid var(--gold);
      padding: 10px 0;
    }
    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      color: var(--gold-light) !important;
      letter-spacing: 1px;
    }
    .navbar-brand span { color: #fff; }
    .nav-link {
      color: #f5e0b0 !important;
      font-weight: 500;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      transition: color 0.3s;
    }
    .nav-link:hover { color: var(--gold-light) !important; }
    .navbar-toggler { border-color: var(--gold); }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23f0c060' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(160deg, #2d0a0a 0%, #5a1a00 40%, #7b3100 70%, #2d0a0a 100%);
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://www.transparenttextures.com/patterns/batik.png') repeat;
      opacity: 0.06;
    }
    .hero-glow {
      position: absolute;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,146,42,0.18) 0%, transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
    }
    .hero-content { position: relative; z-index: 2; text-align: center; padding: 40px 20px; }
    .hero-badge {
      display: inline-block;
      background: linear-gradient(135deg, var(--gold), #e8b84b);
      color: #3d1f00;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 6px 20px;
      border-radius: 50px;
      margin-bottom: 20px;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 8vw, 5.5rem);
      color: var(--gold-light);
      line-height: 1.1;
      text-shadow: 0 4px 20px rgba(0,0,0,0.5);
      margin-bottom: 12px;
    }
    .hero-tagline {
      font-family: 'Dancing Script', cursive;
      font-size: clamp(1.2rem, 3vw, 1.8rem);
      color: #f5deb3;
      margin-bottom: 30px;
    }
    .hero-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin: 20px auto 30px;
    }
    .hero-divider span { width: 80px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold)); }
    .hero-divider span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
    .hero-divider i { color: var(--gold); font-size: 1.2rem; }

    .btn-hero {
      background: linear-gradient(135deg, var(--gold), #e8b84b);
      color: #3d1f00;
      font-weight: 700;
      padding: 14px 36px;
      border-radius: 50px;
      border: none;
      font-size: 1rem;
      letter-spacing: 1px;
      box-shadow: 0 8px 30px rgba(201,146,42,0.4);
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
      margin: 8px;
    }
    .btn-hero:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 40px rgba(201,146,42,0.55);
      color: #1a0a00;
    }
    .btn-hero-outline {
      background: transparent;
      border: 2px solid var(--gold-light);
      color: var(--gold-light);
      font-weight: 600;
      padding: 13px 36px;
      border-radius: 50px;
      font-size: 1rem;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
      margin: 8px;
    }
    .btn-hero-outline:hover {
      background: var(--gold-light);
      color: #1a0a00;
      transform: translateY(-3px);
    }

    /* Floating decorative elements */
    .float-diya {
      position: absolute;
      font-size: 2rem;
      opacity: 0.3;
      animation: floatAnim 4s ease-in-out infinite;
    }
    .float-diya:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
    .float-diya:nth-child(2) { top: 20%; right: 8%; animation-delay: 1s; }
    .float-diya:nth-child(3) { bottom: 20%; left: 5%; animation-delay: 2s; }
    .float-diya:nth-child(4) { bottom: 15%; right: 5%; animation-delay: 3s; }
    @keyframes floatAnim {
      0%,100% { transform: translateY(0) rotate(-5deg); }
      50% { transform: translateY(-18px) rotate(5deg); }
    }

    /* ── PARTY ORDER BANNER ── */
    .party-banner {
      background: linear-gradient(135deg, #7b1a1a 0%, #c9922a 50%, #7b1a1a 100%);
      padding: 22px 0;
      text-align: center;
      border-top: 2px solid #f0c060;
      border-bottom: 2px solid #f0c060;
      position: relative;
      overflow: hidden;
    }
    .party-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.04) 60px, rgba(255,255,255,0.04) 61px);
    }
    .party-banner h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.3rem, 4vw, 2rem);
      color: #fff;
      margin: 0;
      position: relative;
    }
    .party-banner h2 span { color: var(--gold-light); }
    .party-banner p {
      color: #f5deb3;
      margin: 6px 0 0;
      font-size: 0.95rem;
      position: relative;
    }
    .pulse-badge {
      display: inline-block;
      background: #fff;
      color: var(--maroon);
      font-weight: 700;
      font-size: 0.75rem;
      padding: 4px 14px;
      border-radius: 50px;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 8px;
      animation: pulseBadge 2s infinite;
    }
    @keyframes pulseBadge {
      0%,100% { box-shadow: 0 0 0 0 rgba(240,192,96,0.6); }
      50% { box-shadow: 0 0 0 10px rgba(240,192,96,0); }
    }

    /* ── SECTION HEADER ── */
    .section-header { text-align: center; margin-bottom: 50px; }
    .section-header .label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 8px;
    }
    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      color: var(--maroon);
      margin-bottom: 14px;
    }
    .section-header p { color: #6b4c2a; max-width: 540px; margin: 0 auto; }
    .divider-ornament {
      display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 16px;
    }
    .divider-ornament hr { width: 60px; border-color: var(--gold); opacity: 1; }
    .divider-ornament i { color: var(--gold); }

    /* ── MENU SECTION ── */
    .menu-section { background: #fdf6e3; padding: 80px 0; }
    .menu-category-card {
      background: #fff;
      border-radius: 16px;
      border: 2px solid #f0e0b0;
      box-shadow: 0 6px 30px rgba(123,26,26,0.08);
      margin-bottom: 28px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .menu-category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(123,26,26,0.14);
    }
    .menu-cat-header {
      background: linear-gradient(135deg, var(--maroon), #a32020);
      color: var(--gold-light);
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      padding: 14px 24px;
      letter-spacing: 2px;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .menu-cat-header i { color: var(--gold-light); }
    .menu-items-list { padding: 16px 24px 20px; }
    .menu-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 0;
      border-bottom: 1px dashed #f0e0b0;
      font-size: 0.95rem;
      color: #3d1f00;
    }
    .menu-item:last-child { border-bottom: none; }
    .menu-item::before {
      content: '✦';
      color: var(--gold);
      font-size: 0.7rem;
      flex-shrink: 0;
    }

    /* ── PARTY ORDER SECTION ── */
    .party-section {
      background: linear-gradient(160deg, #2d0a0a 0%, #5a1a00 50%, #2d0a0a 100%);
      padding: 90px 0;
      position: relative;
      overflow: hidden;
    }
    .party-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://www.transparenttextures.com/patterns/batik.png') repeat;
      opacity: 0.05;
    }
    .party-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(240,192,96,0.3);
      border-radius: 20px;
      padding: 36px 30px;
      text-align: center;
      transition: all 0.3s;
      backdrop-filter: blur(4px);
      height: 100%;
    }
    .party-card:hover {
      background: rgba(201,146,42,0.12);
      border-color: var(--gold);
      transform: translateY(-6px);
    }
    .party-card .icon-wrap {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), #e8b84b);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      font-size: 1.8rem;
      color: #3d1f00;
    }
    .party-card h4 {
      font-family: 'Playfair Display', serif;
      color: var(--gold-light);
      margin-bottom: 12px;
      font-size: 1.25rem;
    }
    .party-card p { color: #d4b896; font-size: 0.9rem; line-height: 1.7; }

    /* ── WHY US ── */
    .why-section { background: #fff; padding: 80px 0; }
    .why-card {
      text-align: center;
      padding: 30px 20px;
      border-radius: 16px;
      transition: all 0.3s;
    }
    .why-card:hover { background: #fff8ec; transform: translateY(-4px); }
    .why-icon {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: linear-gradient(135deg, #fdf6e3, #f5deb3);
      border: 2px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      font-size: 1.5rem;
      color: var(--maroon);
    }
    .why-card h5 {
      font-family: 'Playfair Display', serif;
      color: var(--maroon);
      margin-bottom: 8px;
    }
    .why-card p { font-size: 0.88rem; color: #6b4c2a; }

    /* ── CONTACT ── */
    .contact-section { background: var(--cream); padding: 80px 0; }
    .contact-card {
      background: #fff;
      border-radius: 20px;
      border: 2px solid #f0e0b0;
      box-shadow: 0 8px 40px rgba(123,26,26,0.1);
      padding: 40px 36px;
    }
    .contact-card h3 {
      font-family: 'Playfair Display', serif;
      color: var(--maroon);
      font-size: 1.8rem;
      margin-bottom: 8px;
    }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 22px;
    }
    .contact-item .ci-icon {
      width: 46px; height: 46px;
      background: linear-gradient(135deg, var(--maroon), #a32020);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold-light);
      font-size: 1rem;
      flex-shrink: 0;
    }
    .contact-item .ci-text h6 {
      font-weight: 600;
      color: var(--maroon);
      margin-bottom: 2px;
      font-size: 0.8rem;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .contact-item .ci-text a,
    .contact-item .ci-text p {
      color: var(--text);
      text-decoration: none;
      font-size: 0.98rem;
      margin: 0;
      transition: color 0.2s;
    }
    .contact-item .ci-text a:hover { color: var(--maroon); }

    /* Form */
    .form-control, .form-select {
      border: 2px solid #f0e0b0;
      border-radius: 10px;
      padding: 12px 16px;
      font-size: 0.92rem;
      color: var(--text);
      background: #fffdf7;
      transition: border-color 0.3s;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,146,42,0.15);
    }
    .form-label { font-weight: 500; font-size: 0.88rem; color: var(--maroon); margin-bottom: 6px; }
    .btn-submit {
      background: linear-gradient(135deg, var(--maroon), #a32020);
      color: var(--gold-light);
      border: none;
      padding: 14px 40px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 1px;
      transition: all 0.3s;
      width: 100%;
    }
    .btn-submit:hover {
      background: linear-gradient(135deg, var(--gold), #e8b84b);
      color: #1a0a00;
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(201,146,42,0.35);
    }

    /* ── MAP ── */
    .map-section { padding: 0; }
    .map-section iframe { display: block; width: 100%; height: 420px; border: none; }

    /* ── FOOTER ── */
    footer {
      background: linear-gradient(135deg, #1a0500 0%, #2d0a0a 100%);
      border-top: 3px solid var(--gold);
      color: #c8a870;
      text-align: center;
      padding: 40px 20px 24px;
    }
    footer .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: var(--gold-light);
      margin-bottom: 6px;
    }
    footer .footer-tagline {
      font-family: 'Dancing Script', cursive;
      font-size: 1rem;
      color: #a08050;
      margin-bottom: 20px;
    }
    footer .footer-links a {
      color: #c8a870;
      text-decoration: none;
      margin: 0 12px;
      font-size: 0.88rem;
      transition: color 0.2s;
    }
    footer .footer-links a:hover { color: var(--gold-light); }
    footer .footer-copy {
      font-size: 0.8rem;
      color: #7a5c2a;
      margin-top: 16px;
      border-top: 1px solid rgba(201,146,42,0.2);
      padding-top: 16px;
    }
    .social-icons a {
      color: #c8a870;
      margin: 0 8px;
      font-size: 1.2rem;
      transition: color 0.3s, transform 0.3s;
      display: inline-block;
    }
    .social-icons a:hover { color: var(--gold-light); transform: translateY(-3px); }

    /* ── SCROLL TO TOP ── */
    #scrollTop {
      position: fixed;
      bottom: 28px; right: 28px;
      width: 48px; height: 48px;
      background: linear-gradient(135deg, var(--maroon), #a32020);
      color: var(--gold-light);
      border: none;
      border-radius: 50%;
      font-size: 1.1rem;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(123,26,26,0.4);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 999;
      transition: all 0.3s;
    }
    #scrollTop:hover { background: linear-gradient(135deg, var(--gold), #e8b84b); color: #1a0a00; transform: translateY(-3px); }
    #scrollTop.show { display: flex; }

    /* Animations */
    .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* ── GALLERY ── */
    .gallery-section { background: #fff8ec; padding: 80px 0; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto;
      gap: 14px;
    }
    .gallery-item {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 6px 24px rgba(123,26,26,0.12);
    }
    .gallery-item.big { grid-column: span 2; grid-row: span 2; }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(93,10,10,0.85) 0%, transparent 55%);
      opacity: 0;
      transition: opacity 0.4s;
      display: flex;
      align-items: flex-end;
      padding: 18px;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay span {
      font-family: 'Playfair Display', serif;
      color: var(--gold-light);
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: 0.5px;
    }
    .gallery-item .g-badge {
      position: absolute;
      top: 12px; left: 12px;
      background: linear-gradient(135deg, var(--maroon), #a32020);
      color: var(--gold-light);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 50px;
      opacity: 0;
      transform: translateY(-8px);
      transition: all 0.3s;
    }
    .gallery-item:hover .g-badge { opacity: 1; transform: translateY(0); }

    /* fixed heights for gallery rows */
    .gallery-grid .gallery-item:not(.big) { height: 200px; }
    .gallery-grid .gallery-item.big { height: 414px; }

    @media (max-width: 768px) {
      .hero { min-height: 90vh; }
      .contact-card { padding: 28px 20px; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-item.big { grid-column: span 2; height: 260px; }
      .gallery-grid .gallery-item:not(.big) { height: 160px; }
    }
    @media (max-width: 480px) {
      .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    }