:root {
  --forest-deep: #064e3b;      
  --forest-dark: #0f5132;
  --forest-mid: #146c43;
  --forest-light: #198754;
  --forest-sage: #81c784;
  --dusty-green: #cbdcd0;      
  --dusty-green-dark: #b5c8ba; 
  --accent-warm: #f75f2c;      
  --accent-warm-light: #fa7c50; 
  --gold-accent: var(--accent-warm); 
  --gold-light: var(--accent-warm-light); 
  --wood-warm: #cca281;       
  --wood-dark: #8d6c54;       
  --mist-white: #f8fafc;
  --eucalyptus-light: #f3f4f1;
  --text-dark: #1f2937;       
  --text-light: #ffffff;      
  
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --border-radius-lg: 24px;
  --border-radius-md: 12px;
  --border-radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  background-color: var(--mist-white);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 18px; 
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); font-weight: 600; letter-spacing: -0.02em; }
a, button { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--forest-deep); }
::-webkit-scrollbar-thumb { background: var(--forest-light); border-radius: 5px; }

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: #ffffff; border-bottom: 1px solid rgba(16, 43, 30, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015); transition: var(--transition-smooth);
}
header.scrolled { padding: 8px 0; }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; }
.logo-container { display: flex; align-items: center; height: 98px; transition: var(--transition-smooth); }
header.scrolled .logo-container { height: 72px; }
.logo-img { height: 100%; width: auto; display: block; }

.nav-menu { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-link { color: var(--text-dark); font-weight: 500; font-size: 17px; letter-spacing: 0.03em; position: relative; padding: 8px 0; transition: var(--transition-smooth); opacity: 0.85; }
.nav-link:hover, .nav-link.active { opacity: 1; color: var(--gold-accent); }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--gold-accent); transition: var(--transition-smooth); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }

.header-btn-filled, .header-btn-outlined {
  display: inline-flex !important; align-items: center !important; justify-content: center !important;
  font-weight: 700 !important; padding: 12px 24px !important; border-radius: 50px !important;
  text-transform: uppercase !important; font-size: 13px !important; letter-spacing: 0.06em !important;
  transition: var(--transition-smooth) !important; cursor: pointer !important; height: 44px !important;
  font-family: var(--font-sans) !important; border: none !important;
}
.header-btn-filled { background-color: var(--dusty-green) !important; color: var(--forest-deep) !important; }
.header-btn-filled:hover { background-color: var(--forest-deep) !important; color: var(--text-light) !important; }
.header-btn-outlined { background-color: transparent !important; color: var(--forest-deep) !important; border: 2px solid var(--forest-deep) !important; }
.header-btn-outlined:hover { background-color: var(--forest-deep) !important; color: var(--text-light) !important; }

.mobile-menu-toggle { display: none; background: transparent; border: none; cursor: pointer; flex-direction: column; gap: 6px; width: 48px; height: 48px; justify-content: center; align-items: center; }
.mobile-menu-toggle span { display: block; width: 26px; height: 3px; background-color: var(--forest-deep); border-radius: 3px; }

/* ==========================================================================
   GLOBAL BUTTONS
   ========================================================================== */
.btn-primary, .form-submit-btn {
  background: var(--dusty-green); color: var(--forest-deep); border: 2px solid var(--dusty-green);
  padding: 14px 36px; border-radius: 50px; font-weight: 700; font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; transition: var(--transition-smooth);
}
.btn-primary:hover, .form-submit-btn:hover { background: var(--forest-deep); color: var(--text-light); border-color: var(--forest-deep); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(6, 78, 59, 0.15); }
.btn-secondary { background: transparent; color: var(--forest-deep); border: 2px solid var(--forest-deep); padding: 14px 36px; border-radius: 50px; font-weight: 700; font-size: 16px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition-smooth); }
.btn-secondary:hover { background: var(--dusty-green); transform: translateY(-3px); }

/* ==========================================================================
   HERO SECTION (FORSIDE)
   ========================================================================== */
