/* ============================================================
   PADELROOFTOP PRISTINA — Main Stylesheet
   Sections:
   1. Reset & CSS Variables
   2. Navigation
   3. Hero
   4. Stats Bar
   5. Shared Section Styles
   6. Coming Soon / Countdown
   7. About
   8. Gallery
   9. About Padel
   10. FAQ
   11. Virtual Tour
   12. Instagram
   13. Find Us
   14. Footer
   15. Shine Animation
   16. Responsive
   
   Logo colors: #1c5baa, #8ec740, #13274a
============================================================ */

/* ── 1. Reset & Variables ─────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #05080f;
  --navy: #080d1a;
  --navy-card: #0d1224;
  --navy-light: #131c34;
  --gold: #c9a84c;
  --gold-lt: #e8d5a3;
  --gold-dk: #7a5e18;
  --neon: #00d4ff;
  --neon-green: #00ffb3;
  --text: #eef0f8;
  --text-muted: #7a8496;
  --border: rgba(201, 168, 76, .18);
  --border-dim: rgba(255, 255, 255, .06);
}

body.layout-2 {
  --black: #0d1f3c;
  --navy: #13274a;
  --navy-card: #173762;
  --navy-light: #1c5baa;
  --gold: #8ec740;
  --gold-lt: #b8e36c;
  --gold-dk: #5f9928;
  --neon: #6ba7ea;
  --neon-green: #8ec740;
  --text: #edf5ff;
  --text-muted: #b9cce4;
  --border: rgba(142, 199, 64, .28);
  --border-dim: rgba(255, 255, 255, .1);
  background:
    radial-gradient(1200px 700px at 8% 12%, rgba(28, 91, 170, .18) 0%, transparent 60%),
    radial-gradient(1000px 650px at 90% 20%, rgba(142, 199, 64, .16) 0%, transparent 58%),
    linear-gradient(145deg, #0f2140 0%, #13274a 48%, #102445 100%);
  background-size: 140% 140%;
  animation: layout2BodyFlow 18s ease-in-out infinite;
}

@keyframes layout2BodyFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
}

section,
.stats-bar,
footer,
.tour-wrap,
.max-w {
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .particle {
    opacity: .35 !important;
    transform: none !important;
  }
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ── 2. Navigation ────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.6rem 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  transition: all .4s ease;
}

nav.scrolled {
  background: rgba(5, 8, 15, .96);
  backdrop-filter: blur(20px);
  padding: 1rem 5rem;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .04em;
  grid-column: 1;
  justify-self: start;
}

.nav-logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  transform-style: preserve-3d;
  backface-visibility: visible;
  will-change: transform;
  animation: logoFlipThirty 30s ease-in-out infinite;
}

.nav-logo span {
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  grid-column: 2;
  justify-self: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
  grid-column: 3;
  justify-self: end;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: .5rem 1.4rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  font-family: 'Montserrat', sans-serif;
  border-radius: 2px;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.lang-toggle-btn {
  padding: .38rem .7rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lang-toggle-btn img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  grid-column: 3;
  justify-self: end;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: all .3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(5, 8, 15, .97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  transition: color .3s;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-close-btn {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  z-index: 1001;
}


.hamburger span {
  transition: all .3s;
}

/* ── 3. Hero ──────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(0, 212, 255, .07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(201, 168, 76, .1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 50% 90%, rgba(0, 255, 179, .04) 0%, transparent 55%),
    linear-gradient(160deg, #050810 0%, #0a1020 55%, #050810 100%);
}

.hero-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 8, 15, .1) 0%, rgba(5, 8, 15, .55) 70%, rgba(5, 8, 15, 1) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 168, 76, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, .025) 1px, transparent 1px);
  background-size: 90px 90px;
}

body.layout-2 nav.scrolled {
  background: rgba(19, 39, 74, .92);
}

body.layout-2 .mobile-nav {
  background: rgba(19, 39, 74, .97);
}

body.layout-2 .hero-gradient {
  background:
    radial-gradient(ellipse 85% 65% at 18% 28%, rgba(28, 91, 170, .22) 0%, transparent 60%),
    radial-gradient(ellipse 72% 58% at 78% 18%, rgba(142, 199, 64, .2) 0%, transparent 58%),
    radial-gradient(ellipse 55% 70% at 52% 92%, rgba(107, 167, 234, .14) 0%, transparent 62%),
    linear-gradient(150deg, #0d1f3c 0%, #13274a 50%, #11305c 100%);
  background-size: 150% 150%;
  animation: layout2HeroFlow 16s ease-in-out infinite;
}

body.layout-2 .hero-gradient::after {
  background: linear-gradient(to bottom, rgba(13, 31, 60, .12) 0%, rgba(19, 39, 74, .58) 70%, rgba(13, 31, 60, 1) 100%);
}

body.layout-2 .hero-grid {
  background-image:
    linear-gradient(rgba(142, 199, 64, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 91, 170, .08) 1px, transparent 1px);
}

body.layout-2 .btn-gold {
  background: linear-gradient(135deg, #8ec740 0%, #1c5baa 100%);
  color: #f3f9ff;
}

body.layout-2 .btn-gold:hover {
  box-shadow: 0 12px 40px rgba(28, 91, 170, .4);
}

body.layout-2 .scroll-mouse {
  border-color: rgba(142, 199, 64, .55);
}

body.layout-2 #coming-soon::before {
  background: radial-gradient(ellipse at center, rgba(28, 91, 170, .2) 0%, transparent 70%);
}

body.layout-2 .cd-num::before {
  background: rgba(142, 199, 64, .16);
}

@keyframes layout2HeroFlow {
  0% {
    background-position: 0% 45%;
  }

  50% {
    background-position: 100% 55%;
  }

  100% {
    background-position: 0% 45%;
  }
}

.particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatUp linear infinite;
  opacity: .55;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }

  8% {
    opacity: 1;
  }

  92% {
    opacity: .6;
  }

  100% {
    opacity: 0;
    transform: translateY(-110vh) scale(1.6);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 960px;
  padding: 2rem;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  padding: .4rem 1.3rem;
  margin-bottom: 2rem;
  font-family: 'Montserrat', sans-serif;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.4rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

.hero-title .gold {
  color: var(--gold);
  font-style: italic;
}

.hero-title .neon {
  color: var(--neon);
}

.hero-tagline {
  font-size: clamp(.95rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: .04em;
  margin-bottom: 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #9c7620 100%);
  color: var(--black);
  border: none;
  padding: 1rem 2.5rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  font-family: 'Montserrat', sans-serif;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, .45);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(238, 240, 248, .25);
  padding: 1rem 2.5rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  font-family: 'Montserrat', sans-serif;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 10;
  cursor: pointer;
}

.scroll-indicator span {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(201, 168, 76, .5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: wheel 2s ease-in-out infinite;
}

@keyframes wheel {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(9px);
    opacity: .2;
  }
}

/* ── 4. Stats Bar ─────────────────────────────────────────── */
.stats-bar {
  background: var(--navy-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.2rem 5rem;
  display: flex;
  justify-content: center;
  gap: 6rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-lbl {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .3rem;
}

/* ── 5. Shared Section Styles ─────────────────────────────── */
section {
  padding: 8rem 5rem;
}

.sec-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
  font-family: 'Montserrat', sans-serif;
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

.sec-sub {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
  max-width: 580px;
  line-height: 1.85;
}

.gold-line {
  width: 55px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.4rem 0;
}

.max-w {
  max-width: 1200px;
  margin: 0 auto;
}

.text-gold {
  color: var(--gold);
}

.text-neon {
  color: var(--neon);
}

.italic {
  font-style: italic;
}

/* ── 6. Coming Soon ───────────────────────────────────────── */
#coming-soon {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-card) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#coming-soon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, .06) 0%, transparent 70%);
  pointer-events: none;
}

#coming-soon>div {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.countdown-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  margin: 3.5rem 0;
  flex-wrap: wrap;
}

