/* 
   Premium Modernized Style: "Hundefreunde Kirchsteigfeld e.V."
   Replicating original branding, colors, and layout, but refined with 
   premium modern UI enhancements (soft shadows, pill buttons, smooth transitions).
*/

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

:root {
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Colors from the original site */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-footer: #1e293b;
  --border-color: #e2e8f0;
  
  --text-primary: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --accent-gold: #ebae16; /* Original golden-yellow */
  --accent-gold-hover: #d2990f;
  --accent-link: #0f172a;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--accent-gold-hover);
  text-decoration: underline;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 4.5rem 0;
}

/* Header Navigation */
header {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5.5rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-color);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.logo-link:hover .logo-img {
  transform: scale(1.04);
  box-shadow: 0 0 12px rgba(235, 174, 22, 0.2);
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}
.nav-item {
  position: relative;
}
.nav-link-item {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav-link-item:hover {
  color: var(--accent-gold);
  text-decoration: none;
}

/* Dropdown Menu - Slide & Fade Transition */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  list-style: none;
  min-width: 220px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-item a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}
.nav-dropdown-item a:hover {
  background-color: var(--bg-secondary);
  color: var(--accent-gold);
  text-decoration: none;
}

/* Hero Section (Text block) */
.content-section {
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}
.page-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.text-block {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 1.5rem;
  max-width: 960px;
}
.text-block strong {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  display: block;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.text-block strong:first-child {
  margin-top: 0;
}

/* Inline links in content */
.inline-link {
  color: var(--accent-gold);
  border-bottom: 1px dotted var(--accent-gold);
  font-weight: 600;
}
.inline-link:hover {
  color: var(--accent-gold-hover);
  border-bottom-color: var(--accent-gold-hover);
  text-decoration: none;
}

/* Premium Buttons & Pill Shapes */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-normal), background-color var(--transition-normal), box-shadow var(--transition-normal), color var(--transition-normal);
}
.btn-primary {
  background-color: var(--accent-gold);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(235, 174, 22, 0.25);
}
.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(235, 174, 22, 0.38);
  text-decoration: none;
}
.btn-outline {
  background-color: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold) !important;
}
.btn-outline:hover {
  background-color: var(--accent-gold);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(235, 174, 22, 0.25);
  text-decoration: none;
}

/* Accentuated Inhaltsboxen (Warm Gold) */
.info-box-gold {
  background-color: #fffbeb;
  border: 1px solid #fef08a;
  border-left: 4px solid var(--accent-gold);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  margin: 2.5rem 0;
  box-shadow: 0 4px 6px rgba(235, 174, 22, 0.02);
}

/* Image Banner Row with depth */
.banner-section {
  padding: 1rem 0 3.5rem 0;
}
.banner-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-normal);
}
.banner-wrapper:hover {
  transform: scale(1.005);
}
.banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Clean 3-Column Grid without boxed constraints (natural image ratio) */
.grid-section {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}
.columns-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 3rem;
  align-items: start; /* Let columns float naturally */
}
.card-grid-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: left; /* Keep clean left-alignment for copy */
}
.col-header {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  border-left: 3px solid var(--accent-gold);
  padding-left: 0.75rem;
}
.col-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Grid image wrapper using natural aspect ratio centered */
.grid-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  align-self: center; /* Center the image vertically within the grid row */
}
.grid-image-wrapper a {
  display: block;
}
.grid-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.grid-image-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Gallery Styles: Featured Cover View with Interactive Lightbox Album */
.gallery-grid {
  display: block;
  margin: 1.75rem 0 3.5rem 0;
}
.gallery-grid .gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  cursor: pointer;
  max-width: 100%;
}
.gallery-grid .gallery-item:nth-child(n+2) {
  display: none !important;
}
.gallery-grid .gallery-item:first-child:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.gallery-grid .gallery-img {
  width: 100%;
  height: 380px;
  max-height: 440px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-normal);
}
.gallery-grid .gallery-item:first-child:hover .gallery-img {
  transform: scale(1.025);
}

