/* =====================================================
   TAP Eddigehausen – Moderne Website
   Design: Warm Teal + Amber + Creme
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --clr-primary: #1a5c52;
  /* Teal dunkel */
  --clr-primary-lt: #2a7a6e;
  /* Teal hell */
  --clr-accent: #c8862a;
  /* Bernstein/Gold */
  --clr-accent-lt: #e8a94a;
  /* Helles Gold */
  --clr-bg: #f7f3ee;
  /* Warmes Creme */
  --clr-bg-alt: #efe9e0;
  /* Etwas dunkleres Creme */
  --clr-surface: #ffffff;
  --clr-text: #2c2c2c;
  --clr-text-muted: #6b6b6b;
  --clr-border: #d9d0c4;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, .16);

  --nav-height: 72px;
  --max-w: 1140px;

  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--clr-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--clr-accent);
}

/* ── Utility ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--clr-bg-alt);
}

.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}

.btn-primary:hover {
  background: var(--clr-accent-lt);
  border-color: var(--clr-accent-lt);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 134, 42, .35);
}

.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.btn-outline:hover {
  background: var(--clr-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}

.btn-white:hover {
  background: rgba(255, 255, 255, .25);
  color: #fff;
  transform: translateY(-2px);
}

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 32px;
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

#navbar.scrolled .nav-logo-text {
  color: var(--clr-primary);
}

#navbar.scrolled .nav-logo {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: transparent;
}

#navbar.scrolled .nav-logo:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

#navbar.scrolled .nav-links a {
  color: var(--clr-text);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition);
}

.nav-logo:hover {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  transition: color var(--transition);
}

.nav-logo-sub {
  font-size: .65rem;
  font-weight: 400;
  opacity: .85;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  transition: all var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  border-radius: 2px;
  transition: width var(--transition);
}

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

.nav-links a:hover {
  color: var(--clr-accent-lt);
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 20px !important;
  background: var(--clr-accent);
  color: #fff !important;
  border-radius: var(--radius-sm);
}

.nav-cta:hover {
  background: var(--clr-accent-lt) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

#navbar.scrolled .hamburger span {
  background: var(--clr-text);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: var(--nav-height);
  right: -100%;
  width: min(320px, 85vw);
  height: calc(100vh - var(--nav-height));
  background: var(--clr-surface);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: right var(--transition);
  padding: 32px 24px;
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav ul a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--clr-text);
  font-size: 1rem;
  transition: all var(--transition);
}

.mobile-nav ul a:hover {
  background: var(--clr-bg);
  color: var(--clr-primary);
}

.mobile-nav-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--clr-border);
}

.mobile-nav-footer p {
  font-size: .85rem;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 998;
  backdrop-filter: blur(2px);
}

.overlay.open {
  display: block;
}


/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 40, 35, .75) 0%,
      rgba(26, 92, 82, .55) 30%,
      rgba(10, 40, 35, .30) 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 24px;
}

.hero-badge span {
  color: var(--clr-accent-lt);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.hero-title em {
  font-style: normal;
  color: var(--clr-accent-lt);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  opacity: .9;
  margin-bottom: 36px;
  max-width: 520px;
}

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

.hero-chips {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 100px;
  padding: 8px 18px;
  color: rgba(255, 255, 255, .92);
  font-size: .82rem;
  font-weight: 500;
}

.hero-chip-icon {
  font-size: 1rem;
}

.scroll-cue {
  position: absolute;
  bottom: 120px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .6);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  cursor: pointer;
}

.scroll-cue::before {
  content: '';
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .6));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(.5);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}


/* ── ÖFFNUNGSZEITEN BANNER ── */
.hours-banner {
  background: var(--clr-primary);
  color: #fff;
  padding: 24px 0;
}

.hours-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hours-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hours-icon {
  font-size: 1.4rem;
  opacity: .85;
}

.hours-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .7;
}

.hours-time {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.hours-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .2);
}


/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 480px;
  box-shadow: var(--shadow-lg);
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--clr-accent);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge-float .big-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-float .small-text {
  font-size: .75rem;
  opacity: .9;
  display: block;
  margin-top: 4px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--clr-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-feature-text h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 2px;
}

.about-feature-text p {
  font-size: .8rem;
  color: var(--clr-text-muted);
}