.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cd-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: .9;
  width: 130px;
  height: 128px;
  box-sizing: border-box;
  text-align: center;
  flex-shrink: 0;
  white-space: nowrap;
  background: var(--navy-card);
  border: 1px solid var(--border);
  padding: 0;
  position: relative;
  display: grid;
  place-items: center;
}

.cd-num::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(201, 168, 76, .08);
}

.cd-num .d {
  display: inline-block;
  width: 0.58em;
  text-align: center;
}

.cd-num .cd-value {
  display: inline-block;
  line-height: 1;
  font-variant-numeric: lining-nums tabular-nums;
  transform: translateY(-.04em);
}

.cd-lbl {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .7rem;
}

.cd-sep {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--gold);
  opacity: .45;
  margin-top: 1.5rem;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: .45
  }

  50% {
    opacity: .08
  }
}

.email-wrap {
  max-width: 480px;
  margin: 3rem auto 0;
}

.email-wrap p {
  color: var(--text-muted);
  font-size: .92rem;
  margin-bottom: 1.4rem;
  line-height: 1.7;
}

.email-form {
  display: flex;
  border: 1px solid var(--border);
}

.email-form input {
  flex: 1;
  background: rgba(255, 255, 255, .03);
  border: none;
  padding: .95rem 1.4rem;
  color: var(--text);
  font-size: .88rem;
  font-family: 'Inter', sans-serif;
  outline: none;
}