.hero-section { position: relative; height: 100vh; min-height: 700px; background-color: var(--forest-deep); display: flex; align-items: center; justify-content: center; color: var(--text-light); overflow: hidden; }
.hero-content { max-width: 900px; text-align: center; padding: 0 24px; position: relative; z-index: 4; }
.hero-subtitle { font-family: var(--font-sans); font-weight: 700; color: var(--gold-accent); text-transform: uppercase; letter-spacing: 0.32em; font-size: 15px; margin-bottom: 24px; display: inline-block; padding: 9px 16px 9px 20px; border-radius: 999px; background: rgba(8, 28, 19, 0.44); border: 1px solid rgba(255, 255, 255, 0.16); backdrop-filter: blur(8px); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16); text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35); }
.hero-title { font-size: 72px; line-height: 1.1; margin-bottom: 24px; }
.hero-description { font-size: 20px; max-width: 680px; margin: 0 auto 40px auto; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; }
.hero-section .btn-secondary { color: var(--text-light); border-color: var(--text-light); }
.hero-section .btn-secondary:hover { background: rgba(255, 255, 255, 0.15); }
.hero-video-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; pointer-events: none; }
.hero-scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--forest-sage); gap: 12px; z-index: 5; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--forest-sage), transparent); position: relative; overflow: hidden; }
.scroll-line::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 50%; background: var(--gold-accent); animation: scrollDown 2s ease-in-out infinite; }
@keyframes scrollDown { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%); z-index: 3; }

/* ==========================================================================
   UNDERSIDER & LAYOUT (page.php)
   ========================================================================== */
.content-page { background: var(--mist-white); min-height: 100vh; }
.page-hero { min-height: 560px; padding: 150px 24px 80px; display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 56px; align-items: center; max-width: 1220px; margin: 0 auto; }
.page-hero-media { height: 420px; border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: 0 20px 48px rgba(16, 43, 30, 0.12); background: var(--forest-deep); }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero-copy h1 { color: var(--forest-deep); font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1; margin-bottom: 22px; text-align: left !important; }
.page-hero-copy p, .page-body p { color: var(--text-dark); font-size: 20px; line-height: 1.75; opacity: 0.88; text-align: left; }
.premium-page-intro { max-width: 760px; margin: 18px auto 0; color: var(--text-dark); font-size: 20px; line-height: 1.7; text-align: center; opacity: 0.82; }
.page-body-section { padding: 0 24px 70px; }
.page-body { max-width: 860px; margin: 0 auto; }
.page-body p { margin-bottom: 22px; }
.page-feature-section { padding: 70px 24px 110px; }

/* Kontakt-panel for Contact Page */
.contact-panel { background: #fff; border: 1px solid rgba(16, 43, 30, 0.08); border-radius: var(--border-radius-lg); padding: 36px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; box-shadow: 0 16px 42px rgba(16, 43, 30, 0.06); }
.contact-panel a, .contact-panel p { color: var(--forest-deep); font-size: 20px; font-weight: 700; transition: var(--transition-smooth); }
.contact-panel a:hover { color: var(--gold-accent); }
.contact-form-card { background: #ffffff; border: 1px solid rgba(16, 43, 30, 0.08); border-radius: var(--border-radius-lg); padding: 34px; box-shadow: 0 16px 42px rgba(16, 43, 30, 0.05); }
.contact-form-card .form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.contact-form-card textarea { resize: vertical; min-height: 150px; }
.form-status { margin-top: 16px; color: var(--forest-deep); font-size: 15px; font-weight: 600; }
.contact-split { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); gap: 28px; align-items: start; }
.contact-panel-stacked { grid-template-columns: 1fr; height: 100%; }
.contact-map-card { background: #fff; border: 1px solid rgba(16, 43, 30, 0.08); border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: 0 16px 42px rgba(16, 43, 30, 0.06); }
.contact-map-card iframe { width: 100%; min-height: 360px; border: 0; display: block; filter: saturate(0.9) contrast(0.95); }
.contact-map-details { padding: 24px; display: grid; gap: 20px; }
.contact-map-details span { display: block; margin-bottom: 8px; color: var(--gold-accent); font-size: 12px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; }
.contact-map-details a,
.contact-map-details p { margin: 0; color: var(--forest-deep); font-size: 17px; font-weight: 700; line-height: 1.45; overflow-wrap: anywhere; }
.contact-map-details a:hover { color: var(--gold-accent); }

/* ==========================================================================
   SECTIONS & EXPERIENCE (Forside)
   ========================================================================== */
section { padding: 120px 24px; }
.section-dark { background-color: var(--eucalyptus-light); }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-tag { color: var(--gold-accent); text-transform: uppercase; font-size: 14px; font-weight: 600; letter-spacing: 0.3em; margin-bottom: 16px; display: block; text-align: center; }
#experience .section-tag { text-align: left !important; }
.section-title { font-size: 46px; margin-bottom: 24px; line-height: 1.2; text-align: center; }
.section-description { font-size: 20px; max-width: 680px; margin: 0 auto 60px auto; text-align: center; opacity: 0.85; }

.challenge-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center; }
.challenge-text { text-align: left; }
.challenge-text p { font-size: 19px; margin-bottom: 20px; }
.about-action-links { margin-top: 34px !important; gap: 22px; align-items: center; flex-wrap: wrap; }
.about-action-links .btn-primary,
.about-action-links .btn-secondary { min-width: 230px; padding-left: 30px; padding-right: 30px; }
.challenge-side { display: grid; gap: 18px; }
.opening-hours-card { padding: 20px; border: 1px solid rgba(247, 95, 44, 0.22); border-radius: var(--border-radius-md); background: rgba(255,255,255,0.9); box-shadow: 0 14px 34px rgba(16,43,30,0.08); }
.opening-hours-card h3 { margin: 0 0 12px; color: var(--forest-deep); font-size: 1rem; }
.opening-hours-row { display: grid; grid-template-columns: 128px minmax(0,1fr); gap: 14px; padding: 9px 0; border-top: 1px solid rgba(16,43,30,0.1); align-items: baseline; }
.opening-hours-row:first-of-type { border-top: 0; }
.opening-hours-row span { color: var(--gold-accent); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.opening-hours-row strong { color: var(--forest-deep); font-size: 0.88rem; line-height: 1.45; }
.opening-hours-main strong { color: var(--text-dark); }
.challenge-card { background: white; border: 1px solid rgba(16, 43, 30, 0.06); border-radius: var(--border-radius-lg); padding: 30px 34px; text-align: left; }
.challenge-card-title { font-size: 1.25rem; margin-bottom: 14px; }
.challenge-list { list-style: none; }
.challenge-list li { margin-bottom: 12px; padding-left: 28px; position: relative; font-size: 0.94rem; line-height: 1.45; }
.challenge-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--gold-accent); font-weight: bold; }

