:root {
  --accent: #00ccff;
  --accent-dark: #009ec4;
  --accent-soft: rgba(0, 204, 255, 0.12);
  --ink: #0b1720;
  --ink-soft: #4c5a67;
  --surface: #f5f9fc;
  --surface-2: #ffffff;
  --line: rgba(11, 23, 32, 0.08);
  --shadow: 0 30px 60px rgba(5, 21, 34, 0.15);
  --shadow-soft: 0 15px 35px rgba(5, 21, 34, 0.08);
  --shadow-glow: 0 20px 40px rgba(0, 204, 255, 0.2);
  --radius: 22px;
  --verde-whatsapp: #25D366;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bouncy: cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0, 204, 255, 0.05), transparent 40%),
    linear-gradient(180deg, #f8fcff 0%, #edf5fa 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300ccff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -2;
}

img { display: block; max-width: 100%; }

a { color: inherit; }

h1, h2, h3, .logo, .hero-square-logo, .section-highlight-title {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(11, 23, 32, 0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s var(--ease-out-expo);
}

.logo {
  text-decoration: none;
  font-size: 1.8rem;
  color: #ffffff;
}

.logo span {
  color: var(--accent);
  text-shadow: 0 0 15px rgba(0, 204, 255, 0.4);
}

.navbar nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.navbar nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.86);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar nav a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-nav,
.btn-primary,
.btn-secondary,
.btn-card,
.btn-whatsapp,
.btn-chiama {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-bouncy);
}

.btn-primary::after,
.btn-nav::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(45deg) translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.btn-primary:hover::after,
.btn-nav:hover::after {
  animation: shine 1.5s ease-out infinite;
  opacity: 1;
}

@keyframes shine {
  0% { transform: translateX(-150%) rotate(45deg); }
  100% { transform: translateX(150%) rotate(45deg); }
}

.btn-nav,
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #56dfff);
  color: #04131b;
  box-shadow: 0 8px 20px rgba(0, 204, 255, 0.25);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-nav {
  padding: 11px 22px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-primary,
.btn-secondary,
.btn-whatsapp,
.btn-chiama {
  padding: 16px 28px;
  font-size: 1.02rem;
}

.btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(5px);
}

.btn-primary:hover,
.btn-whatsapp:hover,
.btn-chiama:hover {
  transform: translateY(-4px) scale(1.02);
}

.btn-secondary:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #4be38a);
  color: #062010;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

.btn-chiama {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 72px 24px;
  background:
    linear-gradient(120deg, rgba(6, 18, 28, 0.9), rgba(6, 18, 28, 0.45)),
    url('img/sfondo-hero.jpg') center/cover;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: auto -10% -18% auto;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 204, 255, 0.35), transparent 70%);
  filter: blur(20px);
  animation: floatOrb 12s ease-in-out infinite;
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-30px, -30px, 0) scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(0, 204, 255, 0.15), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 24px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #b3f0ff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 1.02;
  background: linear-gradient(to right, #ffffff, #cceeff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  max-width: 760px;
  margin: 26px 0 0;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 760px;
  margin-top: 50px;
}

.stat-box {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(16px);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  border-color: rgba(0, 204, 255, 0.4);
}

.stat-box strong {
  display: block;
  font-size: 2.2rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,204,255,0.3);
}

.stat-box span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-brand-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-square-logo {
  width: min(100%, 420px);
  min-height: 380px; 
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25), 0 0 40px rgba(0, 204, 255, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}

.hero-square-logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 204, 255, 0.12), transparent 60%);
  pointer-events: none;
}

.hero-square-logo-mark,
.hero-square-logo-claim {
  position: relative;
  z-index: 1;
}

.hero-square-logo-mark {
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 0.95;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-square-logo-mark span {
  display: block;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(0, 204, 255, 0.35);
}

.hero-square-logo-claim {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.intro-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -60px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.intro-card {
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,1);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-bouncy);
}

.intro-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 204, 255, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.intro-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--shadow-glow);
  border-color: rgba(0, 204, 255, 0.3);
}

.intro-card:hover::before { opacity: 1; }

.intro-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #e0f8ff, #ffffff);
  color: var(--accent-dark);
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 204, 255, 0.15), inset 0 2px 0 rgba(255,255,255,0.9);
}

.intro-card span {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--ink);
  position: relative;
  z-index: 1;
}

.intro-card p {
  margin: 0;
  color: var(--ink-soft);
  position: relative;
  z-index: 1;
}

.section {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 100px 0 20px;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 204, 255, 0.3), transparent);
}

.section.soft-panel {
  margin-top: 60px;
  padding: 100px 32px 40px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(0, 204, 255, 0.03), rgba(255,255,255,0.8));
  border: 1px solid rgba(0, 204, 255, 0.15);
  box-shadow: inset 0 20px 40px rgba(255,255,255,0.5);
}

