:root{
  /* Core */
  --black:#0b0b0b;
  --white:#ffffff;

  /* Greys */
  --gray-50:#f7f7f7;
  --gray-100:#f1f1f1;
  --gray-200:#e2e2e2;
  --gray-400:#b5b5b5;
  --gray-700:#3a3a3a;

  /* Accent (Orange) */
  --orange:#e06b1a;        /* primary accent */
  --orange-dark:#c85f17;   /* hover / emphasis */
  --orange-soft:#fff1e6;   /* subtle backgrounds */

  --max:1100px;
  --radius:14px;
  --shadow: 0 10px 30px rgba(0,0,0,.10);
  --shadow-soft: 0 8px 20px rgba(0,0,0,.08);
}

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      color:var(--black);
      background:var(--white);
      line-height:1.55;
    }

    a{color:inherit}
    img{max-width:100%; display:block}
    .container{width:min(var(--max), calc(100% - 2rem)); margin-inline:auto}

    /* Top bar */
    .topbar{
      background:var(--black);
      color:var(--gray-200);
      font-size:.9rem;
    }
    .topbar .inner{
      display:flex;
      gap:1rem;
      align-items:center;
      justify-content:space-between;
      padding:.65rem 0;
    }
    .topbar a{color:var(--gray-200); text-decoration:none}
    .topbar a:hover{color:var(--white)}
    .topbar .meta{display:flex; gap:1rem; flex-wrap:wrap}
    .topbar .meta span{opacity:.9}

    /* Header / Nav */
    header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(11,11,11,.92);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
      padding:.9rem 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:.75rem;
      text-decoration:none;
      color:var(--white);
      white-space:nowrap;
      font-weight:700;
      letter-spacing:.2px;
    }
    .brand-mark{
      width:38px;
      height:38px;
      border-radius:10px;
      background:linear-gradient(145deg, #111, #000);
      border:1px solid rgba(255,255,255,.12);
      display:grid;
      place-items:center;
      box-shadow:0 6px 20px rgba(0,0,0,.35);
      font-size:.95rem;
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:.75rem;
    }

    /* --- NAV: smooth hover + dropdowns --- */
.primary-nav .nav-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:1.1rem;
}

.primary-nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  color:var(--gray-200);
  text-decoration:none;
  font-weight:650;
  font-size:.95rem;
  padding:.45rem .2rem;
  transition: color .18s ease, transform .18s ease;
  will-change: transform;
}

/* Animated underline */
.primary-nav a::after{
  content:"";
  position:absolute;
  left:.2rem;
  right:.2rem;
  bottom:.15rem;
  height:2px;
  border-radius:999px;
  background: var(--orange, #e06b1a);
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .22s ease;
  opacity:.95;
}

/* Hover / focus animation */
.primary-nav a:hover,
.primary-nav a:focus-visible{
  color:var(--white);
  transform: translateY(-1px);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after{
  transform: scaleX(1);
}

/* Dropdown container */
.has-dropdown{
  position:relative;
}

/* Chevron subtle animation */
.has-dropdown .chev{
  font-size:.8rem;
  opacity:.85;
  transform: translateY(1px);
  transition: transform .18s ease, opacity .18s ease;
}

.has-dropdown:hover .chev,
.has-dropdown:focus-within .chev{
  transform: translateY(1px) rotate(180deg);
  opacity:1;
}

/* Dropdown panel */
.dropdown{
  position:absolute;
  top: 100%;
  left: 0;
  margin-top: .35rem;
  min-width: 220px;
  padding:.5rem;
  margin:0;
  list-style:none;

  background: rgba(11,11,11,.98);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);

  opacity:0;
  transform: translateY(6px);
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 100;
}

/* Open on hover (desktop) + keyboard focus */
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}

/* Dropdown links */
.dropdown a{
  width:100%;
  padding:.65rem .6rem;
  border-radius: 12px;
  color: rgba(255,255,255,.9);
  font-weight:650;
  font-size:.92rem;
}

.dropdown a::after{ display:none; } /* remove underline inside dropdown */
.dropdown a:hover,
.dropdown a:focus-visible{
  background: rgba(255,255,255,.07);
  transform: none;
  color: var(--white);
}

