    /* RESET & BASE */
    *{margin:0;padding:0;box-sizing:border-box;}
    body{font-family:'Poppins', sans-serif; background:#000; color:#fff; overflow-x:hidden; scroll-behavior:smooth;}
    a{text-decoration:none;color:inherit;}
    img, video{max-width:100%; display:block;}

    /* COLORS */
    :root {
      --black:#000;
      --white:#fff;
      --glass-bg: rgba(255,255,255,0.05);
      --glass-border: rgba(255,255,255,0.2);
    }

    /* NAVBAR */
    nav{position:fixed;top:3%;width:100%;padding:1rem 2rem;display:flex;justify-content:space-between;align-items:center;backdrop-filter:blur(12px); background:var(--glass-bg); border-bottom:1px solid var(--glass-border); border-radius:20px; z-index:1000; transition:all 0.4s;}
    nav.scrolled{background:rgba(0,0,0,0.85);}
    nav .menu{display:flex;gap:2rem;list-style:none;}
    nav .menu li{position:relative;}
    nav .menu li::after{content:'';position:absolute;left:0;bottom:-3px;width:100%;height:2px;background:var(--white);transform:scaleX(0);transform-origin:left;transition:transform 0.35s;}
    nav .menu li:hover::after{transform:scaleX(1);}
    .logo-area{display:flex;align-items:center;gap:1rem;}
    .logo{font-family:'Playfair Display',serif;font-size:1.8rem;color:var(--white);}
    .logo-img img{height:45px;filter:drop-shadow(0 2px 6px rgba(0,0,0,0.5));}
    .logo-img-gatto img{height:45px;filter:drop-shadow(0 2px 6px rgba(0,0,0,0.5));}
    @media (max-width:900px){.logo-img{display:none;}}

    /* Hamburger menu */
    .hamburger{display:none;flex-direction:column;cursor:pointer;gap:5px;}
    .hamburger div{width:25px;height:3px;background:var(--white);transition:0.3s;}
    @media(max-width:900px){
      .menu{
        position:fixed;top:70px;right:-100%;flex-direction:column;
        background:rgba(0,0,0,0.95);backdrop-filter:blur(10px);
        width:200px;padding:2rem;border-radius:0 0 0 20px;transition:0.4s;
      }
      .menu.active{right:0;}
      .hamburger{display:flex;}
    }

    /* HERO migliorata */
    .hero {
      position: relative;
      width: 100%;
      min-height: 100svh; /* altezza viewport dinamica mobile */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .hero-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: brightness(0.25);
      transform: scale(1.05);
    }

    .hero-video .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    }

    .hero-content {
      position: relative;
      z-index: 10;
      max-width: 90%;
      backdrop-filter: blur(20px);
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 2rem 1.5rem;
      animation: fadeInUp 2s ease forwards;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 6vw, 5rem);
      margin-bottom: 1rem;
      color: var(--white);
      text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    }

    .hero h3 {
      font-size: clamp(1.1rem, 3vw, 1.8rem);
      margin-bottom: 2rem;
      color: var(--white);
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
    }

    .hero .btn {
      padding: 0.75rem 1.5rem;
      border-radius: 6px;
      transition: all 0.3s;
      cursor: pointer;
      font-weight: 600;
      backdrop-filter: blur(15px);
      border: 1px solid var(--glass-border);
    }

    .btn-solid {
      background: var(--white);
      color: var(--black);
    }

    .btn-ghost {
      background: var(--glass-bg);
      color: var(--white);
    }

    .btn:hover {
      opacity: 0.95;
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .hero-content {
        padding: 1.5rem 1rem;
      }
      .hero-video video {
        object-position: center 20%;
      }
    }

    @keyframes fadeInUp{
      0%{opacity:0;transform:translateY(40px);}
      100%{opacity:1;transform:translateY(0);}
    }

    /* EXPERIENCE */
    .experience{padding:8rem 2rem;background:#111; backdrop-filter:blur(5px);}
    .experience h2{font-family:'Playfair Display', serif;font-size:3rem;text-align:center;margin-bottom:0.5rem;color:var(--white);}
    .experience h3{text-align:center;color:rgba(255,255,255,0.8);margin-bottom:3rem;}
    .cards{display:grid;grid-template-columns:1fr;gap:2rem;}
    @media(min-width:768px){.cards{grid-template-columns:repeat(3,1fr);}}
    .card{position:relative;overflow:hidden;border-radius:20px;cursor:pointer;transition:transform 0.5s, box-shadow 0.5s; backdrop-filter:blur(10px); border:1px solid var(--glass-border); background:var(--glass-bg);}
    .card img, .card video{width:100%;height:100%;object-fit:cover;transition:transform 0.5s; border-radius:20px;}
    .card:hover img,.card:hover video{transform:scale(1.08);}
    .card .meta{position:absolute;left:1rem;bottom:1rem;color:var(--white); text-shadow:0 2px 10px rgba(0,0,0,0.7);}
    .card .meta h4{font-family:'Playfair Display', serif;font-size:1.8rem;color:var(--white);}

    /* LOCATION */
    .location{padding:6rem 2rem;color:var(--white); text-align:center;}
    .location-hero{margin-bottom:4rem; padding:3rem 2rem; backdrop-filter:blur(15px); background:var(--glass-bg); border:1px solid var(--glass-border); border-radius:20px;}
    .location-hero h2{font-family:'Playfair Display', serif;font-size:3rem;margin-bottom:1rem;}
    .location-hero p{color:rgba(255,255,255,0.7); font-size:1.25rem;}
    .location-grid{display:grid;grid-template-columns:1fr;gap:2rem;}
    @media(min-width:768px){.location-grid{grid-template-columns:repeat(3,1fr);}}
    .location-card{position:relative;border-radius:20px;overflow:hidden;backdrop-filter:blur(10px); border:1px solid var(--glass-border); background:var(--glass-bg); cursor:pointer;transition:transform 0.5s;}
    .location-card img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s;}
    .location-card:hover img{transform:scale(1.05);}
    .location-overlay{position:absolute;bottom:1rem;left:1rem;color:#fff;opacity:0;transition:opacity 0.5s;}
    .location-card:hover .location-overlay{opacity:1;}
    .location-cta{margin-top:3rem;}
    .location-cta .btn{padding:1rem 2rem;border-radius:10px;border:1px solid var(--glass-border); backdrop-filter:blur(10px); background:var(--glass-bg); color:#fff; cursor:pointer; transition:transform 0.3s, box-shadow 0.5s;}
    .location-cta .btn:hover{transform:scale(1.05);box-shadow:0 0 15px rgba(255,255,255,0.3);}

    /* Frecce sulle location card */
    .location-arrow {
      position: absolute;
      top: 1rem;
      right: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
      background: #fff;
      color: #000;
      font-size: 1.5rem;
      border-radius: 50%;
      text-decoration: none;
      transition: transform 0.3s, background 0.3s, color 0.3s;
      z-index: 15;
    }
    .location-arrow:hover {
      transform: rotate(45deg) scale(1.1);
      background: #000;
      color: #fff;
    }

    /* CONTACT */
    .contact{display:flex;flex-direction:column;gap:2rem;padding:6rem 2rem;background:#111;}
    @media(min-width:768px){.contact{flex-direction:row;}}
    .contact-video{flex:1;position:relative;border-radius:20px;overflow:hidden;}
    .contact-video video{width:100%;height:100%;object-fit:cover;filter:brightness(0.35);transition:transform 0.5s;}
    .contact-video:hover video{transform:scale(1.05);}
    .contact-form{flex:1;position:relative;background:var(--glass-bg);padding:2rem;border-radius:20px;color:var(--white);box-shadow:0 8px 30px rgba(0,0,0,0.7); border:1px solid var(--glass-border); backdrop-filter:blur(15px);}
    .contact-form h3{font-family:'Playfair Display', serif;font-size:2.2rem;margin-bottom:1rem;color:var(--white);}
    .contact-form p{margin-bottom:1.5rem;}
    .contact-form input, .contact-form textarea{width:100%;padding:0.75rem;margin-bottom:1rem;border-radius:10px;border:none;background:rgba(255,255,255,0.05);color:var(--white);backdrop-filter:blur(10px);}
    .contact-form button{padding:0.75rem 1.5rem;background:var(--white);color:var(--black);border:none;border-radius:10px;cursor:pointer;transition:transform 0.3s;}
    .contact-form button:hover{transform:scale(1.05);}

    /* FOOTER */
    footer{background:#000;padding:4rem 2rem;text-align:center;color:var(--white);}
    footer .logo{font-family:'Playfair Display', serif;font-size:2.5rem;color:var(--white);text-shadow:0 4px 15px rgba(0,0,0,0.4);margin-bottom:1rem;}
    footer .links a{margin:0 0.5rem;color:var(--white);transition:color 0.3s;}
    footer .links a:hover{color:rgba(255,255,255,0.7);}

    /* LIGHTBOX overlay */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 2000;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.95);
      align-items: center;
      justify-content: center;
    }
    .lightbox-img {
      max-width: 90%;
      max-height: 80%;
      border-radius: 10px;
    }
    .lightbox .close {
      position: absolute;
      top: 20px; right: 30px;
      color: #fff;
      font-size: 3rem;
      cursor: pointer;
      user-select: none;
    }
    .lightbox .prev,
    .lightbox .next {
      position: absolute;
      top: 50%;
      color: #fff;
      font-size: 3rem;
      padding: 0 15px;
      cursor: pointer;
      user-select: none;
      transform: translateY(-50%);
    }
    .lightbox .prev { left: 10px; }
    .lightbox .next { right: 10px; }
    
    @media (max-width: 768px) {
  .contact-video {
    display: none;
  }
}

/* ================================
   STORIA PAGE STYLES
==================================*/

/* HERO SPECIFICO PER STORIA */
.hero.storia-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
  background: url('media/storia-hero.jpg') center/cover no-repeat;
}

.hero.storia-hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero.storia-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--white);
  z-index: 10;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
  padding: 0 1rem;
}