.section-title {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--ink);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #45d8ff);
}

.section-subtitle {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.about-michele {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 40px;
  align-items: center;
}

.michele-figure {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: end;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(0, 204, 255, 0.16), transparent 60%);
  border-radius: 34px;
  overflow: hidden;
}

.michele-figure img {
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(5, 21, 34, 0.22));
}

.about-card {
  padding: 36px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0, 204, 255, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.about-card .eyebrow-dark {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--accent-dark);
  background: var(--accent-soft);
  margin-bottom: 18px;
}

.about-card h3 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.about-card p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--ink-soft);
}

.discover-grid,
.services-grid,
.staff-grid,
.nightlife-grid {
  display: grid;
  gap: 28px;
}

.discover-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.staff-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.nightlife-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  position: relative;
  background: rgba(255,255,255,1);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s var(--ease-bouncy);
}

.card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: var(--shadow);
  border-color: rgba(0, 204, 255, 0.35);
}

.card-cover {
  min-height: 260px;
  position: relative;
  display: flex;
  align-items: end;
  padding: 26px;
  color: #fff;
  overflow: hidden;
}

.card-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 18, 28, 0.88), rgba(6, 18, 28, 0.16));
}

.card-cover h3,
.card-cover p,
.card-cover .badge {
  position: relative;
  z-index: 1;
}

.card-cover h3 {
  margin: 0 0 10px;
  font-size: 1.8rem;
}

.card-cover p {
  margin: 0;
  max-width: 90%;
  color: rgba(255,255,255,0.85);
}

.card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
  margin-bottom: 14px;
}

.btn-card {
  margin-top: 6px;
  padding: 14px 22px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  width: fit-content;
}

.card:hover .btn-card {
  background: linear-gradient(135deg, var(--accent), #56dfff);
  color: #03161e;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(0, 204, 255, 0.3);
}

.apartments-bg {
  background:
    linear-gradient(to top, rgba(6,18,28,0.75), rgba(6,18,28,0.1)),
    url('img/appartamenti-cover.png') center/cover;
}

.boats-bg {
  background:
    linear-gradient(to top, rgba(6,18,28,0.75), rgba(6,18,28,0.1)),
    url('img/barca-cover.png') center/cover;
}

.service-card,
.night-card,
.staff-card,
.contact-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(11, 23, 32, 0.08);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s var(--ease-bouncy);
}

.service-card:hover,
.night-card:hover,
.staff-card:hover,
.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 204, 255, 0.22);
  box-shadow: var(--shadow-glow);
}

.service-icon,
.night-icon,
.staff-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0f8ff, #ffffff);
  color: var(--accent-dark);
  font-size: 1.45rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0, 204, 255, 0.15), inset 0 2px 0 rgba(255,255,255,0.9);
}

.service-card h3,
.night-card h3,
.staff-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.service-card p,
.night-card p,
.staff-card p,
.contact-card p {
  margin: 0;
  color: var(--ink-soft);
}

.staff-card.featured {
  background: linear-gradient(180deg, rgba(0, 204, 255, 0.06), rgba(255,255,255,0.95));
  border: 1px solid rgba(0, 204, 255, 0.18);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.contact-number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 700;
}

.map-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(11,23,32,0.08);
  min-height: 100%;
  background: #dceaf3;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.cta-ecommerce {
  width: min(1200px, calc(100% - 32px));
  margin: 60px auto 100px;
  padding: 46px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(6, 18, 28, 0.96), rgba(6, 18, 28, 0.78)),
    radial-gradient(circle at top right, rgba(0, 204, 255, 0.22), transparent 35%);
  color: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta-ecommerce h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
}

.cta-ecommerce p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  max-width: 760px;
}