/* Universal Gallery Cover Badge */
.gallery-cover-badge,
.gallery-mobile-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(18, 22, 25, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  z-index: 2;
  transition: all var(--transition-fast);
}
.gallery-cover-badge svg,
.gallery-mobile-badge svg {
  flex-shrink: 0;
  fill: var(--accent-gold);
}
.gallery-grid .gallery-item:hover .gallery-cover-badge,
.gallery-grid .gallery-item:hover .gallery-mobile-badge {
  background: rgba(18, 22, 25, 0.96);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}
.gallery-grid .gallery-item:active .gallery-cover-badge,
.gallery-grid .gallery-item:active .gallery-mobile-badge {
  transform: scale(0.96);
}

/* Footer */
footer {
  background-color: var(--bg-footer);
  color: #ffffff;
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-text {
  font-size: 0.88rem;
  opacity: 0.7;
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  list-style: none;
}
.footer-link-item a {
  color: #ffffff;
  opacity: 0.6;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.footer-link-item a:hover {
  color: var(--accent-gold);
  opacity: 1;
  text-decoration: none;
}

/* Responsive 2-column grid utility */
.grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Mobile Menu & Burger */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
}
.burger-bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 1px;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

/* Responsive breakpoint styling */
@media (max-width: 1024px) {
  .columns-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .grid-image-wrapper {
    grid-column: span 2;
    order: -1;
  }
}

/* Time Cards for Nutzungszeiten */
.time-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 6px rgba(0,0,0,0.01);
  transition: transform var(--transition-normal);
}
.time-card:hover {
  transform: translateY(-2px);
}
.time-card-title {
  font-family: var(--font-heading);
  color: var(--accent-gold);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.time-display {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}
.time-display.large {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.time-display.medium {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .section {
    padding: 2.5rem 0;
  }
  .page-title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
  
  /* Mobile Navigation overlay */
  .burger-menu {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 5.5rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 5.5rem);
    background-color: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    
    /* Animation: Slide-down & Fade */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
    
    overflow-y: auto; /* Allow scrolling if list is long */
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-link-item {
    font-size: 1.05rem;
    padding: 0.5rem 1rem;
    display: block;
    width: 100%;
    text-align: center;
  }
  
  /* Dropdown on mobile */
  .nav-dropdown {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: var(--bg-secondary);
    border: none;
    width: 100%;
    min-width: unset;
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    padding: 0.5rem 0;
  }
  
  .nav-item.active-mobile .nav-dropdown {
    display: block;
  }
  
  .nav-dropdown-item a {
    text-align: center;
    font-size: 0.95rem;
    padding: 0.6rem 1.25rem;
  }

  .columns-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .grid-image-wrapper {
    grid-column: span 1;
    order: 0; /* Keep it in the middle flow */
  }
  .grid-2-cols {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  /* Mobile Gallery Adjustments */
  .gallery-grid {
    margin: 1.25rem 0 2.5rem 0;
  }
  .gallery-grid .gallery-img {
    height: 230px;
  }
  .gallery-cover-badge,
  .gallery-mobile-badge {
    bottom: 12px;
    right: 12px;
    padding: 7px 14px;
    font-size: 0.74rem;
  }
  
  /* Mobile Cookie Banner & Modal overrides */
  .cookie-banner {
    bottom: 1rem;
    padding: 1.25rem;
    width: 92%;
    gap: 1rem;
  }
  .cookie-banner-text {
    font-size: 0.85rem;
  }
  .cookie-banner-buttons {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  .cookie-banner-buttons .cookie-btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    font-size: 0.82rem;
  }
  .cookie-banner-buttons #cookie-btn-accept {
    order: 1;
  }
  .cookie-banner-buttons #cookie-btn-reject {
    order: 2;
  }
  .cookie-banner-buttons #cookie-btn-configure {
    order: 3;
  }
  
  .cookie-modal {
    width: 95%;
    max-height: 90vh;
  }
  .cookie-modal-header {
    padding: 1.25rem;
  }
  .cookie-modal-title {
    font-size: 1rem;
  }
  .cookie-modal-body {
    padding: 1.25rem;
    gap: 1rem;
  }
  .cookie-service-item {
    padding: 1rem;
    gap: 0.5rem;
  }
  .cookie-service-name {
    font-size: 0.9rem;
  }
  .cookie-service-desc {
    font-size: 0.78rem;
  }
  
  /* Time Card mobile overrides */
  .time-card {
    padding: 1.5rem;
  }
  .time-card-title {
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }
  .time-display.large {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }
  .time-display.medium {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
}

/* ==========================================================================
   Cookie Consent & Privacy Settings Styles
   ========================================================================== */

/* Banner */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  width: 90%;
  max-width: 600px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: transform var(--transition-normal), opacity var(--transition-normal), visibility var(--transition-normal);
}
.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}
.cookie-banner-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.cookie-banner-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 0.6rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.cookie-btn-primary {
  background-color: var(--accent-gold);
  color: #ffffff;
}
.cookie-btn-primary:hover {
  background-color: var(--accent-gold-hover);
}
.cookie-btn-outline {
  background-color: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.cookie-btn-outline:hover {
  background-color: var(--accent-gold);
  color: #ffffff;
}
.cookie-btn-text {
  background-color: transparent;
  color: var(--text-muted);
  border: none;
}
.cookie-btn-text:hover {
  color: var(--text-primary);
}

/* Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}
.cookie-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.cookie-modal {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 500px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}
.cookie-modal-overlay.show .cookie-modal {
  transform: translateY(0);
}
.cookie-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie-modal-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}
.cookie-modal-close:hover {
  color: var(--text-primary);
}
.cookie-modal-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cookie-modal-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.cookie-service-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background-color: var(--bg-secondary);
}
.cookie-service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie-service-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}
.cookie-service-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Switch Toggle Styling */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: .3s;
  border-radius: 24px;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}