/* CONTENITORE GLASS */
.glass-container {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.7);
  line-height: 1.8;
  color: var(--white);
}

.glass-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.glass-container p { margin-bottom: 1rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero.storia-hero {
    height: 40vh;
  }
  .hero.storia-hero h1 {
    font-size: 2rem;
  }
  .glass-container {
    margin: 2rem 1rem;
    padding: 1rem;
  }
}


/* ================================
   CLUB PAGE STYLES
==================================*/

/* HERO CLUB */
.hero.club-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero.club-hero video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero.club-hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero.club-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1rem;
  max-width: 900px;
}

.hero.club-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hero.club-hero h3 {
  font-size: 1.2rem;
  font-weight: 300;
  color: #ddd;
}

/* SECTIONS */
.experience {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
  text-align: center;
}

.experience h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.experience h3 {
  font-weight: 300;
  color: #ccc;
  margin-bottom: 2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  transition: transform 0.4s;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.card .meta {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  text-align: left;
}

.card span {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.card h4 {
  font-size: 1.3rem;
  font-weight: 600;
}

/* CONTACT */
.contact.club-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  background: rgba(255,255,255,0.05);
}

.contact.club-contact .contact-form {
  max-width: 600px;
  text-align: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.contact.club-contact h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact.club-contact p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.contact.club-contact input,
.contact.club-contact textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--glass-border);
  color: var(--white);
  border-radius: 8px;
}