/* Keep your existing mobile breakpoint behaviour */
@media (max-width: 980px){
  .primary-nav .nav-list{display:none;} /* you already hide desktop nav here */
}
.topbar-right{
  display:flex;
  align-items:center;
  gap:1rem;
}

.topbar-social{
  display:flex;
  gap:.45rem;
  margin-left:.5rem;
}

.topbar-social a{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  transition: background .15s ease, transform .15s ease;
}

.topbar-social a:hover{
  background:rgba(224,107,26,.25);
  transform: translateY(-1px);
}

.topbar-social svg{
  width:14px;
  height:14px;
  fill: rgba(255,255,255,.9);
}
@media (max-width: 560px){
  .topbar-social{
    display:none;
  }
}


    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.5rem;
      padding:.7rem 1rem;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.16);
      background:transparent;
      color:var(--white);
      text-decoration:none;
      font-weight:700;
      font-size:.95rem;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.26)}
    .btn.primary{
      background:var(--orange);
      color:var(--white);
      border-color:transparent;
    }

    .btn.primary:hover{
      background:var(--orange-dark);
    }

 .btn-orange{
  background: var(--orange);
  color: var(--white);
  border-color: transparent;
}

.btn-orange:hover{
  background: var(--orange-dark);
  color: var(--white);
}


    .burger{
      display:none;
      width:44px; height:44px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.06);
      color:var(--white);
      cursor:pointer;
    }
    .burger:active{transform: translateY(1px)}

    /* Mobile nav */
    @media (max-width: 980px){
      nav ul{display:none}
      .burger{display:inline-grid; place-items:center}
    }
    .mobile-menu{
      display:none;
      border-top:1px solid rgba(255,255,255,.08);
      background:rgba(11,11,11,.92);
    }
    .mobile-menu.open{display:block}
    .mobile-menu a{
      display:block;
      padding:1rem 0;
      color:var(--gray-200);
      text-decoration:none;
      border-bottom:1px solid rgba(255,255,255,.08);
      font-weight:650;
    }
    .mobile-menu a:hover{color:var(--white)}
    .mobile-menu .container{padding-bottom:.25rem}

    /* Hero */
    .hero{
      position:relative;
      min-height: 70vh;
      display:grid;
      align-items:center;
      color:var(--white);
      overflow:hidden;
      background: #000;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(180deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.65) 55%, rgba(0,0,0,.85) 100%),
        url("");
      background-size:cover;
      background-position:center;
      transform: scale(1.02);
    }
    .hero .content{
      position:relative;
      padding:4.5rem 0 3.5rem;
    }
    .hero h1{
      margin:0 0 .75rem;
      font-size: clamp(2rem, 3.6vw, 3.25rem);
      letter-spacing:-.5px;
      line-height:1.12;
      max-width: 18ch;
    }
    .hero p{
      margin:0 0 1.5rem;
      max-width: 58ch;
      color:rgba(255,255,255,.88);
      font-size:1.05rem;
    }
    .hero .actions{
      display:flex;
      gap:.9rem;
      flex-wrap:wrap;
      align-items:center;
    }
    .hero-card{
      margin-top:3.5rem;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:1rem;
    }



.hero-badge{
  position:relative;
  display:block;
  text-decoration:none;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 1.1rem 1.1rem 1rem;

  box-shadow: 0 14px 30px rgba(0,0,0,.30);
  overflow:hidden;

  transform: translateY(0);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

/* Orange accent “edge” */
.hero-badge::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background: var(--orange);
  opacity:.9;
}

/* Subtle sheen on hover */
.hero-badge::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(224,107,26,.16), transparent 55%);
  opacity:0;
  transition: opacity .18s ease;
}

.hero-badge:hover{
  transform: translateY(-2px);
  border-color: rgba(224,107,26,.35);
  background: rgba(255,255,255,.075);
}

.hero-badge:hover::after{
  opacity:1;
}

.hb-top{
  display:flex;
  align-items:center;
  gap:.65rem;
  margin-bottom:.35rem;
}