.email-form input::placeholder {
  color: var(--text-muted);
}

.email-form button {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: .95rem 1.4rem;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
}

.email-form button:hover {
  background: var(--gold-lt);
}

#email-feedback {
  margin-top: .75rem;
  font-size: .8rem;
  color: var(--neon-green);
  display: none;
}

/* ── 7. About ─────────────────────────────────────────────── */
#about {
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-imgs {
  position: relative;
  height: 580px;
}

.about-img-main {
  width: 80%;
  height: 82%;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
}

.about-img-accent {
  width: 52%;
  height: 44%;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  border: 5px solid var(--black);
  display: block;
}

.about-badge {
  position: absolute;
  top: 50%;
  left: -18px;
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--black);
  padding: 1.4rem;
  text-align: center;
  z-index: 10;
}

.about-badge strong {
  display: block;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
}

.about-badge span {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin: 2.5rem 0;
}

.feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feat-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.feat h4 {
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: .2rem;
}

.feat p {
  font-size: .78rem;
  color: var(--text-muted);
}

.info-cards {
  display: flex;
  gap: 1.3rem;
  margin-top: 2rem;
}

.info-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  padding: 1.4rem;
  flex: 1;
}

.info-card h4 {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .7rem;
}

.info-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── 8. Gallery ───────────────────────────────────────────── */
#gallery {
  background: var(--navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.g-item:nth-child(1) {
  grid-column: span 2;
}

.g-item:nth-child(4) {
  grid-column: span 2;
}

.g-item img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.25, .46, .45, .94);
  display: block;
}

.g-item:nth-child(1) img,
.g-item:nth-child(4) img {
  height: 340px;
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 15, .92) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
}

.g-item:hover .g-overlay {
  opacity: 1;
}

.g-item:hover img {
  transform: scale(1.09);
}

.g-cap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: .25rem;
}

.g-cap p {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ── 9. About Padel ───────────────────────────────────────── */
#about-padel {
  background: var(--black);
}

.padel-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 6rem;
}

.padel-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  margin-top: 2.2rem;
}

.padel-stat {
  background: var(--navy-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
}

.padel-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--neon);
}

.padel-stat-lbl {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: .3rem;
}

.rules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1200px;
  margin: 4rem auto 0;
}

.rule-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color .3s, transform .3s;
}