.contact.club-contact button {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact.club-contact button:hover {
  background: #dcbf7d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero.club-hero { height: 60vh; }
  .hero.club-hero h1 { font-size: 2.3rem; }
  .hero.club-hero h3 { font-size: 1rem; }
  .contact.club-contact { padding: 3rem 1rem; }
}

@media (max-width: 480px) {
  .hero.club-hero h1 { font-size: 1.8rem; }
  .experience h2 { font-size: 2rem; }
  .card .meta h4 { font-size: 1rem; }
}


/* ================================
   EVENTI PRIVATI PAGE STYLES
==================================*/

/* HERO */
.hero.eventi-hero {
  position: relative;
  height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('media/eventi-hero.jpg') center/cover no-repeat;
  margin-top: 80px;
}

.hero.eventi-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero.eventi-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  z-index: 2;
  color: var(--white);
}

.hero.eventi-hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #ddd;
  z-index: 2;
}

/* EVENT GRID */
.eventi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.evento-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.evento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.evento-card:hover img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: all 0.3s;
}

.card-overlay h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.card-overlay p {
  font-size: 0.95rem;
  color: #ddd;
}

/* SERVIZI */
.servizi ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.servizi li {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1rem 1.5rem;
  border-radius: 12px;
}

/* CTA */
.cta {
  background: linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,0,0,0.95)), url('media/cta-bg.jpg') center/cover;
  text-align: center;
  padding: 5rem 2rem;
  color: #fff;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.cta p {
  font-size: 1.1rem;
}

