/* ===== Neon Black Theme ===== */
:root{
  --bg:#0a0a0a;
  --panel:#424242;
  --text:#e6e6e6;
  --muted:#bdbdbd;

  --primary:#00f5d4;   /* neon aqua */
  --secondary:#ff3ea5; /* neon pink */
  --accent:#a3ff12;    /* neon green */
  --warning:#ffd60a;   /* neon yellow */
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  background: var(--bg); 
  color: var(--text);
  line-height: 1.6;
}


/* ===== Layout ===== */
.container{
  width:min(1100px, 92%);
  margin:0 auto;
  padding:24px 0 56px;
}

/* ===== Header / Nav ===== */
.site-header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(8px);
  border-bottom:1px solid rgba(255,255,255,0.06);
}


.brand {
  font-family: 'Creepster', cursive;
  font-size: 2rem;
  color: var(--secondary);
  text-decoration:none;
}


.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.nav-links{
  display:flex; gap:18px; flex-wrap:wrap;
}
.nav-links a{
  color:var(--muted);
  text-decoration:none;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid transparent;
  transition:.2s ease;
}
.nav-links a:hover, .nav-links a.active{
  color:var(--text);
  border-color:rgba(163,255,18,.5);
  text-shadow: 0 0 10px rgba(167, 167, 167, 0.781);
}

.brand img {
  height: 70px;  
  width: auto;
  display: block;
}

/* ===== Hero ===== */
.hero{
  padding:64px 0 24px;
}
.hero h1{
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin:0 0 10px;
  line-height:1.1;
  letter-spacing:.5px;
  text-shadow: 0 0 14px rgba(0,245,212,.6), 0 0 28px rgba(255,62,165,.35);
}
.hero p{
  color:var(--muted);
  max-width:700px;
  margin:0 0 24px;
}

.price-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.price-header h2 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--accent);
  text-shadow: 0 0 8px rgba(163,255,18,.5)
}

.cta-row{ display:flex; gap:12px; flex-wrap:wrap; }
.button{
  display:inline-block;
  padding:12px 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.2px;
  border:1px solid rgba(255,255,255,0.18);
  transition:.2s ease;
}
.button.primary{
  background: linear-gradient(90deg, var(--accent));
  color:#0b0b0b;
  box-shadow: 0 0 18px rgba(163,255,18,.5);
}
.button.ghost{ color:var(--text); }


/* ===== Cards / Panels ===== */
.grid{
  display:grid;
  gap:16px;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  margin-top:26px;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border:1px solid rgba(238, 231, 231, 0.08);
  border-radius:16px;
  padding:18px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02) inset, 0 8px 24px rgba(0,0,0,.45);
}
.card h3{
  margin:0 0 6px;
  font-size:1.1rem;
  text-shadow: 0 0 10px rgba(0,245,212,.45);
}
.card p{ color:var(--muted); margin:0; }

/* ===== Sections ===== */
section h2{
  margin:32px 0 8px;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  text-shadow: 0 0 10px rgba(163,255,18,.45);
}

/* ===== Lists / Tables ===== */
.pricelist{
  width:100%;
  border-collapse: collapse;
  margin-top:10px;
  margin-bottom: 30px; 
}

.pricelist th, .pricelist td{
  text-align:left;
  padding:12px 10px;
  border-bottom:1px dashed rgba(255,255,255,0.12);
}
.pricelist th{ color:var(--text); }
.pricelist td.note{ color:var(--muted); }

/* ===== Forms ===== */
form{
  display:grid;
  gap:12px;
  max-width:560px;
}
input, textarea{
  width:100%;
  padding:12px 14px;
  background:#0f0f10;
  color:var(--text);
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.12);
  outline:none;
}
input:focus, textarea:focus{
  box-shadow:0 0 0 3px rgba(0,245,212,.2);
}

.price-section {
  margin-top: 40px;
}

.pricelist {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.pricelist th,
.pricelist td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
  vertical-align: top;
}

.pricelist .section-row td {
  font-weight: 800;
  color: var(--accent);
  padding-top: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(90deg, rgba(255,62,165,0.06), rgba(0,245,212,0.03));
}