.hb-icon{
  width:36px;
  height:36px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background: rgba(224,107,26,.14);
  border: 1px solid rgba(224,107,26,.25);
  font-size:1.05rem;
}

.hero-badge strong{
  font-size:1.05rem;
  color: var(--white);
  letter-spacing:.1px;
}

.hb-arrow{
  margin-left:auto;
  color: rgba(255,255,255,.75);
  transition: transform .18s ease, color .18s ease;
}

.hero-badge:hover .hb-arrow{
  transform: translateX(2px);
  color: var(--white);
}

.hb-sub{
  display:block;
  color: rgba(255,255,255,.82);
  font-size:.93rem;
  line-height:1.35;
}

/* Mobile */
@media (max-width: 820px){
  .hero-card{grid-template-columns:1fr;}
}

/* --- COLLAGE SECTION --- */
.gallery-collage{
  padding: 3.5rem 0;
  background: linear-gradient(180deg, var(--white), var(--gray-50));
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.gallery-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:1rem;
  margin-bottom: 1.25rem;
}

.gallery-head h2{
  margin:0;
  font-size: clamp(1.6rem, 2.3vw, 2.1rem);
  letter-spacing: -.3px;
}
.gallery-head p{ margin:.35rem 0 0; max-width: 70ch; }

.collage{
  display:grid;
  gap: .85rem;
  grid-template-columns: repeat(12, 1fr);
}

/* Shared tile styling */
.tile{
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  min-height: 210px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-soft);
  text-decoration:none;
  color: var(--white);
  background: #111;
  transform: translateY(0);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.tile::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 500px at 15% 10%, rgba(224,107,26,.35), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.72) 80%);
  z-index: 1;
}

.tile:hover{
  transform: translateY(-2px);
  border-color: rgba(224,107,26,.28);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

/* Collage layout (desktop) */
.tile-a{ grid-column: 1 / span 7; grid-row: 1 / span 2; min-height: 440px; }
.tile-b{ grid-column: 8 / span 5; grid-row: 1 / span 1; }
.tile-c{ grid-column: 8 / span 5; grid-row: 2 / span 1; }
.tile-d{ grid-column: 1 / span 4; grid-row: 3 / span 1; min-height: 220px; }
.tile-e{ grid-column: 5 / span 8; grid-row: 3 / span 1; min-height: 220px; }

/* Background images (replace with your real photos later) */
.tile-a{
  background:
    url("")
    center/cover no-repeat;
}
.tile-b{
  background:
    url("images/ekcooutsideimg.jpeg")
    center/cover no-repeat;
}
.tile-c{
  background:
    url("images/mainhallimg.jpeg")
    center/cover no-repeat;
}
.tile-d{
  background:
    url("images/weddingeventimg.jpeg")
    center/cover no-repeat;
}
.tile-e{
  background:
    url("")
    center/cover no-repeat;
}

/* Responsive */
@media (max-width: 980px){
  .gallery-head{ align-items:flex-start; flex-direction:column; }
  .collage{ grid-template-columns: 1fr; }
  .tile{ min-height: 220px; }
  .tile-a,.tile-b,.tile-c,.tile-d,.tile-e{ grid-column: auto; grid-row: auto; min-height: 240px; }
}

/* --- TESTIMONIALS --- */
.testimonials{
  padding: 3.5rem 0;
  background: linear-gradient(180deg, var(--gray-50), var(--white));
  border-top: 1px solid var(--gray-200);
}

.testimonials-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:1rem;  
  margin-bottom: 1.5rem;
}
.testimonials-head h2{
  margin:0;
  font-size: clamp(1.6rem, 2.3vw, 2.1rem);
  letter-spacing: -.3px;
}
.testimonials-head p{
  margin:.35rem 0 0;
  max-width: 65ch;
}

.testimonials-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial{
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  display:flex;
  flex-direction:column;
  gap:1rem;
  position:relative;
}

.testimonial::before{
  content:"“";
  position:absolute;
  top:-.75rem;
  left:.85rem;
  font-size:3.5rem;
  font-weight:900;
  color: rgba(224,107,26,.25);
  line-height:1;
}
.stars{
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: .1rem;
  margin-bottom: .25rem;
}