input:checked + .cookie-slider {
  background-color: var(--accent-gold);
}
input:checked + .cookie-slider:before {
  transform: translateX(20px);
}

/* YouTube Video Placeholder Card */
.video-consent-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  box-sizing: border-box;
}
.video-consent-icon {
  width: 54px;
  height: 54px;
  background-color: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}
.video-consent-icon svg {
  fill: #ffffff;
  width: 20px;
  height: 20px;
}
.video-consent-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.video-consent-text {
  font-size: 0.78rem;
  color: #cbd5e1;
  max-width: 380px;
  margin: 0 0 1rem 0;
  line-height: 1.4;
}
.video-consent-btn {
  background-color: var(--accent-gold);
  color: #ffffff;
  border: none;
  padding: 0.5rem 1.15rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.video-consent-btn:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-1px);
}

/* --- GLightbox Custom Overrides --- */
.gallery-item a.lightbox {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

html.glightbox-open {
  overflow-y: scroll;
}
.lightbox-active {
  position: fixed;
  width: calc(100% + 6px);
}
.goverlay {
  background: rgba(0, 0, 0, 0.85);
}
.gscrollbar-fixer {
  margin-right: unset !important;
}
@media (min-width: 769px) {
  .glightbox-mobile .glightbox-container .gslide-description {
    max-height: 30vh;
  }
}
.gslide-description {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
  overflow: auto;
  max-height: 20%;
  word-break: keep-all;
  overflow-wrap: anywhere;
  word-wrap: break-word;
  -ms-word-wrap: break-word;
  -ms-word-break: break-all;
}
.glightbox-clean .gdesc-inner {
  padding: 0 20px;
}
.glightbox-clean .gslide-description,
.glightbox-modern .gslide-description {
  background-color: rgba(255, 255, 255, 0.9);
}
.gslide-description .custom-link {
  text-decoration: none;
  color: #3c9ddb;
}
.gslide-media {
  padding: 16px;
  background: white;
  border-radius: 16px;
  align-self: center;
}
.glightbox-clean .gslide-media {
  box-shadow: none;
}
@media (min-width: 769px) {
  .glightbox-clean .gslide-media {
    box-shadow: none;
  }
}
.glightbox-clean .gslide-title {
  font-weight: 600;
  margin: 8px 0;
}
.glightbox-clean .gslide-desc {
  white-space: pre-line;
  margin-bottom: 4px;
}
.gslide-media img {
  max-height: 70vh;
  min-width: unset;
  max-width: 80vw;
}
.gslide-media img.zoomable {
  pointer-events: none;
  cursor: default;
}
.gclose,
.gnext,
.gprev {
  background-color: transparent !important;
}
.gclose.disabled,
.gnext.disabled,
.gprev.disabled {
  opacity: 0;
}