.pricelist th {
  color: var(--text);
}

.pricelist td {
  color: var(--muted);
}

.pricelist td:last-child {
  color: var(--secondary);
  font-weight: bold;
}


/* ===== Footer ===== */
footer {
  margin-top: 40px;
  padding: 22px 0 44px;
  color: var(--muted);
  border-top: 1px solid rgba(26, 26, 26, 0.85);
  text-align: center;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main, section.about-section {
  flex: 1;
}

footer {
  margin-top: auto;
}


/* Gallery Section */
.gallery {
  margin-top: 60px;
}

.gallery h2 {

  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--secondary);
  text-shadow: 0 0 8px rgba(255,62,165,.7);
  text-align: center; 
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px;
  max-width: 1000px; 
  margin: 0 auto;    
}


.gallery-grid img,
.gallery-grid video {
  width: 100%;
  aspect-ratio: 3 / 4;   
  object-fit: cover;     
  border-radius: 12px;
  box-shadow: 0 0 16px rgba(255,62,165,.5), 0 0 22px rgba(0,245,212,.4);
  transition: transform .3s ease;
}

.gallery-grid img:hover,
.gallery-grid video:hover {
  transform: scale(1.05);
}

/* About Section */
.about-section {
  display: grid;
  align-items: center;
  grid-template-columns: 1.5fr 1fr; 
  justify-content: space-between;
  margin-left: 15%;
  gap: 100px;
  margin-top: 60px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--secondary);
  text-shadow: 0 0 8px rgba(255,62,165,.7);
}

.about-text p {
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--text);
}

.about-photo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-photo img {
  max-width: 350px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255,62,165,.5), 0 0 28px rgba(0,245,212,.4);
}

/* Price List intro */
.price-intro {
  text-align: center;
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.price-intro h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--secondary);
  text-shadow: 0 0 6px var(--secondary);
}

.price-intro p {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}


/* Contact page layout */
.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;   
  justify-content: center;
  text-align: center;    
  margin: 5px auto;
  max-width: 600px;      
  padding: 20px;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.05);
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 12px rgba(255,62,165,.5), 0 0 16px rgba(0,245,212,.4);
}

.contact-note {
  margin-top: 12px;
  color: var(--muted);
}

/* ====Social Links ======*/
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  color: #0b0b0b;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transition: transform .2s ease;
}

.social-links a:hover {
  transform: translateY(-2px) scale(1.05);
}

.social-links svg {
  flex-shrink: 0;
}

/* Opening Times Section */
.opening-section {
  margin-top: 40px;
}

.opening-section h2 {
  text-align: center;
  color: var(--accent);
  text-shadow: 0 0 8px rgba(163,255,18,.45);
  margin-bottom: 18px;
}

/* Card wrapper to match site look */
.opening-card{
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.55);
}

/* Table of times */
.opening-times{
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.opening-times td{
  padding: 10px 12px;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}

.opening-times tr:last-child td{
  border-bottom: none;
}

.opening-times td:first-child{
  color: var(--muted);
  width: 55%;
}

.opening-times tr.today td {
  color: var(--text);
  background: linear-gradient(90deg, rgba(255,62,165,0.06), rgba(0,245,212,0.02));
  box-shadow: 0 0 18px rgba(255,62,165,0.06) inset;
}


.opening-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Responsive: stack times on narrow screens */
@media (max-width: 520px) {
  .opening-card {
    padding: 14px;
  }

  .opening-times{
    display: block;
  }

  .opening-times tbody tr{
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.06);
  }

  .opening-times td{
    display: inline-block;
    padding: 0;
    border: none;
  }

  .opening-times tr:last-child {
    border-bottom: none;
  }
}


@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-photo {
    margin-top: 20px;
  }
}

/* Good to Know Section as cards */
.good-to-know {
  margin-top: 60px;
}

.good-to-know h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent);
}

.good-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr); 
  gap: 20px;
  max-width: 1400px; 
  margin: 0 auto;
}