.rule-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.rule-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201, 168, 76, .42);
  text-shadow: 0 0 10px rgba(201, 168, 76, .22);
  line-height: 1;
  margin-bottom: .9rem;
}

.rule-card h3 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .65rem;
}

.rule-card p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── 10. FAQ ──────────────────────────────────────────────── */
#faq {
  background: var(--navy);
}

.faq-head {
  max-width: 1200px;
  margin: 0 auto 4rem;
  text-align: center;
}

.faq-head .gold-line {
  margin-left: auto;
  margin-right: auto;
}

.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 1.7rem 0;
  font-size: .98rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  transition: color .3s;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: all .35s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}

.faq-a.open {
  max-height: 350px;
  padding-bottom: 1.5rem;
}

.faq-a p {
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.85;
}

/* ── 11. Virtual Tour ─────────────────────────────────────── */
#virtual-tour {
  background: var(--black);
  text-align: center;
}

.tour-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

#panorama {
  width: 100%;
  height: 520px;
  border: 1px solid var(--border);
}

.tour-ph {
  width: 100%;
  height: 520px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  position: relative;
  overflow: hidden;
}

.tour-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(0, 212, 255, .06) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(201, 168, 76, .06) 0%, transparent 50%);
  pointer-events: none;
}

.tour-ph-icon {
  font-size: 3.8rem;
  color: var(--gold);
  opacity: .65;
  position: relative;
}

.tour-ph h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  position: relative;
}

.tour-ph p {
  color: var(--text-muted);
  max-width: 380px;
  font-size: .88rem;
  position: relative;
}

.tour-ph .btn-outline {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.tour-feats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.tour-feat {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-muted);
  font-size: .83rem;
}

.tour-feat .dot {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ── 12. Instagram ────────────────────────────────────────── */
#instagram {
  background: var(--navy);
  text-align: center;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 190px));
  justify-content: center;
  gap: 6px;
  width: 100%;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.ig-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
  display: block;
}

.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 15, .75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  opacity: 0;
  transition: opacity .3s;
}

.ig-item:hover .ig-overlay {
  opacity: 1;
}

.ig-item:hover img {
  transform: scale(1.12);
}

.ig-heart {
  color: #fff;
  font-size: 1.1rem;
}

.ig-cta {
  margin-top: 2.4rem;
  color: var(--text-muted);
  font-size: .88rem;
}

.ig-cta a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

/* ── 13. Find Us ──────────────────────────────────────────── */
#find-us {
  background: var(--black);
}

.find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.map-ph {
  width: 100%;
  height: 460px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.map-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, .04) 1px, transparent 1px);
  background-size: 45px 45px;
}

.map-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, .07) 3px, transparent 3px),
    linear-gradient(90deg, rgba(201, 168, 76, .07) 3px, transparent 3px);
  background-size: 180px 180px;
  background-position: 40px 70px;
}

.map-pin {
  font-size: 3rem;
  animation: pinBounce 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes pinBounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.map-ph>p {
  color: var(--text-muted);
  font-size: .83rem;
  z-index: 1;
}

.map-btn {
  color: var(--gold);
  text-decoration: none;
  font-size: .78rem;
  border: 1px solid var(--border);
  padding: .5rem 1.4rem;
  transition: all .3s;
  z-index: 1;
}

.map-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.c-item {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}

.c-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}

.c-text h4 {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.c-text p {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.7;
}

.landmarks-box {
  background: var(--navy-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-top: .5rem;
}

.landmarks-box h4 {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.lm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.lm-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .83rem;
  color: var(--text-muted);
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border-dim);
}

.lm-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lm-list li span:last-child {
  font-size: .78rem;
}

/* ── 14. Footer ───────────────────────────────────────────── */
footer {
  background: var(--navy-card);
  border-top: 1px solid var(--border);
  padding: 4.5rem 5rem 2.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-brand h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.75;
  max-width: 290px;
}

.footer-social {
  display: flex;
  gap: .9rem;
  margin-top: 1.5rem;
}

.soc-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: .82rem;
  transition: all .3s;
}