/* ── EVENTS ── */
.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.event-card {
  background: var(--clr-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary-lt);
}

.event-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.event-card-date-strip {
  background: var(--clr-primary);
  color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
}

.event-card-date-strip .date-icon {
  opacity: .8;
}

.event-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.event-card-desc {
  font-size: .85rem;
  color: var(--clr-text-muted);
  flex: 1;
}

.event-card-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--clr-bg-alt);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.event-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 600;
  background: var(--clr-bg-alt);
  color: var(--clr-primary);
}

/* Alle Veranstaltungen Liste */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.event-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 20px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: all var(--transition);
}

.event-row:hover {
  border-color: var(--clr-primary-lt);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.event-row-date {
  font-weight: 600;
  color: var(--clr-primary);
  font-size: .9rem;
}

.event-row-name {
  font-size: .95rem;
  color: var(--clr-text);
}

.event-row-name a {
  font-weight: 500;
}

.event-row-by {
  font-size: .8rem;
  color: var(--clr-text-muted);
  white-space: nowrap;
}


/* ── GALLERY / VERMIETUNG ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-bottom: 48px;
}

.gallery-cell {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-cell:hover img {
  transform: scale(1.05);
}

.gallery-cell:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: 420px;
}

.gallery-cell:not(:first-child) {
  height: 200px;
}

.gallery-overlay-text {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  font-weight: 500;
  font-size: .85rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-cell:hover .gallery-overlay-text {
  opacity: 1;
}

.rental-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.rental-info-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.rental-info-card:hover {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(200, 134, 42, .1);
}

.rental-info-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.rental-info-card h3 {
  font-family: var(--font-heading);
  color: var(--clr-primary);
  margin-bottom: 8px;
}

.rental-info-card p {
  font-size: .85rem;
  color: var(--clr-text-muted);
}


/* ── MAP ── */
.map-section {
  padding: 0;
}

.map-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.map-info {
  background: var(--clr-primary);
  color: #fff;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.map-info .section-label {
  color: var(--clr-accent-lt);
}

.map-info .section-title {
  color: #fff;
}

.map-address-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.map-address-icon {
  font-size: 1.2rem;
  opacity: .8;
  margin-top: 2px;
  flex-shrink: 0;
}

.map-address-item h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .7;
  margin-bottom: 4px;
}

.map-address-item p {
  opacity: .9;
  line-height: 1.5;
}

.map-address-item a {
  color: var(--clr-accent-lt);
  text-decoration: none;
}

.map-frame {
  height: 460px;
  position: relative;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


/* ── MITMACHEN CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-lt) 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' fill-opacity='0.04'%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");
}

.cta-section .section-title {
  color: #fff;
  margin-bottom: 16px;
}

.cta-section .section-subtitle {
  color: rgba(255, 255, 255, .8);
  max-width: 540px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}


/* ── FOOTER ── */
footer {
  background: #111;
  color: rgba(255, 255, 255, .75);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .6);
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--clr-accent-lt);
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  margin-bottom: 8px;
}

.footer-hours-row .day {
  color: rgba(255, 255, 255, .6);
}

.footer-hours-row .time {
  color: rgba(255, 255, 255, .9);
  font-weight: 500;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, .5);
  font-size: .8rem;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, .9);
}


/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: .8;
  transition: opacity var(--transition);
}

.lightbox-close:hover {
  opacity: 1;
}


/* ── ANIMATE ON SCROLL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s, transform .7s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img {
    height: 360px;
  }

  .about-badge-float {
    bottom: 20px;
    right: 20px;
  }

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

  .gallery-cell:first-child {
    height: 320px;
  }

  .gallery-cell:not(:first-child) {
    height: 180px;
  }

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

  .map-inner {
    grid-template-columns: 1fr;
  }

  .map-frame {
    height: 300px;
  }

  .rental-info {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .section {
    padding: 64px 0;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .hero-chips {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .hours-inner {
    gap: 20px;
  }

  .hours-divider {
    display: none;
  }

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

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

  .event-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .event-row-by {
    display: none;
  }

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

  .gallery-cell:first-child {
    grid-column: span 1;
    grid-row: span 1;
    height: 240px;
  }

  .gallery-cell:not(:first-child) {
    height: 200px;
  }

  .rental-info {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .events-header {
    flex-direction: column;
    align-items: flex-start;
  }
}