.quote{
  margin:0;
  color: var(--gray-700);
  font-size: .98rem;
  font-weight: 550;
}

.author{
  display:flex;
  align-items:flex-start;
  gap:.5rem;
  margin-top:auto;
}


.author strong{
  display:block;
  font-size:.95rem;
  font-weight:800;
}
.author span{
  display:block;
  font-size:.85rem;
  color: var(--gray-700);
}

.testimonial .author{
  padding-top:.75rem;
  border-top:1px solid var(--gray-200);
}


/* Responsive */
@media (max-width: 980px){
  .testimonials-grid{
    grid-template-columns: 1fr;
  }
}

   

    /* Sections */
    section{padding:3.5rem 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:1rem;
      margin-bottom:1.25rem;
    }
    .section-head h2{
      margin:0;
      font-size: clamp(1.4rem, 2.2vw, 2rem);
      letter-spacing:-.3px;
    }
    .section-head p{
      margin:0;
      color:var(--gray-700);
      max-width: 60ch;
    }
    .muted{color:var(--gray-700)}
    .panel{
      background:var(--gray-50);
      border:1px solid var(--gray-200);
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
    }

    /* Quick links cards */
    .grid{
      display:grid;
      gap:1rem;
    }

    /* Events */
    .events-wrap{
      background:linear-gradient(
        180deg,
        var(--gray-100),
        var(--orange-soft)
        );
      border-top:1px solid var(--gray-200);
      border-bottom:1px solid var(--gray-200);
    }
    .events{
      display:grid;
      grid-template-columns: 1.4fr .9fr;
      gap:1rem;
      align-items:start;
    }
    .event-list{
      background:var(--white);
      border:1px solid var(--gray-200);
      border-radius: var(--radius);
      overflow:hidden;
      box-shadow: var(--shadow-soft);
    }
    .events{
      display:grid;
      grid-template-columns: 120px 1fr;
      gap:1rem;
      padding:1rem;
      border-bottom:1px solid var(--gray-200);
    }

    .datebox .day{font-size:1.35rem; font-weight:900; color:var(--orange); line-height:1}
    .datebox .mon{font-weight:800; text-transform:uppercase; letter-spacing:.8px; font-size:.85rem}
    .datebox .time{color:var(--gray-700); font-size:.85rem; margin-top:.15rem}
    
    .sidebar{
      padding:1.25rem;
      background:var(--white);
      border:1px solid var(--gray-200);
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
    }
    .sidebar h3{margin:0 0 .5rem}
    .sidebar ul{margin:.75rem 0 0; padding-left:1.1rem; color:var(--gray-700)}
    .sidebar li{margin:.35rem 0}
    

    /* Events tools */
.events-tools{
  display:flex;
  align-items:center;
  gap:1rem;
  flex-wrap:wrap;
}

.filters{
  display:flex;
  gap:.5rem;
  flex-wrap:wrap;
  padding:.35rem;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
}

.filter{
  border:0;
  cursor:pointer;
  padding:.55rem .9rem;
  border-radius:999px;
  background: transparent;
  color: var(--gray-700);
  font-weight:750;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}

.filter:hover{ transform: translateY(-1px); }
.filter.active{
  background: var(--black);
  color: var(--white);
}

/* Event layout tweaks */
.event-body{display:flex; flex-direction:column; gap:.35rem;}
.event-top{display:flex; align-items:flex-start; justify-content:space-between; gap:.75rem;}
.chips{display:flex; gap:.4rem; flex-wrap:wrap; justify-content:flex-end;}

.chip{
  font-size:.78rem;
  font-weight:800;
  padding:.25rem .55rem;
  border-radius:999px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
}

.chip-accent{
  background: rgba(224,107,26,.12);
  border-color: rgba(224,107,26,.25);
  color: var(--orange-dark);
}

/* Quick view button */
.event-actions{
  display:flex;
  align-items:center;
  gap:1rem;
  margin-top:.35rem;
  flex-wrap:wrap;
}

