:root{
  --blue:#CFEFFF;
  --blue2:#7EC8E3;

  --yellow:#FFF1B8;
  --yellow2:#FFE38A;

  --green:#D7F7E3;
  --green2:#BDEED0;

  --peach:#FFD1C7;
  --peach2:#FFB8A8;

  --text:#1f2937;
  --muted:#5b6472;

  --card:#ffffff;
  --line:rgba(0,0,0,0.08);

  --shadow: 0 12px 40px rgba(0,0,0,0.08);
  --radius: 18px;

  /* Drop your images in /assets (or change these paths). */
  --hero-image: url("assets/logo.jpeg");
  --poster-image: url("assets/Marketing%20Poster.png");
  --stalls-image: url("assets/Stalls.jpeg");
  --venue-image: url("assets/Venue.jpeg");
  --kids-image: url("assets/Kids.jpeg");
}

*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: linear-gradient(
    180deg,
    var(--blue) 0%,
    rgba(207,239,255,0.95) 18%,
    var(--blue2) 55%,
    var(--green) 68%,
    var(--yellow) 82%,
    var(--peach) 100%
  );
}

a{ color:inherit; text-decoration:none; }

.container{
  width:92%;
  max-width:1100px;
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(215, 247, 227, 0.85);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex;
  gap:12px;
  align-items:center;
}

.brand-mark{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, var(--yellow), var(--peach));
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

.brand-title{ font-weight:800; letter-spacing:-0.3px; }
.brand-subtitle{ color:var(--muted); font-size:13px; margin-top:2px; }

.nav{ display:flex; gap:18px; flex-wrap:wrap; }
.nav a{ color:var(--text); font-weight:600; font-size:14px; }
.nav a:hover{ color:var(--text); font-weight:700; }

.hero{ padding:44px 0 10px; }

.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:22px;
  align-items:stretch;
}

.pill{
  display:inline-block;
  font-weight:800;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,0.75);
  border:1px solid var(--line);
}

.hero h1{
  font-size:46px;
  line-height:1.06;
  margin:14px 0 10px;
  letter-spacing:-1px;
}

.lead{
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width:58ch;
}

.hero-actions{
  display:flex;
  gap:12px;
  margin-top:16px;
  flex-wrap:wrap;
}

.btn{
  border:none;
  cursor:pointer;
  font-weight:800;
  border-radius:999px;
  padding:12px 16px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  transition: transform 0.12s ease, filter 0.12s ease, background 0.12s ease;
}

.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.btn-primary{
  background: linear-gradient(135deg, var(--yellow2), var(--peach));
  box-shadow: 0 14px 26px rgba(0,0,0,0.12);
}

.btn-secondary{
  background: rgba(255,255,255,0.8);
  border:1px solid var(--line);
}

.btn-ghost{
  background: rgba(255,255,255,0.65);
  border:1px dashed rgba(0,0,0,0.18);
}

.btn-block{ width:100%; }

.mini-info{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}

.mini-card{
  background: rgba(255,255,255,0.75);
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px;
}

.mini-title{ font-size:12px; color:var(--muted); font-weight:800; }
.mini-value{ font-size:13px; margin-top:4px; font-weight:700; }

.hero-card{
  background: rgba(255,255,255,0.78);
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}

.hero-art{
  min-height:750px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,230,128,0.75), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255,183,165,0.75), transparent 45%),
    linear-gradient(135deg, rgba(126,200,227,0.70), rgba(207,239,255,0.90));
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:18px;
}

.hero-art-inner{
  margin-top:auto;
  background: rgba(255,255,255,0.75);
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  width:100%;
}

.hero-art-title{ font-weight:900; font-size:18px; }
.hero-art-sub{ color:var(--muted); font-weight:700; font-size:13px; margin-top:4px; }

.hero-art-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:10px;
}

.badge{
  font-size:12px;
  font-weight:800;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,0.8);
  border:1px solid var(--line);
}

.hero-card-foot{
  display:grid;
  grid-template-columns: 1fr 1fr;
  border-top:1px solid var(--line);
}

.image-slot{
  width:100%;
  border-radius:16px;
  border: 3px solid var(--green2);
  overflow: hidden;
  box-shadow: 0 0 0 6px rgba(215,247,227,0.6);
}

.image-slot span{
  display:inline-block;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,0.75);
  border:1px solid var(--line);
  color: var(--muted);
  font-weight:900;
  font-size:12px;
}