.soc-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .88rem;
  transition: color .3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: .78rem;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ── 15. Shine Animation ──────────────────────────────────── */
.shine {
  background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold), var(--gold-dk), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  0% {
    background-position: -200% center
  }

  100% {
    background-position: 200% center
  }
}

@keyframes logoFlipThirty {

  40%,
  88% {
    transform: rotateY(0deg);
  }

  60%,
  100% {
    transform: rotateY(360deg);
  }
}

/* ── 16. Responsive ───────────────────────────────────────── */
@media (max-width: 1100px) {

  nav,
  nav.scrolled {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  section {
    padding: 6rem 2.5rem;
  }

  .stats-bar {
    padding: 2rem 2.5rem;
    gap: 3rem;
  }

  footer {
    padding: 3.5rem 2.5rem 2rem;
  }

  .about-grid,
  .padel-intro,
  .find-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-imgs {
    height: 380px;
  }

  .about-badge {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .g-item:nth-child(1),
  .g-item:nth-child(4) {
    grid-column: span 1;
  }

  .rules {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {

  #hero {
    justify-content: flex-start;
    min-height: 760px;
    padding-top: clamp(90px, 14vh, 120px);
  }

  nav,
  nav.scrolled {
    padding-top: .85rem;
    padding-bottom: .85rem;
  }

  nav .nav-links,
  nav .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.is-hidden {
    display: none;
  }

  .mobile-nav .nav-cta {
    display: inline-block;
    min-height: 44px;
    min-width: 44px;
  }

  .mobile-nav .lang-toggle-btn {
    margin-top: .5rem;
  }

  .nav-logo img {
    height: 60px;
  }

  .hero-content {
    width: 100%;
    max-width: 680px;
    padding: 1.25rem 1.1rem 0;
  }

  .hero-badge {
    margin-bottom: 1.2rem;
  }

  .hero-title {
    line-height: 1.02;
    margin-bottom: 1.1rem;
  }

  .hero-tagline {
    margin-bottom: 1.8rem;
  }

  .hero-btns {
    gap: 1rem;
  }

  .scroll-indicator {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 1rem;
  }

  .mobile-nav a {
    font-size: 1.55rem;
    padding: .35rem .75rem;
  }

  section {
    padding: 5rem 1.5rem;
  }

  .stats-bar {
    gap: 2.5rem;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .info-cards {
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .padel-stats {
    grid-template-columns: 1fr 1fr;
  }

  .rules {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .countdown-wrap {
    gap: 1rem;
  }

  .cd-num {
    width: 72px;
    height: 72px;
    box-sizing: border-box;
    padding: 0;
  }

  .cd-sep {
    display: none;
  }
}

@media (max-width: 480px) {

  .btn-gold,
  .btn-outline {
    width: 100%;
    text-align: center;
    min-height: 44px;
  }

  .email-form {
    flex-direction: column;
  }

  .email-form input,
  .email-form button {
    width: 100%;
    min-height: 46px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }

  #hero {
    min-height: 740px;
    padding-top: clamp(84px, 12vh, 106px);
  }

  .nav-logo img {
    height: 54px;
  }

  .hero-content {
    padding-left: .85rem;
    padding-right: .85rem;
  }

  .scroll-indicator {
    margin-top: .8rem;
  }
}

/* ── Venue Photo Cards (Café & Shop) ─────────────────────── */
.venue-photo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.venue-photo-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}

.venue-photo-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.vpc-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.vpc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.venue-photo-card:hover .vpc-img-wrap img {
  transform: scale(1.06);
}

.vpc-badge {
  position: absolute;
  top: .8rem;
  right: .8rem;
  background: var(--gold);
  color: var(--black);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  font-family: 'Montserrat', sans-serif;
}

.vpc-body {
  padding: 1.3rem 1.4rem;
}

.vpc-body h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}

.vpc-body p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .venue-photo-cards {
    grid-template-columns: 1fr;
  }
}