.event-open{
  border:0;
  background: rgba(224,107,26,.12);
  color: var(--orange-dark);
  font-weight:850;
  padding:.5rem .85rem;
  border-radius:999px;
  cursor:pointer;
  border:1px solid rgba(224,107,26,.25);
}

.event-open:hover{
  background: rgba(224,107,26,.18);
}

/* Modal */
.modal{display:none;}
.modal.open{display:block;}

.modal-backdrop{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.55);
  z-index:2000;
}

.modal-panel{
  position:fixed;
  z-index:2001;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  width:min(560px, calc(100% - 2rem));
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 25px 70px rgba(0,0,0,.35);
  padding: 1.25rem 1.25rem 1.1rem;
}

.modal-close{
  position:absolute;
  top:.75rem;
  right:.75rem;
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid var(--gray-200);
  background: var(--gray-50);
  cursor:pointer;
}

.modal-meta{
  display:flex;
  gap:.5rem;
  flex-wrap:wrap;
  margin:.75rem 0 .75rem;
}

.meta-pill{
  padding:.35rem .6rem;
  border-radius:999px;
  background: var(--gray-100);
  border:1px solid var(--gray-200);
  font-weight:800;
  font-size:.82rem;
  color: var(--gray-700);
}

.modal-actions{display:flex; gap:.75rem; flex-wrap:wrap; margin-top:1rem;}

/* --- EVENTS WOW --- */
.events-wow{
  background: linear-gradient(180deg, var(--gray-100), var(--orange-soft));
}

.events-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:1rem;
  margin-bottom:1rem;
}
.events-head h2{ margin:0; font-size: clamp(1.6rem, 2.4vw, 2.2rem); letter-spacing:-.3px; }
.events-head p{ margin:.35rem 0 0; max-width: 65ch; }

.events-toolbar{
  position: sticky;
  top: 78px; /* adjust if your header height differs */
  z-index: 20;
  display:flex;
  gap:.5rem;
  flex-wrap:wrap;
  padding:.55rem;
  margin: 0 0 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
}

.filter{
  border:0;
  cursor:pointer;
  padding:.6rem .95rem;
  border-radius:999px;
  background: transparent;
  color: var(--gray-700);
  font-weight:850;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.filter:hover{ transform: translateY(-1px); }
.filter.active{
  background: var(--black);
  color: var(--white);
}

.events-grid{
  display:grid;
  grid-template-columns: 1.4fr .9fr;
  gap:1.1rem;
  align-items:start;
}

.featured-event{
  grid-column: 1 / 2;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(224,107,26,.25);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  background: var(--white);
  position:relative;
}
.featured-event::before{
  content:"";
  position:absolute;
  inset:0;
  border-top:4px solid var(--orange);
  pointer-events:none;
}

.featured-left{ padding:1.25rem; }
.featured-right{
  background:
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.55)),
    url("images/linedancing.jpg");
  background-size:cover;
  background-position:center;
}

.featured-badge{ display:flex; gap:.5rem; flex-wrap:wrap; margin-bottom:.65rem; }
.pill-accent{
  display:inline-flex; align-items:center;
  padding:.35rem .65rem; border-radius:999px;
  background: rgba(224,107,26,.14);
  border:1px solid rgba(224,107,26,.28);
  font-weight:900; color: var(--orange-dark); font-size:.82rem;
}
.pill-neutral{
  display:inline-flex; align-items:center;
  padding:.35rem .65rem; border-radius:999px;
  background: var(--gray-100);
  border:1px solid var(--gray-200);
  font-weight:900; color: var(--gray-700); font-size:.82rem;
}

.featured-meta{ display:flex; gap:.5rem; flex-wrap:wrap; margin:.9rem 0 1rem; }
.meta-chip{
  padding:.35rem .6rem;
  border-radius:999px;
  background: var(--gray-100);
  border:1px solid var(--gray-200);
  font-weight:850;
  font-size:.85rem;
  color: var(--gray-700);
}

.featured-actions{ display:flex; gap:.7rem; flex-wrap:wrap; }