.image-slot-hero{
  flex: 1;
  min-height: 180px;
  aspect-ratio: auto;
  max-height: 700px;
  background-image: var(--hero-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;
  width: 100%;
}

.image-slot-poster{
  aspect-ratio: 3 / 4;
  max-height: 560px;
  background-image: var(--poster-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: transparent;
  width: 100%;
}

.image-slot-wide{
  height:200px;
  margin-bottom:12px;
  background-image: var(--stalls-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.image-slot-map{
  height:220px;
  margin-top:12px;
  background-image: var(--venue-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.image-slot-kids{
  height:260px;
  background-image: var(--kids-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#venue .grid-2 > .card{
  display:flex;
  flex-direction:column;
}

#venue .image-slot-map,
#venue .image-slot-kids{
  margin-top:auto;
}

.avatar-slot{
  width:72px;
  height:72px;
  border-radius:999px;
  border: 3px solid var(--green2);
  background: linear-gradient(135deg, rgba(207,239,255,0.70), rgba(255,241,184,0.55), rgba(255,209,199,0.55));
  display:grid;
  place-items:center;
  margin-bottom:10px;
  box-shadow: 0 0 0 4px rgba(215,247,227,0.6);
}

.avatar-slot span{
  font-size:12px;
  font-weight:900;
  color: var(--muted);
}

.foot-item{ padding:12px 14px; }
.foot-label{ display:block; color:var(--muted); font-size:12px; font-weight:800; }
.foot-value{ display:block; font-weight:800; margin-top:4px; font-size:13px; }
.foot-address{
  display:block;
  margin-top:6px;
  font-size:12px;
  line-height:1.4;
  color:var(--muted);
}

.section{ padding:46px 0; }

.section-head h2{
  margin:0;
  font-size:30px;
  letter-spacing:-0.6px;
}

.section-head p{ margin:8px 0 0; }

.hosted-by-banner{
  margin-bottom:10px;
  display:inline-flex;
  flex-direction:column;
  gap:6px;
  align-items:flex-start;
}

.hosted-by-label{
  font-size:12px;
  font-weight:900;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color: var(--muted);
}

.hosted-by-logo{
  width:120px;
  height:auto;
  border-radius:12px;
  border: 3px solid var(--green2);
  background:#fff;
  box-shadow: 0 0 0 5px rgba(215,247,227,0.6);
}

.hero-hosted-banner{
  margin-top:14px;
  margin-bottom:10px;
}

.hero-hosted-banner .hosted-by-label{
  font-size:14px;
}

.hero-hosted-banner .hosted-by-logo{
  width: clamp(260px, 78%, 460px);
  height: auto;
  max-height: 320px;
  object-fit: contain;
  border-radius:16px;
  border-width:4px;
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  margin-top:16px;
}

.card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.card h3{ margin:0 0 12px; letter-spacing:-0.4px; }

.card.highlight{
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.82));
  border:1px solid rgba(0,0,0,0.10);
}

.card.wide{ margin-top:16px; }

.clean-list{ margin:0; padding-left:18px; }
.clean-list li{ margin:10px 0; font-weight:650; }

.note{
  margin-top:12px;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,0.10);
  background: rgba(255,230,128,0.25);
  font-weight:700;
}

.info-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-top:12px;
}

.info-box{
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.9);
}

.contact-item{
  margin-bottom: 12px;
}

.contact-item p{
  margin: 4px 0;
}

.price-list{ display:grid; gap:10px; }

.price-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,0.10);
  background: rgba(207,239,255,0.35);
  font-weight:800;
}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}

.muted{ color:var(--muted); }
.tiny{ font-size:12px; line-height:1.5; }

.footer{
  padding:18px 0 30px;
  border-top:1px solid var(--line);
  background: rgba(255,255,255,0.65);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

@media (max-width: 900px){
  .container{ width:94%; }
  .header-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .brand-title{ font-size:16px; }
  .brand-subtitle{ font-size:12px; }
  .nav{
    display:flex;
    width:100%;
    gap:10px;
    overflow-x:auto;
    padding-bottom:2px;
    scrollbar-width:thin;
  }
  .nav a{
    white-space:nowrap;
    padding:8px 12px;
    border-radius:999px;
    border:1px solid var(--line);
    background: rgba(255,255,255,0.72);
    font-size:13px;
  }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero{ padding-top:28px; }
  .hero h1{ font-size:34px; line-height:1.1; }
  .hero-actions{ flex-direction:column; }
  .hero-actions .btn{ width:100%; }
  .mini-info{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .hero-art{ min-height: 500px; padding: 12px; }
  .image-slot-hero{ max-height: 400px; }
  .price-list{ font-size: 14px; }
  .btn{ padding: 10px 14px; font-size: 14px; }
}

@media (max-width: 600px){
  .container{ width:96%; }
  .site-header{ padding: 10px 0; }
  .header-inner{ padding: 10px 0; gap: 8px; }
  .brand-title{ font-size: 14px; }
  .brand-subtitle{ font-size: 11px; }
  .nav{ gap: 6px; }
  .nav a{ font-size: 12px; padding: 6px 10px; }
  .hero{ padding-top: 20px; padding-bottom: 20px; }
  .hero h1{ font-size: 26px; line-height: 1.2; margin: 10px 0; }
  .lead{ font-size: 14px; }
  .pill{ font-size: 12px; padding: 6px 10px; }
  .hero-actions{ gap: 8px; }
  .btn{ padding: 10px 12px; font-size: 13px; border-radius: 8px; }
  .mini-info{ gap: 8px; margin-top: 12px; }
  .mini-card{ padding: 8px; }
  .mini-title{ font-size: 11px; }
  .mini-value{ font-size: 12px; }
  .section{ padding: 24px 0; }
  .section-head h2{ font-size: 28px; }
  .section-head p{ font-size: 13px; }
  .card{ padding: 14px; border-radius: 12px; }
  .card h3{ font-size: 18px; margin: 0 0 10px 0; }
  .card p{ font-size: 13px; margin: 6px 0; }
  .price-item{ font-size: 13px; }
  .clean-list li{ font-size: 13px; margin: 6px 0; }
  .image-slot-hero{ max-height: 280px; }
  .hero-art{ min-height: 350px; padding: 10px; }
  .hero-art-title{ font-size: 20px; }
  .hero-art-sub{ font-size: 12px; }
  .badge{ font-size: 11px; padding: 4px 8px; }
  .footer{ padding: 16px 0; }
  .footer-inner{ font-size: 12px; }
  .contact-item{ margin-bottom: 8px; }
  .contact-item p{ margin: 2px 0; font-size: 13px; }
  .note{ font-size: 12px; }
  body{ font-size: 14px; }
}

@media (max-width: 400px){
  .container{ width: 98%; }
  .hero h1{ font-size: 22px; }
  .lead{ font-size: 13px; }
  .section-head h2{ font-size: 24px; }
  .card h3{ font-size: 16px; }
  .card p{ font-size: 12px; }
  .btn{ padding: 8px 10px; font-size: 12px; }
  .mini-info{ grid-template-columns: 1fr; }
}