/* ==========================================================================
   GALLERY & LIGHTBOX
   ========================================================================== */
.gallery-filters { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; justify-content: center; }
.filter-btn { background: transparent; border: 1px solid rgba(16, 43, 30, 0.15); padding: 10px 24px; border-radius: 50px; cursor: pointer; transition: var(--transition-smooth); font-weight: 500;}
.filter-btn.active { background: var(--forest-mid); color: var(--text-light); border-color: var(--forest-mid); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.gallery-item { position: relative; border-radius: var(--border-radius-lg); overflow: hidden; height: 320px; background: #fff; cursor: pointer; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; transition: var(--transition-smooth); }
.gallery-item:hover .gallery-img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; padding: 30px; background: linear-gradient(to top, rgba(10, 27, 18, 0.9) 0%, rgba(10, 27, 18, 0.2) 70%, transparent); color: var(--text-light); display: flex; flex-direction: column; justify-content: flex-end; opacity: 0; transition: var(--transition-smooth); text-align: left; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-category { font-size: 12px; text-transform: uppercase; color: var(--gold-accent); letter-spacing: 0.2em; margin-bottom: 8px; font-weight: 600; }
.gallery-item-title { font-size: 18px; margin-bottom: 4px; font-weight: 600; }
.gallery-item-desc { font-size: 13px; opacity: 0.85; font-weight: 300; line-height: 1.5; }
.section-actions { display: flex; justify-content: center !important; margin-top: 54px !important; width: 100%; }

.lightbox-overlay { position: fixed; inset: 0; z-index: 3000; background: rgba(10, 27, 18, 0.94); display: none; align-items: center; justify-content: center; padding: 26px; }
.lightbox-overlay.active { display: flex; }
.lightbox-frame { max-width: min(1080px, 92vw); max-height: 88vh; display: grid; gap: 14px; color: #fff; text-align: center; }
.lightbox-image { max-width: 100%; max-height: 72vh; object-fit: contain; border-radius: 10px; box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4); }
.lightbox-title { font-family: var(--font-serif); font-size: 24px; }
.lightbox-desc { color: rgba(255, 255, 255, 0.78); font-size: 15px; }
.lightbox-btn { position: fixed; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.1); color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 26px; display: flex; align-items: center; justify-content: center; }
.lightbox-btn:hover { background: rgba(255,255,255,.3); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   INLINE BOOKING HUB
   ========================================================================== */
.booking-station-card { background: #ffffff; border-radius: var(--border-radius-lg); border: 1px solid rgba(16, 43, 30, 0.06); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03); max-width: 900px; margin: 0 auto; padding: 50px 40px; }
.booking-inline-form { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.booking-form-left, .booking-form-right { display: flex; flex-direction: column; }
.booking-form-right { border-left: 1px solid rgba(16, 43, 30, 0.08); padding-left: 40px; }
.booking-visitor-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; padding: 8px; background: #ffffff; border: 1px solid rgba(16, 43, 30, 0.12); border-radius: 22px; box-shadow: 0 12px 30px rgba(16, 43, 30, 0.06); }
.booking-visitor-toggle button { min-height: 74px; border: 2px solid rgba(16, 43, 30, 0.16); border-radius: 18px; background: #f8faf8; color: var(--forest-deep); font: inherit; cursor: pointer; transition: var(--transition-smooth); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; text-align: center; }
.booking-visitor-toggle button span { font-size: 15px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.1; }
.booking-visitor-toggle button small { font-size: 11px; font-weight: 700; color: var(--forest-sage); letter-spacing: 0; text-transform: none; }
.booking-visitor-toggle button.active { background: var(--forest-deep); border-color: var(--forest-deep); color: #fff; box-shadow: 0 14px 28px rgba(6, 78, 59, 0.18); }
.booking-visitor-toggle button.active small { color: rgba(255, 255, 255, 0.78); }
.ticket-quantity-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(16, 43, 30, 0.06); }
.ticket-quantity-row:last-of-type { border-bottom: none; margin-bottom: 10px; }
.qty-label-wrap strong { display: block; font-size: 17px; text-align: left; }
.qty-label-wrap span { font-size: 14px; color: var(--forest-light); font-weight: 600; display: block; text-align: left; }
.qty-controls { display: flex; align-items: center; gap: 16px; }
.qty-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--forest-mid); background: #ffffff; color: var(--forest-deep); font-size: 22px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; user-select: none; transition: var(--transition-smooth); }
.qty-btn:hover { background: var(--forest-mid); color: #ffffff; }
.qty-val { font-size: 19px; font-weight: 700; min-width: 28px; text-align: center; }

.custom-booking-box { background: var(--mist-white); border-left: 4px solid var(--gold-accent); border-radius: var(--border-radius-md); padding: 24px; margin-top: 40px; text-align: left; }
.custom-booking-box p { font-size: 15px; color: var(--text-dark); line-height: 1.6; margin: 0; }
.custom-booking-box a { color: var(--gold-accent); font-weight: 600; text-decoration: underline; transition: var(--transition-smooth); }
.custom-booking-box a:hover { color: var(--gold-light); }

.form-group { margin-bottom: 20px; text-align: left; }
.form-label { display: block; font-size: 14px; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; color: var(--forest-mid); }
.form-control { width: 100%; background: var(--mist-white); border: 1px solid rgba(16, 43, 30, 0.1); border-radius: var(--border-radius-md); padding: 14px 18px; outline: none; color: var(--text-dark); font-family: var(--font-sans); font-size: 16px; transition: var(--transition-smooth); }
.form-control:focus { border-color: var(--forest-light); box-shadow: 0 0 10px rgba(44, 110, 73, 0.15); background: white; }
.booking-summary { margin: 8px 0 18px; padding: 16px; border: 1px solid rgba(44, 110, 73, 0.16); border-radius: var(--border-radius-sm); background: #f6faf7; text-align: left; }
.booking-summary-row { display: flex; justify-content: space-between; margin-bottom: 6px; }
.booking-summary-row.total { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(44, 110, 73, 0.16); font-size: 18px; font-weight: 800; }

/* ==========================================================================
   DONATION WIDGET & MODALS
   ========================================================================== */
.donation-box { background: white; border: 1px solid rgba(16, 43, 30, 0.06); border-radius: var(--border-radius-lg); max-width: 760px; margin: 0 auto; padding: 50px 40px; }
.donation-type-toggle { display: flex; justify-content: center; gap: 12px; margin-bottom: 30px; flex-wrap: wrap; }
.business-toggle-wrap { display: inline-flex; align-items: center; gap: 8px; }
.challenge-info-icon { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(16, 43, 30, 0.18); background: #fff; color: var(--forest-mid); font-weight: 800; cursor: pointer; transition: var(--transition-smooth); }
.challenge-info-icon:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--forest-deep); transform: translateY(-1px); }
.type-toggle-btn { background: rgba(16, 43, 30, 0.05); border: 1px solid rgba(16, 43, 30, 0.1); padding: 10px 24px; border-radius: 50px; font-size: 14px; font-weight: 600; text-transform: uppercase; cursor: pointer; transition: var(--transition-smooth); color: var(--text-dark); }

.type-toggle-btn[data-type="individual"].active,
.type-toggle-btn[data-header-donation-type="individual"].active { background: var(--forest-mid); color: white; border-color: var(--forest-mid); box-shadow: 0 4px 15px rgba(24, 66, 45, 0.15); }

.type-toggle-btn[data-type="business"].active,
.type-toggle-btn[data-header-donation-type="business"].active { background: var(--gold-accent); color: white; border-color: var(--gold-accent); box-shadow: 0 4px 15px rgba(247, 95, 44, 0.25); }

.donation-presets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; justify-content: center; max-width: 600px; margin: 30px auto 20px auto; }
.preset-btn { background: transparent; border: 1px solid rgba(16, 43, 30, 0.15); padding: 12px 24px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: var(--transition-smooth); font-size: 15px; min-height: 48px; color: var(--text-dark); }
.preset-btn:hover, .preset-btn.active { background: var(--forest-mid); color: white; border-color: var(--forest-mid); box-shadow: 0 4px 15px rgba(24, 66, 45, 0.15); }
.custom-amount-container { max-width: 480px; margin: 0 auto 30px auto; position: relative; }
.custom-amount-input { width: 100%; background: var(--mist-white); border: 1px solid rgba(16, 43, 30, 0.12); border-radius: 50px; padding: 16px 20px 16px 45px; font-size: 18px; font-weight: 600; outline: none; transition: var(--transition-smooth); color: var(--text-dark); }
.currency-symbol { position: absolute; left: 24px; top: 50%; transform: translateY(-50%); font-size: 20px; font-weight: 600; color: var(--forest-light); }

.donate-submit-btn { background: var(--gold-accent); color: white; width: 100%; max-width: 420px; border: none; padding: 16px; border-radius: 50px; font-weight: 700; text-transform: uppercase; font-size: 15px; letter-spacing: 0.08em; cursor: pointer; transition: var(--transition-smooth); display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
.donate-submit-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(247, 95, 44, 0.4); }

.modal-overlay { position: fixed; inset: 0; background: rgba(10, 27, 18, 0.95); backdrop-filter: blur(16px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: var(--transition-smooth); }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-container { background: white; width: 90%; max-width: 650px; border-radius: var(--border-radius-lg); padding: 50px; position: relative; transform: translateY(30px); transition: var(--transition-smooth); text-align: left; }
.modal-overlay.active .modal-container { transform: translateY(0); }
.modal-close-btn { position: absolute; top: 24px; right: 24px; background: transparent; border: none; font-size: 24px; cursor: pointer; color: var(--forest-sage); transition: var(--transition-smooth); }
.modal-close-btn:hover { color: var(--forest-deep); transform: rotate(90deg); }
.modal-title { font-size: 32px; margin-bottom: 16px; color: var(--forest-deep); }
.modal-body { margin-bottom: 30px; font-size: 16px; line-height: 1.7; }

/* ==========================================================================
   NEWS & SPONSOR TICKER
   ========================================================================== */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 32px; }
.news-card { background: white; border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02); border: 1px solid rgba(16, 43, 30, 0.04); display: block; transition: var(--transition-smooth); }
.news-card:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08); }
.news-img-container { height: 220px; overflow: hidden; }
.news-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
.news-card:hover .news-img { transform: scale(1.05); }
.news-meta { padding: 30px 30px 10px 30px; display: flex; gap: 16px; font-size: 13px; color: var(--forest-sage); text-transform: uppercase; font-weight: 500; }
.news-title { padding: 0 30px 12px 30px; font-size: 22px; line-height: 1.3; transition: var(--transition-smooth); color: var(--text-dark); }
.news-card:hover .news-title { color: var(--forest-light); }
.news-excerpt { padding: 0 30px 30px 30px; font-size: 16px; color: var(--text-dark); opacity: 0.8; }

.sponsor-ticker-section { background-color: #ffffff; padding: 60px 0; border-top: 1px solid rgba(16, 43, 30, 0.06); overflow: hidden; }
.sponsor-ticker-title { text-align: center; font-size: 15px; text-transform: uppercase; color: var(--forest-light); letter-spacing: 0.2em; font-weight: 700; margin-bottom: 30px; }
.ticker-wrap { display: flex; width: 100%; }
.ticker-track { display: flex; gap: 60px; align-items: center; width: max-content; animation: infiniteLogoScroll 35s linear infinite; white-space: nowrap; }
.ticker-logo-link { display: inline-flex; align-items: center; flex: 0 0 auto; }
.ticker-logo-item { height: 68px; width: auto; max-width: 210px; object-fit: contain; opacity: 0.9; filter: none; transition: var(--transition-smooth); }
.ticker-logo-item:hover { opacity: 1; filter: none; }
@keyframes infiniteLogoScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer { background: var(--forest-deep); color: var(--text-light); padding: 90px 24px 50px; border-top: 4px solid var(--gold-accent); }
.footer-newsletter-band { display: none; }
.footer-logo { display: inline-flex; align-items: center; margin-bottom: 20px; text-decoration: none; }
.footer-logo img { width: min(100%, 250px); height: auto; display: block; border-radius: 4px; }
.footer-newsletter-form { margin: 16px 0 0; display: grid; grid-template-columns: 1fr; gap: 10px; align-items: center; }
.footer-newsletter-form input { width: 100%; min-height: 48px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 14px; padding: 0 15px; font: inherit; font-size: 14px; color: #fff; background: rgba(255, 255, 255, 0.08); }
.footer-newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.58); }
.footer-newsletter-form button { min-width: 0; min-height: 48px; padding: 0 16px; border-radius: 14px; width: 100%; }
.footer-grid { max-width: 1200px; margin: 0 auto 60px; display: grid; grid-template-columns: 1.35fr 0.9fr 0.8fr 1.1fr; gap: 42px; }
.footer-desc { max-width: 340px; text-align: left; font-size: 16px; opacity: 0.75; line-height: 1.8; }
.footer-title { font-size: 19px; margin-bottom: 24px; position: relative; padding-bottom: 8px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background-color: var(--gold-accent); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; text-align: left; }
.footer-link { font-size: 16px; opacity: 0.8; transition: var(--transition-smooth); }
.footer-link:hover { opacity: 1; color: var(--gold-accent); padding-left: 6px; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 40px; border-top: 1px solid rgba(255, 255, 255, 0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; font-size: 14px; color: var(--forest-sage); }
.slowrain-link { color: var(--gold-accent); font-weight: 500; transition: var(--transition-smooth); }
.slowrain-link:hover { color: var(--gold-light); text-decoration: underline; }

.footer-socials { display: flex; gap: 10px; margin-top: 14px; }
.social-icon { width: 38px; height: 38px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 50%; color: var(--gold-accent); display: inline-flex; align-items: center; justify-content: center; transition: var(--transition-smooth); background: rgba(255, 255, 255, 0.04); text-decoration: none; }
.social-icon:hover { background: var(--gold-accent); border-color: var(--gold-accent); color: var(--forest-deep); transform: translateY(-2px); }

.social-icon svg { width: 18px !important; height: 18px !important; min-width: 18px !important; max-width: 18px !important; display: block !important; fill: currentColor; }
.payment-badge svg { width: 16px !important; height: 16px !important; min-width: 16px !important; max-width: 16px !important; display: block !important; fill: currentColor; }

/* ==========================================================================
   MOBILE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .hero-title { font-size: 52px; }
  .page-hero { grid-template-columns: 1fr; padding-top: 130px; }
  .page-hero-media { height: 340px; order: 2; }
  .challenge-grid { grid-template-columns: 1fr; gap: 40px; }
  .challenge-side { order: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .mobile-menu-toggle { display: flex; }
  .nav-menu { position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh; background: #ffffff; box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05); flex-direction: column; align-items: flex-start; padding: 120px 40px 40px; gap: 24px; z-index: 1050; transition: var(--transition-smooth); }
  body.nav-open .nav-menu { right: 0; }
  .hero-section { min-height: 760px; height: auto; padding: 205px 0 92px; align-items: flex-start; }
  .hero-video-bg { display: none; }
  .hero-bg-overlay { background: linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.26) 54%, rgba(0, 0, 0, 0.54) 100%); }
  .hero-content { padding: 0 20px; display: flex; flex-direction: column; align-items: center; }
  .hero-subtitle { display: inline-block; font-size: 11px; letter-spacing: 0.14em; line-height: 1.35; margin-bottom: 14px; max-width: 92vw; padding: 8px 12px 8px 14px; }
  .hero-description { font-size: 16px; line-height: 1.6; margin-bottom: 24px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; margin-bottom: 36px; position: relative; z-index: 6; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { width: min(100%, 280px); justify-content: center; }
  .opening-hours-row { grid-template-columns: 1fr; gap: 4px; }
  .hero-scroll-indicator { bottom: 18px; font-size: 9px; gap: 8px; }
  .scroll-line { height: 34px; }
  section { padding-left: 18px; padding-right: 18px; }
  .editorial-container-fluid { padding-left: 16px; padding-right: 16px; }
  .news-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-newsletter-form { display: grid; grid-template-columns: 1fr; justify-items: center; }
  .footer-newsletter-form input,
  .footer-newsletter-form button { width: 100%; max-width: 320px; min-width: 0; }
  
  .booking-inline-form { grid-template-columns: 1fr !important; gap: 30px; }
  .booking-form-right { border-left: none !important; padding-left: 0 !important; border-top: 1px solid rgba(16, 43, 30, 0.08); padding-top: 30px; }
  .booking-visitor-toggle { grid-template-columns: 1fr; border-radius: 22px; }

  .btn-primary, .btn-secondary, .form-submit-btn { padding: 10px 24px !important; font-size: 14px !important; border-radius: 30px !important; }
  .hero-title { font-size: 40px; }
  .section-title { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  footer { text-align: center; }
  .footer-logo { justify-content: center; width: 100%; margin-left: auto; margin-right: auto; }
  .footer-logo img { margin-left: auto; margin-right: auto; }
  .footer-desc { margin-left: auto; margin-right: auto; text-align: center; }
  .footer-title::after { left: 50%; transform: translateX(-50%); }
  .footer-links li { text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-bottom { justify-content: center; gap: 12px; text-align: center; max-width: 360px; }
  
  .donation-presets { grid-template-columns: repeat(2, minmax(0, 150px)); justify-content: center; }
  .donation-box { width: 100%; max-width: 100%; padding: 28px 16px; overflow: hidden; }
  .donation-type-toggle { gap: 10px; }
  .type-toggle-btn { width: 100%; max-width: 320px; padding: 12px 18px; font-size: 13px; white-space: normal; line-height: 1.25; }
  .business-toggle-wrap { width: min(100%, 382px); display: grid; grid-template-columns: minmax(0, 1fr) 44px; gap: 8px; align-items: center; }
  .business-toggle-wrap .type-toggle-btn { max-width: none; }
  .challenge-info-icon { width: 44px; height: 44px; flex: 0 0 44px; }
  .preset-btn { min-width: 0; padding: 12px 10px; font-size: 14px; white-space: nowrap; }
  .payment-badge { text-align: center; line-height: 1.4; }
  .contact-panel { grid-template-columns: 1fr; padding: 26px; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }
  .contact-form-card .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .donation-presets { grid-template-columns: repeat(2, minmax(0, 142px)); gap: 10px; } 
}
/* Hide mobile-only action buttons on desktop by default. */
.mobile-only-actions {
  display: none !important;
}

.mobile-nav-contact {
  display: none;
}

/* Skrivebordsvisning */
@media (min-width: 992px) {
  .header-actions {
    display: flex !important; /* Viser knappene pÃƒÂ¥ desktop */
    gap: 12px;
    align-items: center;
  }
  .mobile-menu-toggle {
    display: none !important; /* Skjuler hamburgeren pÃƒÂ¥ desktop */
  }
}

/* Mobil- og nettbrettvisning */
@media (max-width: 991px) {
  .header-actions {
    display: none !important; /* Skjuler skrivebordsknappene helt pÃƒÂ¥ mobil */
  }
  
  .mobile-only-actions {
    display: flex !important; /* Viser knappene inni menyen pÃƒÂ¥ mobil */
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
    width: 100%;
  }

  /* Sikre at intet usynlig element ligger over eller blokkerer hamburgeren */
  .mobile-menu-toggle {
    display: block !important;
    position: relative;
    z-index: 1001; /* Ligger trygt pÃƒÂ¥ topp */
    cursor: pointer !important;
    pointer-events: auto !important; /* Tvinger nettleseren til ÃƒÂ¥ godta klikk */
  }
}

/* Mobile navigation polish */
@media (max-width: 991px) {
  .nav-container {
    padding: 12px 18px 12px 24px;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    margin-left: auto;
    width: 58px !important;
    height: 58px !important;
    padding: 0 !important;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 2600 !important;
    background: rgba(203, 220, 208, 0.36) !important;
  }

  .mobile-menu-toggle span {
    width: 30px;
    height: 4px;
    background: var(--forest-deep);
    border-radius: 999px;
    transition: var(--transition-smooth);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(88vw, 390px);
    max-width: none;
    height: 100vh;
    padding: 104px 30px 32px;
    background: #ffffff;
    border-left: 1px solid rgba(16, 43, 30, 0.08);
    box-shadow: -18px 0 48px rgba(16, 43, 30, 0.16);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    overflow-y: auto;
    z-index: 2400;
    transition: right 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  }

  body.nav-open .nav-menu,
  header.nav-open .nav-menu {
    right: 0 !important;
  }

  .nav-menu > li {
    width: 100%;
  }

  .nav-link {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--text-dark) !important;
    font-size: 21px !important;
    line-height: 1.15;
    border-bottom: 1px solid rgba(16, 43, 30, 0.08);
  }

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

  .dropdown-menu {
    position: static !important;
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    gap: 4px;
    min-width: 0;
    width: 100%;
    margin: 6px 0 8px;
    padding: 10px;
    background: rgba(203, 220, 208, 0.22);
    border: 1px solid rgba(16, 43, 30, 0.08);
    border-radius: 18px;
    box-shadow: none;
  }

  .dropdown-menu li a {
    display: block;
    padding: 9px 12px;
    color: var(--forest-deep);
    font-size: 16px;
    line-height: 1.25;
    border-radius: 10px;
  }

  .dropdown-menu li a:hover {
    background: rgba(247, 95, 44, 0.1);
    color: var(--accent-warm);
  }

  .mobile-only-actions {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(16, 43, 30, 0.1);
  }

  .mobile-nav-contact {
    display: block;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(16, 43, 30, 0.08);
    color: rgba(31, 41, 55, 0.72);
    font-size: 14px;
    line-height: 1.5;
  }

  .mobile-nav-contact a {
    color: var(--forest-deep);
    font-weight: 700;
  }

  header.nav-open .mobile-menu-toggle {
    background: var(--forest-deep) !important;
  }

  header.nav-open .mobile-menu-toggle span {
    background: #ffffff !important;
  }

  header.nav-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  header.nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  header.nav-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}


/* Support choice clarity */
.type-toggle-btn span,
.type-toggle-btn small {
  display: block;
}

.type-toggle-btn small {
  margin-top: 2px;
  font-size: 0.68em;
  line-height: 1;
  letter-spacing: 0.08em;
  opacity: 0.75;
  font-weight: 800;
}

#btn-toggle-monthly {
  line-height: 1.08;
}