.good-cards .card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  transition: transform .3s ease, box-shadow .3s ease;
}

.good-cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(255,62,165,.3), 0 0 20px rgba(0,245,212,.2);
}


.good-cards h3 {
  margin-bottom: 10px;
  color: var(--secondary);
  text-shadow: 0 0 6px rgba(255,62,165,.6);
}

.good-cards p {
  color: var(--text);
  line-height: 1.5;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .good-cards {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 600px) {
  .good-cards {
    grid-template-columns: 1fr; 
  }
}


/* Reviews section */
.reviews-section{
  padding: 40px 20px;
  margin: 0 auto;
  max-width: 1100px;
  text-align: center;
}
.reviews-section h2{
  margin-bottom: 20px;
  color: var(--primary);
  text-shadow: 0 0 10px rgba(18, 219, 255, 0.45); 
}
.reviews-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 10px;
}
.review{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
  text-align: left;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}
.review .stars{
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 8px;
  text-shadow: 0 0 8px rgba(163,255,18,.35);
}
.review .quote{
  margin: 0 0 8px 0;
  font-style: italic;
}
.review .author{
  opacity: .9;
  font-weight: 600;
}
.reviews-section .stars {
  font-size: 1.4rem; 
  color: #ffff33; 
  text-shadow: 
    0 0 2px #ffff33,
    0 0 4px #ffd700,
    0 0 6px #ffd700;
}

/* Mobile tweaks */
@media (max-width: 640px){
  .reviews-section{ padding: 28px 16px; }
  .reviews-grid{ gap: 12px; }
}


.about-section{
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 20px;
}