.wow-list{
  grid-column: 1 / 2;
  display:grid;
  gap:.85rem;
}

.event-row{
  display:grid;
  grid-template-columns: 90px 1fr;
  gap:1rem;
  padding:1rem;
  border-radius: 16px;
  background: var(--white);
  border:1px solid var(--gray-200);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
  transition: transform .15s ease, border-color .15s ease;
}
.event-row:hover{
  transform: translateY(-2px);
  border-color: rgba(224,107,26,.28);
}

.row-date{
  border-radius: 16px;
  background: var(--orange-soft);
  border:1px solid rgba(224,107,26,.28);
  display:grid;
  place-items:center;
  padding:.65rem;
}
.row-day{ font-weight:950; font-size:1.15rem; color: var(--orange-dark); }
.row-mon{ font-weight:950; letter-spacing:.8px; font-size:.78rem; color: var(--black); }

.row-top{ display:flex; justify-content:space-between; gap:1rem; align-items:flex-start; }
.row-top h4{ margin:0; font-size:1.08rem; }
.tags{ display:flex; gap:.4rem; flex-wrap:wrap; justify-content:flex-end; }
.tag{
  font-size:.78rem;
  font-weight:900;
  padding:.25rem .55rem;
  border-radius:999px;
  background: var(--gray-100);
  border:1px solid var(--gray-200);
  color: var(--gray-700);
}
.tag-accent{
  background: rgba(224,107,26,.12);
  border-color: rgba(224,107,26,.25);
  color: var(--orange-dark);
}

.row-actions{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  flex-wrap:wrap;
  margin-top:.5rem;
}
.row-meta{ color: var(--gray-700); font-weight:750; font-size:.9rem; }
.row-buttons{ display:flex; gap:.5rem; }

.event-open,
.event-calendar{
  border:1px solid rgba(224,107,26,.25);
  background: rgba(224,107,26,.12);
  color: var(--orange-dark);
  font-weight:900;
  border-radius:999px;
  padding:.5rem .8rem;
  cursor:pointer;
}
.event-calendar{ background: var(--gray-100); border-color: var(--gray-200); color: var(--gray-700); }
.event-open:hover{ background: rgba(224,107,26,.18); }
.event-calendar:hover{ background: var(--gray-50); }

.event-calendar[disabled]{
  opacity:.5;
  cursor:not-allowed;
}

.visit-card{
  grid-column: 2 / 3;
  position: sticky;
  top: 160px;
  padding: 1.25rem;
  background: var(--white);
  border:1px solid var(--gray-200);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}
.visit-card h3{ margin:0 0 .5rem; }
.visit-card ul{ margin:.85rem 0 1rem; padding-left:1.1rem; color: var(--gray-700); }

@media (max-width: 980px){
  .events-grid{ grid-template-columns: 1fr; }
  .visit-card{ position: static; }
  .featured-event{ grid-template-columns: 1fr; }
  .featured-right{ min-height: 220px; }
}



    /* Split section (about / image) */
    .split{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:1rem;
      align-items:stretch;
    }
    .split .copy{padding:1.4rem}
    .split .copy h2{margin:.25rem 0 .5rem}
    .split .copy p{margin:.5rem 0; color:var(--gray-700)}
    .split .copy .bullets{
      margin:1rem 0 0;
      padding-left:1.1rem;
      color:var(--gray-700);
    }
    .split .media{
      border-radius: var(--radius);
      overflow:hidden;
      border:1px solid var(--gray-200);
      min-height: 320px;
      background:
        linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55)),
        url("");
      background-size:cover;
      background-position:center;
      box-shadow: var(--shadow-soft);
    }
    @media (max-width: 900px){
      .split{grid-template-columns:1fr}
      .split .media{min-height:240px}
    }


    /* Footer */
    /* --- FOOTER COMPLETE --- */
.site-footer{
  background:#050505;
  color:rgba(255,255,255,.88);
  border-top:1px solid rgba(255,255,255,.10);
}

.site-footer .container{
  padding:2.75rem 0 1.25rem;
}