@media (max-width: 768px) {
  .donation-box .section-title {
    margin-bottom: 12px !important;
  }

  .donation-box .section-description {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 18px;
  }
}

/* General mobile overflow guard */
@media (max-width: 768px) {
  .section-container,
  .page-body,
  .premium-hero-inner,
  .page-hero,
  .contact-panel,
  .contact-split,
  .challenge-grid,
  .gallery-grid,
  .news-grid,
  .footer-grid,
  .booking-station-card,
  .booking-inline-form,
  .donation-box,
  .donation-presets,
  .modal-container {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }

  .page-hero,
  .contact-panel,
  .contact-split,
  .challenge-grid,
  .gallery-grid,
  .news-grid,
  .footer-grid,
  .booking-inline-form,
  .donation-presets {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .section-padding,
  .premium-minimal-hero {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .booking-station-card,
  .donation-box,
  .contact-panel,
  .modal-container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .about-action-links .btn-secondary,
  .btn-primary,
  .btn-secondary,
  .btn-ghost,
  .donate-submit-btn {
    max-width: 100%;
    min-width: 0 !important;
    white-space: normal;
  }

  .news-card,
  .gallery-item,
  .contact-panel,
  .donation-box,
  .booking-station-card {
    overflow-wrap: anywhere;
  }
}
