/* ===== ALBRIDE EVENTSERVICE - Premium Dark Theme ===== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #0f0f1a;
  --bg-tertiary: #141428;
  --bg-card: rgba(20, 20, 40, 0.6);
  --gold: #c9a84c;
  --gold-light: #e5c96e;
  --gold-dark: #a8872e;
  --gold-glow: rgba(201, 168, 76, 0.3);
  --text-primary: #f0ece2;
  --text-secondary: #b0aaa0;
  --text-muted: #6b6560;
  --dark-blue: #0d1b3e;
  --accent-blue: #1a2a5e;
  --border-color: rgba(201, 168, 76, 0.15);
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --max-width: 1300px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.mt-40 {
  margin-top: 40px;
}

/* ---------- Selection ---------- */
::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.nav-logo span {
  color: var(--text-primary);
  font-weight: 400;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: var(--transition-smooth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- SECTION ---------- */
.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}

.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-label::before {
  right: calc(100% + 14px);
}

.section-label::after {
  left: calc(100% + 14px);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1); /* Initial scale for zoom out effect */
}

/* Smooth zoom animation on background */
.hero-zoom {
  animation: bgZoomOut 20s ease-out forwards;
}

@keyframes bgZoomOut {
  from { transform: scale(1.2); }
  to { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Fade-in text animation */
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 auto 28px;
  backdrop-filter: blur(10px);
  background: rgba(201, 168, 76, 0.05);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw + 1rem, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.hero .slogan {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 500;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transition: opacity 0.5s ease;
  z-index: -1;
  opacity: 0;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--gold-glow);
}

.btn-primary .arrow {
  transition: transform 0.3s ease;
}

.btn-primary:hover .arrow {
  transform: translateX(6px);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- VERLEIH HIGHLIGHT (BIG & IMPORTANT) ---------- */
.rental-highlight {
  background: linear-gradient(135deg, var(--bg-tertiary), rgba(20, 20, 40, 0.4));
  border: 1px solid var(--gold-glow);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(10px);
}

.rental-highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.15);
}

.rental-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, var(--gold-glow), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}

.rental-highlight-content {
  position: relative;
  z-index: 2;
}

.icon-big {
  font-size: 4rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: gentleBounce 4s infinite ease-in-out;
}

@keyframes gentleBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.rental-highlight h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw + 0.5rem, 2.5rem);
  color: var(--gold-light);
  margin-bottom: 12px;
}

.rental-highlight p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-primary);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- RENTAL GRID (Verleih Stichpunkte) ---------- */
.rental-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.rental-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rental-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.rental-item:hover::before {
  opacity: 1;
}

.rental-item:hover {
  transform: translateY(-6px);
  border-color: var(--gold-glow);
  box-shadow: 0 16px 40px rgba(201, 168, 76, 0.08);
  background: var(--bg-tertiary);
}

.rental-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.rental-item:hover .rental-icon {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: scale(1.1);
}

.rental-icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.rental-item h4 {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-primary);
  font-weight: 600;
}

/* ---------- VERLEIH GALLERY (2x2 GRID) ---------- */
.verleih-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 80px;
}

.verleih-gallery-item {
  display: flex;
  flex-direction: column;
}

.verleih-gallery-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  border: 1px solid var(--border-color);
  background: var(--bg-tertiary);
}

.verleih-gallery-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: block;
}

.verleih-gallery-item:hover .verleih-gallery-img img {
  transform: scale(1.06);
}

.verleih-gallery-item:hover .verleih-gallery-img {
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
}

.verleih-gallery-caption {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--gold-light);
  text-align: center;
  margin-top: 20px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

/* ---------- CONTENT SPLIT (Text + Single Image Card) ---------- */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-split.reverse {
  direction: rtl;
}

.content-split.reverse > * {
  direction: ltr;
}

.content-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw + 0.5rem, 2.8rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.content-text .highlight {
  color: var(--gold);
}

.content-text p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.9;
}

/* Cocktail mixing animation box */
.cocktail-animation-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: inline-flex;
}

