:root {
    --royal-pink: #f6c1d9;
    --light-green: #d5f2d1;
    --golden: #d4af37;
    --deep-maroon: #5c1b33;
    --text-dark: #333333;
    --text-muted: #666666;
    --bg-cream: #fff8f0;
    --card-bg: #ffffff;
    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.06);
  }
  
  /* Global reset */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #ffe5f2, #f5ffe8);
    color: var(--text-dark);
  }
  
  /* Ethnic borders / motifs */
  
  .ethnic-border-top {
    position: relative;
  }
  
  .ethnic-border-top::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 6px;
    background-image: repeating-linear-gradient(
      to right,
      #d4af37 0,
      #d4af37 10px,
      transparent 10px,
      transparent 20px,
      #f6c1d9 20px,
      #f6c1d9 30px,
      transparent 30px,
      transparent 40px
    );
    opacity: 0.9;
  }
  
  .ethnic-border-card {
    border: 2px solid rgba(212, 175, 55, 0.7);
    background-image: linear-gradient(135deg, rgba(246, 193, 217, 0.25), rgba(213, 242, 209, 0.25));
  }
  
  .ethnic-section {
    position: relative;
  }
  
  .ethnic-section::before {
    content: "🌸";
    position: absolute;
    top: 0.4rem;
    left: 0.7rem;
    font-size: 1rem;
    opacity: 0.65;
  }
  
  .ethnic-section::after {
    content: "🌸";
    position: absolute;
    top: 0.4rem;
    right: 0.7rem;
    font-size: 1rem;
    opacity: 0.65;
  }
  
  /* Header / Logo */
  
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(90deg, var(--royal-pink), var(--light-green));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  
  .logo-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--golden);
    background: radial-gradient(circle, #fff8f0, #fddbdc);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.35);
  }
  
  .logo-letters {
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    color: var(--deep-maroon);
    letter-spacing: 1px;
  }
  
  .logo-text h1 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    color: var(--deep-maroon);
  }
  
  .logo-text p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
  }
  
  /* Navigation */
  
  .main-nav {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
  }
  
  .main-nav a {
    text-decoration: none;
    color: var(--deep-maroon);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
  }
  
  .main-nav a:hover {
    border-color: rgba(92, 27, 51, 0.3);
    background: rgba(255, 255, 255, 0.5);
  }
  
  /* Hero */
  
  .hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem 3rem;
    position: relative;
    overflow: hidden;
  }
  
  .hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 0 0, rgba(244, 203, 228, 0.7), transparent 55%),
      radial-gradient(circle at 100% 0, rgba(213, 242, 209, 0.7), transparent 55%);
    opacity: 0.8;
    pointer-events: none;
  }
  
  .hero-content {
    max-width: 700px;
    text-align: center;
    background: rgba(255, 248, 240, 0.9);
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 1;
  }
  
  .hero-top-icon {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
  }
  
  .hero-title {
    margin-top: 0;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: var(--deep-maroon);
  }
  
  .hero-subtitle {
    margin: 0.5rem 0 1rem;
    color: var(--text-muted);
    line-height: 1.6;
  }
  
  .hero-date {
    font-weight: 500;
    color: var(--golden);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  
  /* Countdown */
  
  .hero-countdown {
    margin-bottom: 1.5rem;
  }
  
  .countdown-label {
    font-size: 0.9rem;
    color: var(--deep-maroon);
    margin-bottom: 0.4rem;
  }
  
  .countdown-values {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
  }
  
  .count-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.8rem;
    padding: 0.4rem 0.7rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    min-width: 60px;
  }
  
  .count-box span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-maroon);
  }
  
  .count-box small {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
  }
  
  .countdown-message {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: var(--deep-maroon);
  }
  
  .hero-cta {
    margin-top: 0.6rem;
  }
  
  .btn-primary,
  .btn-outline {
    display: inline-block;
    border-radius: 999px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, var(--golden), #f5d57a);
    color: #3a2200;
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.4);
  }
  
  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(212, 175, 55, 0.55);
  }
  
  .btn-outline {
    background: transparent;
    border: 1px solid var(--golden);
    color: var(--deep-maroon);
  }
  
  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.6);
  }
  
  /* Sections */
  
  .section-header {
    text-align: center;
    padding: 1.4rem 1.5rem 0.6rem;
  }
  
  .section-header h2 {
    font-family: "Playfair Display", serif;
    color: var(--deep-maroon);
    margin-bottom: 0.3rem;
  }
  
  .section-header p {
    color: var(--text-muted);
    margin: 0 auto;
    max-width: 640px;
  }
  
  /* Events Section */
  
  .events-section {
    padding: 1.5rem 1.2rem 2.5rem;
    background: rgba(255, 248, 240, 0.9);
  }
  
  .events-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 960px;
    margin: 1rem auto 1.2rem;
  }
  
  .last-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
  }
  
  /* Event Cards */
  
  .events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .event-card {
    background: var(--card-bg);
    border-radius: 1.2rem;
    padding: 1rem 1rem 1.1rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
  }
  
  .event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .event-name {
    font-family: "Playfair Display", serif;
    font-size: 1.05rem;
    color: var(--deep-maroon);
    margin: 0;
  }
  
  .event-status-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    border: 1px solid;
  }
  
  /* Status colors */
  
  .status-planned {
    background: rgba(246, 193, 217, 0.18);
    border-color: #e89bc3;
    color: #a12463;
  }
  
  .status-in-process {
    background: rgba(213, 242, 209, 0.18);
    border-color: #7ecf70;
    color: #2b6e21;
  }
  
  .status-completed {
    background: rgba(214, 242, 209, 0.4);
    border-color: #1fa64d;
    color: #146636;
  }
  
  /* Ribbon for completed */
  
  .event-card.completed::before {
    content: "COMPLETED";
    position: absolute;
    top: 10px;
    left: -50px;
    transform: rotate(-30deg);
    background: linear-gradient(135deg, #39b46b, #75d58f);
    color: white;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 0.2rem 2.5rem;
  }
  
  /* Event details */
  
  .event-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
  }
  
  .event-meta span {
    display: inline-block;
    margin-right: 0.6rem;
  }
  
  .event-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0.2rem 0 0.7rem;
  }
  
  /* Slider */
  
  .event-slider {
    margin-top: 0.4rem;
    border-radius: 0.9rem;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .slider-images {
    position: relative;
    height: 180px;
  }
  
  .slider-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
  }
  
  .slider-images img.active {
    display: block;
  }
  
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slider-btn.prev {
    left: 8px;
  }
  
  .slider-btn.next {
    right: 8px;
  }
  
  .slider-btn:hover {
    background: rgba(0, 0, 0, 0.55);
  }
  
  .events-error {
    max-width: 960px;
    margin: 1rem auto 0;
    color: #a12424;
    font-size: 0.85rem;
  }
  
  /* Info Section */
  
  .info-section {
    padding: 1.5rem 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.9);
  }
  
  .info-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.1rem;
  }
  
  .info-card {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(244, 203, 228, 0.5);
  }
  
  .info-card h3 {
    margin-top: 0;
    font-family: "Playfair Display", serif;
    color: var(--deep-maroon);
    margin-bottom: 0.4rem;
  }
  
  .info-card p,
  .info-card li {
    font-size: 0.85rem;
    color: var(--text-dark);
  }
  
  .info-card ul {
    padding-left: 1.2rem;
    margin: 0.3rem 0 0;
  }
  
  .info-messages p {
    font-style: italic;
  }
  
  /* Gallery */
  
  .gallery-section {
    padding: 1.5rem 1.2rem 2.5rem;
  }
  
  .gallery-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 0.8rem;
  }
  
  .gallery-item {
    position: relative;
    border-radius: 0.9rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }
  
  .gallery-label {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
  }
  
  /* Footer */
  
  .site-footer {
    padding: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255, 248, 240, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    margin-top: 0.5rem;
  }
  
  /* Responsive */
  
  @media (max-width: 768px) {
    .site-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.4rem;
    }
  
    .main-nav {
      width: 100%;
      justify-content: flex-start;
      overflow-x: auto;
    }
  
    .events-controls {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .hero-content {
      padding: 1.5rem 1.2rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 1.5rem;
    }
  
    .slider-images {
      height: 160px;
    }
  }
  