@media (min-width: 821px){
  .about-section .about-wrap{
    display: grid !important;
    grid-template-columns: minmax(420px, 720px) auto;
    column-gap: 20px !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .about-section .about-text{
    text-align: left !important;
  }
  .about-section .about-actions{
    display: flex;
    gap: 16px;
    justify-content: flex-start !important;
    margin-top: 14px;
    flex-wrap: wrap;
  }
  .about-section .about-photo{
    justify-self: start !important;
    margin-left: 0 !important;
  }
  .about-section .about-photo img{
    width: clamp(360px, 32vw, 500px);
    height: auto;
    display: block;
    border-radius: 16px;
  }
}

@media (max-width: 820px){
  .about-section .about-wrap{
    display: grid !important;
    grid-template-columns: 1fr;
    row-gap: 18px;
    justify-items: center;
    text-align: center;
  }
  .about-section .about-text{ text-align: center !important; }
  .about-section .about-actions{ justify-content: center !important; }
  .about-section .about-photo img{ max-width: 520px; width: 100%; height: auto; }
}

/* Cancellation Policy section */
.policy-section {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.policy-box {
  background: #111; /* dark background to match theme */
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 26px 26px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 0 12px rgba(163, 255, 18, 0.25);
}

.policy-box h2 {
  margin-top: 5px;
  text-align: center;
  margin-bottom: 10px;
  color: var(--primary);
  text-shadow: 0 0 8px rgba(163, 255, 18, 0.35);
}

.policy-list {
  margin: 12px auto 16px;
  padding-left: 20px;
  line-height: 1.6;
}

.policy-list li {
  margin: 6px 0;
}

.policy-box a {
  color: var(--accent);
  font-weight: bold;
  text-decoration: none;
}

.policy-box a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .policy-box {
    padding: 20px 16px;
  }
}

/* === Collage uniform fix: make all 6 photos same size === */
.about-photo .photo-collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

/* Reset any old per-photo rules and absolute positioning */
.about-photo .photo-collage .ph,
.about-photo .photo-collage .ph1,
.about-photo .photo-collage .ph2,
.about-photo .photo-collage .ph3,
.about-photo .photo-collage .ph4,
.about-photo .photo-collage .ph5,
.about-photo .photo-collage .ph6 {
  position: static !important;
  width: 100% !important;
  height: 280px !important;   
  object-fit: cover !important;
  margin: 0 !important;
  transform: none !important;
  border-radius: 10px;
}

/* Optional: uniform hover */
@media (hover:hover){
  .about-photo .photo-collage .ph:hover { transform: scale(1.04); z-index: 1; }
}

/* Mobile: 2 columns, slightly smaller */
@media (max-width: 820px){
  .about-photo .photo-collage{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 600px;
    gap: 10px;
  }
  .about-photo .photo-collage .ph{ height: 180px !important; }
}



.nav-toggle{
  display:none;
  background:transparent;
  border:none;
  width:44px; height:44px;
  align-items:center; justify-content:center;
  border-radius:10px;
}
.nav-toggle .bar{
  display:block;
  width:22px; height:2px;
  background:var(--text);
  margin:3px 0;
  transition:transform .2s ease, opacity .2s ease;
  box-shadow:0 0 6px rgba(255,255,255,.35);
}

/* Mobile menu panel */
@media (max-width: 860px){
  .nav { gap: 8px; }
  .brand img { height: 54px; }
  .nav-toggle{ display:flex; }
  .nav-links{
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(12,12,12, 0.98);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 8px 14px 14px;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{
    padding:12px 10px;
    border-radius:10px;
    border-color: transparent;
    color: var(--text);
  }
  .container{ width: min(1100px, 94%); padding: 16px 0 44px; }
  .hero{ padding-top: 34px; }
}

/* Gallery: 2 cols on tablets, 1 on phones */
@media (max-width: 900px){
  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px){
  .gallery-grid{
    grid-template-columns: 1fr;
  }
}

/* About section spacing fixes for small screens */
@media (max-width: 900px){
  .about-section{ 
    margin-left: 0; 
    grid-template-columns: 1fr; 
    gap: 28px;
  }
  .about-text p{ text-align: left; }
}

/* Buttons: make tappable and full-width option on small screens */
@media (max-width: 560px){
  .cta-row .button{ flex:1 1 auto; text-align:center; }
}


/* === Hero center paragraph & CTAs === */
.hero > p{
  text-align:center;
  max-width: 780px;
  margin: 0 auto 24px;
}
.cta-row{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}



.about-text p{ text-align:center; }



@media (max-width: 560px){
  .opening-card{ padding-left: 14px; padding-right: 14px; }
  .opening-times{ width:100%; table-layout: fixed; }
  .opening-times td:first-child{ width: 45%; }
  .opening-times td:last-child{ width: 55%; text-align:right; white-space:nowrap; }
}



.nav-toggle {
  display: none; 
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--text);
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}
@media (max-width: 860px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-links { position: absolute; top: 100%; right: 0; left: 0; display: none; flex-direction: column; background: rgba(12,12,12,0.98); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 10px 14px; }
  .nav-links.open { display: flex; }
}


.hero { text-align: center; }
.hero h1 { text-align: center; margin: 0 auto 18px; display: inline-block; line-height: 1.1; }
.hero > p { text-align: center; max-width: 780px; margin: 0 auto 24px; }
.cta-row { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }


.opening-section { text-align: center; }
.opening-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 16px;
  margin: 16px auto 24px;
  max-width: 420px;
  box-shadow: 0 0 14px rgba(0, 245, 212, 0.25);
}
.opening-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.25);
  padding: 8px 0;
  font-size: 1rem;
  color: var(--text);
}
.opening-row span:first-child { text-align: left; flex: 1; font-weight: 700; }
.opening-row span:last-child { text-align: right; color: var(--accent); text-shadow: 0 0 6px var(--accent); font-weight: 600; }
.opening-row:last-child { border-bottom: none; }
.opening-note { font-size: 0.9rem; color: var(--muted); margin-top: 8px; }
@media (max-width: 480px) {
  .opening-box { width: 92%; padding: 16px 12px; }
  .opening-row { font-size: 0.95rem; }
}