.footer {
  padding: 28px 20px 42px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1100px) {
  .hero-content,
  .about-michele,
  .contact-layout,
  .cta-ecommerce {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .nightlife-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-brand-box { order: -1; }
}

@media (max-width: 920px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px 20px;
  }

  .intro-strip,
  .discover-grid,
  .staff-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar nav {
    justify-content: center;
    gap: 10px 12px;
  }

  .btn-nav {
    width: auto;
    padding: 8px 14px;
    font-size: 0.82rem;
    flex: 0 0 auto;
  }

  .hero {
    min-height: auto;
    padding: 42px 18px 88px;
    background-attachment: scroll;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section,
  .section.soft-panel,
  .cta-ecommerce {
    width: min(1200px, calc(100% - 24px));
    padding-left: 16px;
    padding-right: 16px;
  }

  .services-grid,
  .nightlife-grid {
    grid-template-columns: 1fr;
  }

  .hero-square-logo {
    max-width: 320px;
    margin: 0 auto;
  }

  .cta-ecommerce {
    padding-top: 38px;
    padding-bottom: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal,
  .hero::before,
  .btn-primary::after,
  .btn-nav::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

#top,
#michele,
#appartamenti,
#barche,
#staff,
#eventi,
#contatti {
  scroll-margin-top: 110px;
}

@media (max-width: 920px) {
  #top,
  #michele,
  #appartamenti,
  #barche,
  #staff,
  #eventi,
  #contatti {
    scroll-margin-top: 140px;
  }
}

.hero-social-links {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 8px; 
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.btn-social svg {
  transition: transform 0.3s ease; 
}

.btn-social:hover {
  background: rgba(0, 204, 255, 0.15);
  border-color: rgba(0, 204, 255, 0.4);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 204, 255, 0.2);
}

.btn-social:hover svg {
  transform: scale(1.15); 
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(0, 204, 255, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(0, 204, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 204, 255, 0); }
}

.hero-actions .btn-primary {
  animation: pulse-glow 2.5s infinite;
}

.hero-actions .btn-primary:hover {
  animation: none;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 204, 255, 0.4);
}

.btn-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  padding: 16px 28px;
  font-size: 1.02rem;
  transition: all 0.4s var(--ease-bouncy);
  background: linear-gradient(135deg, var(--accent), #56dfff);
  color: #04131b;
  box-shadow: 0 10px 25px rgba(0, 204, 255, 0.25);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-email:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 204, 255, 0.35);
}

.hero-social-links .btn-social.btn-social-accent {
  background: linear-gradient(135deg, var(--accent), #56dfff);
  color: #04131b;
  box-shadow: 0 8px 20px rgba(0, 204, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-social-links .btn-social.btn-social-accent:hover {
  background: linear-gradient(135deg, var(--accent), #56dfff);
  color: #04131b;
  box-shadow: 0 12px 25px rgba(0, 204, 255, 0.4);
  transform: translateY(-3px) scale(1.05);
}

.special-links-group {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap; 
}

@media (max-width: 480px) {
  .special-links-group {
    gap: 6px;
  }
  
  .special-links-group .btn-social {
    padding: 8px 10px;
    font-size: 0.75rem; 
    gap: 4px; 
  }
  
  .special-links-group svg {
    width: 16px; 
    height: 16px;
  }
}

.nav-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

@media (max-width: 1150px) {
  .navbar nav {
    gap: 14px;
  }
}

.hamburger {
  display: none; 
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001; 
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 10px;
  transition: all 0.4s var(--ease-bouncy);
  transform-origin: left center;
}

@media (max-width: 960px) {
  .navbar {
    flex-wrap: nowrap; 
    justify-content: space-between;
    padding: 16px 24px;
  }

  .hamburger {
    display: flex; 
  }

  .navbar nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(11, 23, 32, 0.96);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  }

  .navbar.menu-open nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar nav a {
    font-size: 1.15rem;
    width: 100%;
    text-align: left;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-buttons {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .nav-buttons .btn-nav {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    border-bottom: none;
    text-align: center;
    justify-content: center;
  }

  .navbar.menu-open .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    background-color: var(--accent);
  }
  .navbar.menu-open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .navbar.menu-open .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    background-color: var(--accent);
  }
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 20px 0;
  display: flex;
  align-items: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11, 23, 32, 0.7);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(5px);
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: var(--accent);
  color: #0b1720;
}

.prev-btn { left: -15px; }
.next-btn { right: -15px; }

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s var(--ease-bouncy);
}

.img-container {
  width: 100%;
  aspect-ratio: 4/5;
  background: rgba(11, 23, 32, 0.05);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
}

.carousel-item:hover {
  transform: translateY(-8px);
}

.img-container:hover {
  box-shadow: var(--shadow-glow);
}

.event-header {
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 15px;
  width: 100%;
}

.event-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 4px 0;
  text-align: center;
}

.event-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
}

.btn-wa-solid {
  background: #2de068;
  color: #0b1720;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  margin-top: 16px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(45, 224, 104, 0.25);
}

.btn-wa-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(45, 224, 104, 0.4);
}

@media (max-width: 900px) {
  .carousel-item { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 600px) {
  .carousel-item { flex: 0 0 85%; }
  .carousel-btn { display: none; }
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 23, 32, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  animation: zoomIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #ffffff;
  font-size: 45px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--accent);
}

#modal-caption {
  margin-top: 20px;
  color: #ffffff;
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

.carousel-track.center-1 {
  justify-content: center;
}

.carousel-track.center-2 {
  justify-content: center;
}

@media (max-width: 900px) {
  .carousel-track.center-2 {
    justify-content: flex-start;
  }
}