.site-footer::before{
  content:"";
  display:block;
  height:3px;
  background:linear-gradient(
    90deg,
    rgba(224,107,26,0),
    rgba(224,107,26,.9),
    rgba(224,107,26,0)
  );
}

/* Layout */
.footer-top{
  display:grid;
  grid-template-columns:1.15fr 1.85fr;
  gap:2rem;
  align-items:start;
}

.footer-brand{
  display:flex;
  gap:1rem;
  align-items:flex-start;
}

.footer-mark{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:950;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}

.footer-brand p{
  margin:.45rem 0 0;
  max-width:50ch;
}

/* Social */
.footer-social{
  margin-top:.75rem;
  display:flex;
  gap:.6rem;
}

.footer-social a{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  transition: background .15s ease, transform .15s ease;
}

.footer-social a:hover{
  background:rgba(224,107,26,.25);
  transform: translateY(-1px);
}

.footer-social svg{
  width:18px;
  height:18px;
  fill: rgba(255,255,255,.9);
}


/* Columns */
.footer-cols{
  display:grid;
  grid-template-columns: 1fr 1.25fr; /* hours | map */
  gap: 1.75rem;
}


.footer-col h4{
  margin:0 0 .75rem;
  font-size:.95rem;
  color:var(--white);
}

.footer-col ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:.45rem;
}

.footer-col a{
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-weight:650;
}
.footer-col a:hover{
  color:var(--orange);
}

/* Opening hours */
.hours{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.55rem;
}

.hours li{
  display:grid;
  grid-template-columns: 1fr auto; /* left label + right time */
  align-items:baseline;
  gap:1rem;
  padding:.35rem 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
}

.hours li:last-child{
  border-bottom:none;
}

.hours li span:first-child{
  color: rgba(255,255,255,.86);
  font-weight: 750;
}

.hours li span:last-child{
  color: rgba(255,255,255,.76);
  font-weight: 650;
  white-space:nowrap; /* prevents wrapping into weird shapes */
}

/* Map */
.footer-map{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 10px 25px rgba(0,0,0,.35);
}
.footer-map iframe{
  width:100%;
  height:160px;
  border:0;
}

.address{
  margin-top:.5rem;
  font-size:.85rem;
}

/* Bottom */
.footer-bottom{
  margin-top:2rem;
  padding-top:1.25rem;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  font-size:.9rem;
  color:rgba(255,255,255,.65);
}

/* Back to top */
.back-to-top{
  color:var(--orange);
  font-weight:800;
  text-decoration:none;
}
.back-to-top:hover{
  text-decoration:underline;
}

/* Footer readability overrides */
.site-footer .muted{
  color: rgba(255,255,255,.70) !important;
}

.site-footer p,
.site-footer li,
.site-footer span{
  color: rgba(255,255,255,.78);
}

.site-footer .footer-bottom{
  color: rgba(255,255,255,.68);
}

.site-footer .address{
  color: rgba(255,255,255,.72);
}

/* Responsive */
@media (max-width:980px){
  .footer-top{grid-template-columns:1fr;}
  .footer-cols{grid-template-columns:1fr;}
}


    /* Utilities */
    .pill{
      display:inline-flex;
      align-items:center;
      gap:.5rem;
      padding:.35rem .7rem;
      border-radius:999px;
      background:rgba(224,107,26,.15);
      border:1px solid rgba(224,107,26,.35);
      color:#ffd7b8;
      font-weight:700;
      font-size:.85rem;
      width:max-content;
    }
    .sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}


/* =========================
   RESPONSIVE ADDITIONS
   Put this at the VERY END of home.css
   ========================= */

/* 0) Small accessibility helper */
.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background: var(--black);
  color: var(--white);
  padding:.6rem .9rem;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.2);
  z-index:9999;
}
.skip-link:focus{
  left:10px;
}

/* 1) Global fluid spacing tweaks for smaller screens */
@media (max-width: 980px){
  section{ padding: 2.5rem 0; }
  .container{ width: min(var(--max), calc(100% - 1.25rem)); } /* tighter gutters */
}