.cta-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero.eventi-hero { height: 50vh; }
  .hero.eventi-hero h1 { font-size: 2rem; }
  .glass-container { margin: 2rem 1rem; padding: 1rem; }
}


/* ==========================
   LOCATION PAGE STYLES
   Prefix: location-page
========================== */

/* HERO */
.location-page .location-hero {
  position: relative;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('media/location-hero.jpg') center/cover no-repeat;
}
.location-page .location-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.location-page .location-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--white);
}
.location-page .location-hero p {
  font-size: 1.2rem;
  color: #ddd;
  margin-top: 1rem;
}

/* INTRO */
.location-page .location-intro {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.7);
  color: var(--white);
}
.location-page .location-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}
.location-page .location-intro p {
  margin-bottom: 1rem;
}

/* 3D CAROUSEL */
.location-page .location-carousel {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
}
.location-page .location-carousel h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--white);
}
.location-page .carousel-container {
  display: flex;
  gap: 1rem;
  overflow-x: scroll;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}
.location-page .carousel-container::-webkit-scrollbar {
  height: 8px;
}
.location-page .carousel-container::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}
.location-page .carousel-card {
  flex: 0 0 auto;
  width: 300px;
  border-radius: 20px;
  overflow: hidden;
  cursor: grab;
  transition: transform 0.3s ease;
}
.location-page .carousel-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* SERVICES */
.location-page .location-services {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 2rem;
  background: var(--glass-bg);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(15px);
}
.location-page .location-services h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}
.location-page .location-services ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.location-page .location-services li {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1rem 1.5rem;
  border-radius: 12px;
}

/* CTA */
.location-page .location-cta {
  text-align: center;
  padding: 5rem 2rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,0,0,0.95)), url('media/location-cta.jpg') center/cover no-repeat;
}
.location-page .location-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.location-page .location-cta p {
  font-size: 1.1rem;
}
.location-page .location-cta .cta-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s;
}
.location-page .location-cta .cta-btn:hover {
  background: #fff;
}

/* RESPONSIVE */
@media(max-width:768px){
  .location-page .location-hero {
    height: 50vh;
  }
  .location-page .location-hero h1 {
    font-size: 2rem;
  }
  .location-page .location-intro,
  .location-page .location-services {
    margin: 2rem 1rem;
    padding: 1rem;
  }
  .location-page .carousel-card {
    width: 250px;
  }
}


/* ==========================
   WEDDING PAGE STYLES
   Prefix: wedding-page
========================== */

/* HERO */
.wedding-page .wedding-hero {
  position: relative;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('media/wedding-hero.jpg') center/cover no-repeat;
}
.wedding-page .wedding-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.wedding-page .wedding-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--white);
}
.wedding-page .wedding-hero p {
  font-size: 1.2rem;
  color: #ddd;
  margin-top: 1rem;
}

/* INTRO */
.wedding-page .wedding-intro {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.7);
  color: var(--white);
}
.wedding-page .wedding-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}
.wedding-page .wedding-intro p {
  margin-bottom: 1rem;
}

/* WEDDING GRID */
.wedding-page .wedding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1rem;
}
.wedding-page .wedding-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}
.wedding-page .wedding-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.wedding-page .wedding-card:hover img { transform: scale(1.1); }
.wedding-page .wedding-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: all 0.3s;
}
.wedding-page .wedding-card .card-overlay h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
  color: var(--accent);
}
.wedding-page .wedding-card .card-overlay p {
  font-size: 0.95rem;
  color: #ddd;
}

/* SERVICES */
.wedding-page .wedding-services ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.wedding-page .wedding-services li {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1rem 1.5rem;
  border-radius: 12px;
}

/* CTA */
.wedding-page .wedding-cta {
  text-align: center;
  padding: 5rem 2rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,0,0,0.95)), url('media/wedding-cta.jpg') center/cover no-repeat;
}
.wedding-page .wedding-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.wedding-page .wedding-cta p { font-size: 1.1rem; }
.wedding-page .wedding-cta .cta-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s;
}
.wedding-page .wedding-cta .cta-btn:hover { background: #fff; }

/* RESPONSIVE */
@media(max-width:768px){
  .wedding-page .wedding-hero { height: 50vh; }
  .wedding-page .wedding-hero h1 { font-size: 2rem; }
  .wedding-page .wedding-intro,
  .wedding-page .wedding-services { margin: 2rem 1rem; padding: 1rem; }
  .wedding-page .wedding-grid .wedding-card { width: 100%; }
}