.shaker-icon {
  font-size: 2rem;
  animation: shakeAction 2s infinite ease-in-out;
}

.splash-particles {
  display: flex;
  gap: 4px;
}

.splash-particles span {
  width: 4px;
  height: 12px;
  background: var(--gold);
  border-radius: 2px;
  animation: splash 1s infinite alternate;
}
.splash-particles span:nth-child(2) { animation-delay: 0.2s; height: 16px; }
.splash-particles span:nth-child(3) { animation-delay: 0.4s; }

@keyframes shakeAction {
  0%, 100% { transform: rotate(0deg) translateX(0); }
  25% { transform: rotate(-15deg) translateX(-4px); }
  75% { transform: rotate(15deg) translateX(4px); }
}

@keyframes splash {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(-10px); opacity: 0; }
}

.cocktail-animation-box p {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-style: italic;
}

/* Interactive Card Image */
.content-images.single-image {
  display: block;
}

.interactive-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--bg-tertiary);
  aspect-ratio: 4/3;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s ease;
}

.interactive-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.interactive-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--gold-glow);
}

.interactive-card:hover img {
  transform: scale(1.05);
}

.interactive-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: border-color 0.5s ease;
  pointer-events: none;
}

.interactive-card:hover::after {
  border-color: rgba(201, 168, 76, 0.5);
}

/* ---------- BG DECORATIONS ---------- */
.bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.08;
  pointer-events: none;
}

.bg-glow.gold {
  background: var(--gold);
}

.bg-glow.blue {
  background: #1a3a8e;
}

/* ---------- SECTION DIVIDER ---------- */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

/* ---------- LEGAL PAGES ---------- */
.legal-section {
  padding: 160px 0 80px;
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw + 0.5rem, 2.8rem);
  color: var(--gold);
  margin-bottom: 30px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--text-primary);
  margin-top: 50px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-top: 30px;
  margin-bottom: 12px;
}

.legal-content p, .legal-content ul, .legal-content address {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: normal;
}

.legal-content strong {
  color: var(--text-primary);
}

.legal-content ul {
  padding-left: 20px;
  list-style-type: disc;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--text-primary);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  flex-shrink: 0;
}

.contact-detail span,
.contact-detail .contact-text,
.contact-detail .contact-text a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.contact-detail .contact-text a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo {
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

/* ---------- SCROLL ANIMATIONS (Fade-in on scroll) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- GALLERY / LIGHTBOX ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--bg-tertiary);
  min-height: 200px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item.zoom-hover:hover img {
  transform: scale(1.12);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item::before {
  content: '⤢';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 2rem;
  color: var(--gold);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 2;
}

.gallery-item:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 85%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- PARALLAX IMAGE SECTION ---------- */
.parallax-break {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: var(--bg-primary);
}

.parallax-break img {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  object-fit: cover;
  filter: brightness(0.3);
}

.parallax-break .overlay-text {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.parallax-break .overlay-text blockquote {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-style: italic;
  color: var(--gold-light);
  max-width: 700px;
  line-height: 1.4;
}

/* Floating particles */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

/* ---------- Mobile nav overlay ---------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ---------- RESPONSIVE ---------- */

/* Ensure hover effects are robust for desktop but disabled gracefully on touch devices to improve UX */
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--gold-glow);
  }
}

/* 1024px Laptop/Tablet Breakpoint */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 100px 40px;
    gap: 24px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--border-color);
  }
  .nav-links.open {
    right: 0;
  }
  .rental-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .content-split.reverse {
    direction: ltr;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* 768px Tablet Breakpoint */
@media (max-width: 768px) {
  .container {
    padding: 0 5%;
  }
  .section {
    padding: 80px 0;
  }
  .hero-content {
    padding: 0 5%;
  }
  .verleih-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* 480px Mobile Breakpoint */
@media (max-width: 480px) {
  .hero-content {
    padding: 0;
  }
  .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .rental-grid {
    grid-template-columns: 1fr;
  }
  .verleih-gallery {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .contact-form {
    padding: 24px;
  }
}