/* 2) Topbar: stack + reduce clutter */
@media (max-width: 820px){
  .topbar .inner{
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
    padding: .65rem 0;
  }
  .topbar .meta{
    width: 100%;
    justify-content: space-between;
  }
}

/* 3) Header/Nav: keep brand readable, buttons wrap */
@media (max-width: 980px){
  .nav{
    gap: .75rem;
  }

  .brand{
    max-width: 65%;
    white-space: normal;   /* allow wrap */
    line-height: 1.15;
  }

  .nav-cta{
    gap: .5rem;
  }

  .btn{
    padding: .65rem .9rem;
    font-size: .92rem;
  }
}

/* 4) Hero: reduce height and tighten spacing for phones */
@media (max-width: 560px){
  .hero{
    min-height: 62vh;
  }
  .hero .content{
    padding: 3.25rem 0 2.5rem;
  }
  .hero h1{
    max-width: 22ch; /* allow slightly longer lines */
  }
  .hero p{
    font-size: 1rem;
  }
}

/* 5) Hero badges grid: already switches at 820px, but also adjust padding on phones */
@media (max-width: 560px){
  .hero-badge{
    padding: 1rem;
  }
  .hero-badge strong{
    font-size: 1rem;
  }
}

/* 6) Events section: ensure everything becomes 1 column cleanly and buttons don't overflow */
@media (max-width: 980px){
  .events-head{
    flex-direction: column;
    align-items: flex-start;
  }

  /* Sticky toolbar can be annoying on small screens; make it non-sticky */
  .events-toolbar{
    position: static;
    top: auto;
  }

  .events-grid{
    grid-template-columns: 1fr;
  }

  .featured-event{
    grid-template-columns: 1fr;
  }

  .featured-right{
    min-height: 220px;
  }

  .row-actions{
    flex-direction: column;
    align-items: flex-start;
  }

  .row-buttons{
    width: 100%;
  }

  .event-open,
  .event-calendar{
    width: auto;
  }

  .visit-card{
    position: static;
    top: auto;
  }
}

/* 7) Events rows: tighten the date column so it doesn't dominate on very small screens */
@media (max-width: 560px){
  .event-row{
    grid-template-columns: 72px 1fr;
    gap: .8rem;
    padding: .9rem;
  }
  .row-top{
    flex-direction: column;
    align-items: flex-start;
  }
  .tags{
    justify-content: flex-start;
  }
}

/* 8) About split: already stacks at 900px; just reduce padding on mobile */
@media (max-width: 560px){
  .split .copy{
    padding: 1.05rem;
  }
}

/* 9) Footer: reduce map height + ensure hours don't overflow */
@media (max-width: 560px){
  .hours li{
    grid-template-columns: 1fr; /* stack day + time */
    gap: .25rem;
  }
  .hours li span:last-child{
    white-space: normal;
  }
  .footer-map iframe{
    height: 200px;
  }
}

/* 10) Modal: make sure it fits safely on phones */
@media (max-width: 560px){
  .modal-panel{
    width: calc(100% - 1.25rem);
    padding: 1rem;
  }
  .modal-actions{
    flex-direction: column;
    align-items: stretch;
  }
  .modal-actions .btn{
    width: 100%;
  }
}

/* Fix class conflict: featured-event also has event-item */
.featured-event.event-item{
  padding: 0;                 /* remove the old padding */
  border-bottom: 0;           /* old style not needed */
  grid-template-columns: 1.05fr .95fr; /* restore featured layout */
  gap: 0;
}

/* Make sure the right panel shows on small screens */
@media (max-width: 980px){
  .featured-event.event-item{ grid-template-columns: 1fr; }
  .featured-right{ min-height: 220px; }
}

/* =========================
   MOBILE: FIX WHAT'S ON
   ========================= */

@media (max-width: 980px){

  /* Force single column */
  #events .events-grid{
    grid-template-columns: 1fr !important;
  }

  /* Hide "Plan your visit" */
  #events .visit-card{
    display: none !important;
  }

  /* Keep layout stable WITHOUT forcing display (so JS filters can hide/show) */
  #events .featured-event,
  #events .wow-list{
    width: 100%;
    max-width: 100%;
  }
}