.nav-toggle{
  display:none; 
  flex-direction:column;
  justify-content:space-between;
  width:26px;
  height:18px;
  background:transparent;
  border:none;
  cursor:pointer;
  padding:0;
}
.nav-toggle .bar{
  width:100%;
  height:3px;
  background-color: var(--text);
  border-radius:2px;
  box-shadow:0 0 6px rgba(255,255,255,0.4);
  transition:all .3s ease;
}
@media (max-width: 860px){
  .nav-toggle{ display:flex; align-items:center; justify-content:center; }
  .nav-links{
    position:absolute; top:100%; right:0; left:0;
    display:none; flex-direction:column; gap:0;
    background:rgba(12,12,12,.98);
    border-bottom:1px solid rgba(255,255,255,0.06);
    padding:10px 14px;
  }
  .nav-links.open{ display:flex; }
}



.site-header .container.nav{ position: relative; z-index: 100; }


.nav-toggle .bar{ background-color:#ffffff !important; height:3px !important; display:block !important; }


@media (max-width: 1024px){
  .nav-toggle{ display:flex !important; align-items:center; justify-content:center; width:30px; height:22px; z-index:999; }
  .nav-links{
    position:absolute; top:100%; right:0; left:0;
    display:none !important; flex-direction:column; gap:0;
    background:rgba(12,12,12,.98);
    border-bottom:1px solid rgba(255,255,255,0.06);
    padding:10px 14px;
  }
  .nav-links.open{ display:flex !important; }
}


.contact-info a,
.contact-info span {
  color: #ff5ce8; 
  text-shadow:
    0 0 6px #ff5ce8,
    0 0 10px #ff33cc,
    0 0 16px #66ccff,
    0 0 22px #3399ff;
  transition: text-shadow 0.3s ease, color 0.3s ease;
}

.contact-info a:hover,
.contact-info span:hover {
  color: #aee8ff; 
  text-shadow:
    0 0 8px #ff99ff,
    0 0 14px #66ccff,
    0 0 24px #00aaff,
    0 0 34px #ff66ff;
}


.hero { text-align: left !important; }
.hero h1 { text-align: left !important; margin: 0 0 18px !important; display: block !important; }
.hero > p { text-align: left !important; margin: 0 0 24px !important; }
.hero .cta-row { justify-content: flex-start !important; }


.hero h1 .pink { color: var(--secondary); }
.hero h1 .blue { color: var(--primary); }


@media (max-width: 768px) {
  .navbar {
    height: 70x; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .navbar img.logo {
    height: 120%;
    width: auto;
    max-height: 100px;
    object-fit: contain;
  }

  .navbar .menu-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ===== Reviews: form + stats ===== */
.review-form-section{ margin: 10px 0 24px; }
.review-form {
  display: grid;
  gap: 12px;
  max-width: 560px;
}
.review-form .field-row { display: grid; gap: 8px; }
.review-form .hp { display:none; }

.sr-only { position:absolute !important; left:-9999px !important; width:1px; height:1px; overflow:hidden; }


.star-input {
  display: inline-flex; flex-direction: row-reverse; gap: 6px;
  border: none; padding: 0; margin: 0;
}
.star-input input { display:none; }
.star-input label {
  font-size: 28px; line-height: 1; cursor: pointer; filter: drop-shadow(0 0 6px rgba(255,214,10,.45));
  color: #555; transition: transform .15s ease, color .15s ease, text-shadow .15s ease;
}
.star-input label:hover,
.star-input label:hover ~ label,
.star-input input:checked ~ label {
  color: var(--warning);
  text-shadow: 0 0 6px rgba(255,214,10,.8);
}
.rating-label { color: var(--muted); font-weight: 700; margin-bottom: 4px; display:block; }


.reviews-stats { margin: 24px 0 8px; }
.stat-card{
  display:inline-flex; align-items:center; gap: 12px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 10px 14px;
}
.stat-stars { font-size: 20px; color: #ffd60a; text-shadow: 0 0 6px #ffd60a; letter-spacing: 2px; }
.stat-text { color: var(--muted); }


.empty-reviews{
  text-align:center; margin: 14px 0; color: var(--muted);
}


.reviews-stats,
.reviews-section,
.review-form-section .review-form {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}


.reviews-stats { text-align: center; margin-bottom: 20px; }
.empty-reviews { text-align: center; }

.review-hero {
  text-align: center;

  margin-top: 40px;
  margin-bottom: 30px;
}
.review-hero h1 {
  font-size: 2.75rem;
  text-align: center;
}
.review-hero p {
  text-align: center;
  margin-top: 6px;
}

.reviews-stats,
.reviews-section,
.review-form-section .review-form {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-stats { text-align: center; margin-bottom: 20px; }
.empty-reviews { text-align: center; }

.review-form-section {
  margin-top: 50px;
  text-align: center;
}
.review-form-section .form-title {
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px var(--accent);
}


.review-form .field-row.rating-row {
  display: block;
  text-align: center;
}
.review-form .rating-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}
.review-form .star-input {
  display: inline-flex;
  justify-content: center;
  width: 100%;
}
.review-form button {
  margin-top: 10px;
}
.review-form .field-row {
  margin-bottom: 10px;
}


.stat-card {
  display:inline-flex; align-items:center; gap:12px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px; padding:10px 14px;
}
.stat-stars { font-size:20px; color:#ffd60a; text-shadow:0 0 6px #ffd60a; letter-spacing:2px; }
.stat-text { color:var(--muted); }

.review-hero h1 {
  color: var(--secondary);
  text-shadow: 0 0 14px var(--secondary);
}


.review-hero {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.review-hero h1 {
  color: var(--secondary);
  text-shadow: 0 0 16px var(--secondary);
  font-size: 2.6rem;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 10px;
}


.reviews-caption {
  text-align: center;
  margin: 0 auto;
  max-width: 90%;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.4;
}


@media (max-width: 768px) {
  .review-hero h1 {
    font-size: 2.2rem;
  }
  .reviews-caption {
    font-size: 1rem;
    max-width: 95%;
  }
}



/* ===== Slideshow (About) ===== */
.about-slideshow h2{
  margin:32px 0 12px;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  color: var(--secondary);
  text-shadow: 0 0 10px rgba(255,62,165,.7);
}

.slider{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border:1px solid rgba(238,231,231,0.08);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02) inset, 0 8px 24px rgba(0,0,0,.45);
}

.slides{
  display: flex;
  transition: transform .5s ease;
}

.slide{
  width: 100%;
  flex: 0 0 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  display: block;
  box-shadow: 0 0 16px rgba(255,62,165,.5), 0 0 22px rgba(0,245,212,.4);
}


.slider .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: none;
  border: none;
  color: #a3ff12; 
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  text-shadow: 0 0 10px #a3ff12, 0 0 20px #a3ff12, 0 0 40px #a3ff12;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}

.slider .nav:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  text-shadow: 0 0 20px #a3ff12, 0 0 40px #a3ff12, 0 0 80px #a3ff12;
}

.slider .prev {
  left: 15px;
}

.slider .next {
  right: 15px;
}

/* Smaller screens */
@media (max-width: 560px) {
  .slider .nav {
    font-size: 2.2rem;
  }
}


/* Dots */
.dots{
  position: absolute;
  left: 0; right: 0; bottom: 10px;
  display: flex; gap: 8px; justify-content: center; align-items: center;
}
.dots button{
  width: 10px; height: 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.15); cursor: pointer;
}
.dots button[aria-selected="true"]{
  background: var(--accent);
  box-shadow: 0 0 10px rgba(163,255,18,.7);
}

/* Small screens */
@media (max-width: 560px){
  .slider .nav{ width: 38px; height: 38px; font-size: 22px; }
  .slide{ aspect-ratio: 4 / 5; }
}

/* --- Mobile-only swipe slides for the gallery --- */
@media (max-width: 640px) {
  .gallery-grid{
    display: flex;                 
    overflow-x: auto;              
    gap: 14px;
    padding: 0 12px;
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch;
  }

  .gallery-grid img,
  .gallery-grid video{
    flex: 0 0 88vw;               
    max-width: 88vw;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    border-radius: 12px;
    box-shadow: 0 0 16px rgba(255,62,165,.5), 0 0 22px rgba(0,245,212,.4);
  }

  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery { margin-top: 34px; }  
}
