/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --forest-green: #113F2C;
  --forest-green-light: #1a5a3e;
  --forest-green-mid: #1d6b48;
  --light-green: #d4e4bc;
  --cream: #f5f0e8;
  --yellow: #f0eba0;
  --yellow-light: #fdf9e0;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray: #5c5e62;
  --light-gray: #f4f4f4;
  --light-bg: #f2f0eb;
  --gold-star: #e8b730;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}


/* ============================================
   HEADER / NAV — Tesla layout, Dreiraum colors
   ============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 56px;
  max-width: 100%;
}

/* Logo */
.logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  z-index: 10;
  flex-shrink: 0;
}

.logo .drei {
  color: var(--white);
  font-weight: 900;
  transition: color 0.4s;
}

.logo .raum {
  color: var(--white);
  font-weight: 400;
  transition: color 0.4s;
}

header.scrolled .logo .drei {
  color: var(--forest-green);
}

header.scrolled .logo .raum {
  color: var(--forest-green);
}

/* Center Navigation */
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-center a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  border-radius: 4px;
  transition: background 0.3s, color 0.4s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

header.scrolled .nav-center a {
  color: var(--forest-green);
}

.nav-center a:hover {
  background: rgba(255, 255, 255, 0.15);
}

header.scrolled .nav-center a:hover {
  background: rgba(17, 63, 44, 0.08);
}

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  transition: background 0.3s, color 0.4s;
  color: var(--white);
}

header.scrolled .nav-icon {
  color: var(--forest-green);
}

.nav-icon:hover {
  background: rgba(255, 255, 255, 0.15);
}

header.scrolled .nav-icon:hover {
  background: rgba(17, 63, 44, 0.08);
}

.header-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest-green);
  background: var(--yellow);
  padding: 0.4rem 1.25rem;
  border-radius: 999px;
  transition: background 0.3s, color 0.3s;
}

.header-cta:hover {
  background: var(--yellow-light);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10;
  color: var(--white);
  line-height: 0;
  transition: color 0.4s;
}

header.scrolled .mobile-menu-btn {
  color: var(--forest-green);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 1rem 2.5rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

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

.mobile-menu a {
  padding: 0.85rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--forest-green);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* Light slide adaptation: when a light-colored slide is active */
header.light-slide:not(.scrolled) .logo .drei,
header.light-slide:not(.scrolled) .logo .raum {
  color: var(--forest-green);
}

header.light-slide:not(.scrolled) .nav-center a {
  color: var(--forest-green);
}

header.light-slide:not(.scrolled) .nav-center a:hover {
  background: rgba(17, 63, 44, 0.08);
}

header.light-slide:not(.scrolled) .nav-icon {
  color: var(--forest-green);
}

header.light-slide:not(.scrolled) .nav-icon:hover {
  background: rgba(17, 63, 44, 0.08);
}

header.light-slide:not(.scrolled) .mobile-menu-btn {
  color: var(--forest-green);
}

/* Carousel controls on light slides */
.hero-carousel.light-slide .carousel-arrow {
  background: rgba(17, 63, 44, 0.1);
  color: var(--forest-green);
}

.hero-carousel.light-slide .carousel-arrow:hover {
  background: rgba(17, 63, 44, 0.2);
}

.hero-carousel.light-slide .dot {
  background: rgba(17, 63, 44, 0.2);
}

.hero-carousel.light-slide .dot.active {
  background: var(--forest-green);
}

.hero-carousel.light-slide .dot:hover {
  background: rgba(17, 63, 44, 0.4);
}

.hero-carousel.light-slide .scroll-down {
  color: var(--forest-green);
}


/* ============================================
   HERO CAROUSEL — Color surfaces, no photos
   ============================================ */
.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}

/* Slide base */
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Slide 1: Forest Green */
.slide-green {
  background: var(--forest-green);
}

.slide-green .hero-label {
  color: var(--light-green);
}

.slide-green h1 {
  color: var(--white);
}

.slide-green .hero-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

/* Decorative circles for slide 1 */
.slide-green .deco-circle-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(212, 228, 188, 0.08);
  top: -150px;
  right: -100px;
}

.slide-green .deco-circle-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(240, 235, 160, 0.06);
  bottom: -80px;
  left: -50px;
}

.slide-green .deco-circle-3 {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(212, 228, 188, 0.15);
  top: 30%;
  left: 10%;
}

/* Slide 2: Cream */
.slide-cream {
  background: var(--cream);
}

.slide-cream .hero-label {
  color: var(--forest-green);
  opacity: 0.6;
}

.slide-cream h1 {
  color: var(--forest-green);
}

.slide-cream .hero-subtitle {
  color: var(--gray);
}

/* Decorative blocks for slide 2 */
.slide-cream .deco-block-1 {
  position: absolute;
  width: 200px;
  height: 350px;
  background: var(--light-green);
  opacity: 0.3;
  border-radius: 16px;
  top: 10%;
  right: 8%;
  transform: rotate(-6deg);
}

.slide-cream .deco-block-2 {
  position: absolute;
  width: 160px;
  height: 160px;
  background: var(--yellow);
  opacity: 0.25;
  border-radius: 16px;
  bottom: 15%;
  left: 6%;
  transform: rotate(8deg);
}

.slide-cream .deco-block-3 {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid var(--forest-green);
  opacity: 0.1;
  border-radius: 12px;
  top: 25%;
  left: 15%;
  transform: rotate(-12deg);
}

/* Slide 3: Yellow */
.slide-yellow {
  background: var(--yellow-light);
}

.slide-yellow .hero-label {
  color: var(--forest-green);
  opacity: 0.6;
}

.slide-yellow h1 {
  color: var(--forest-green);
}

.slide-yellow .hero-subtitle {
  color: var(--gray);
}

/* Decorative lines for slide 3 */
.slide-yellow .deco-line-1 {
  position: absolute;
  width: 2px;
  height: 200px;
  background: var(--forest-green);
  opacity: 0.08;
  top: 10%;
  right: 20%;
  transform: rotate(15deg);
}

.slide-yellow .deco-line-2 {
  position: absolute;
  width: 2px;
  height: 300px;
  background: var(--forest-green);
  opacity: 0.06;
  bottom: 5%;
  left: 15%;
  transform: rotate(-10deg);
}

.slide-yellow .deco-line-3 {
  position: absolute;
  width: 150px;
  height: 2px;
  background: var(--forest-green);
  opacity: 0.08;
  top: 40%;
  right: 10%;
}

.slide-yellow .deco-dot-1 {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  top: 30%;
  left: 25%;
}

.slide-yellow .deco-dot-2 {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--forest-green);
  opacity: 0.15;
  bottom: 25%;
  right: 30%;
}


/* ===== Hero Slide Content ===== */
.hero-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  padding: 0 2rem;
}

.hero-label {
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-slide-content h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}


/* ===== Hero Buttons ===== */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Light buttons (on dark bg) */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 0.85rem 2rem;
  background: var(--yellow);
  color: var(--forest-green);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: background 0.3s, transform 0.2s;
}

.btn-hero-primary:hover {
  background: var(--yellow-light);
  transform: translateY(-1px);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.02em;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}

.btn-hero-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* Dark buttons (on light bg) */
.btn-hero-primary-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 0.85rem 2rem;
  background: var(--forest-green);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: background 0.3s, transform 0.2s;
}

.btn-hero-primary-dark:hover {
  background: var(--forest-green-light);
  transform: translateY(-1px);
}

.btn-hero-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--forest-green);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.02em;
  border: 2px solid var(--forest-green);
  opacity: 0.6;
  transition: opacity 0.3s, background 0.3s, transform 0.2s;
}

.btn-hero-outline-dark:hover {
  opacity: 1;
  background: rgba(17, 63, 44, 0.05);
  transform: translateY(-1px);
}


/* ===== Carousel Controls ===== */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.carousel-prev {
  left: 1.5rem;
}

.carousel-next {
  right: 1.5rem;
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: var(--white);
  transform: scale(1.3);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* Scroll Down Indicator */
.scroll-down {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  color: var(--white);
  opacity: 0.5;
  animation: scrollBounce 2s infinite;
}

.scroll-down span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-6px); }
  60% { transform: translateX(-50%) translateY(-3px); }
}


/* ============================================
   FOOTER — Tesla-style minimal, Dreiraum colors
   ============================================ */
footer {
  background: var(--forest-green);
  padding: 2rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
  padding: 0.25rem 0.25rem;
}

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

.footer-divider {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  user-select: none;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}


/* ============================================
   GENERAL BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-primary {
  background: var(--forest-green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--forest-green-light);
}

.btn-secondary {
  background: transparent;
  color: var(--forest-green);
  border: 2px solid var(--forest-green);
}

.btn-secondary:hover {
  background: var(--forest-green);
  color: var(--white);
}

.btn-yellow {
  background: var(--yellow-light);
  color: var(--forest-green);
  border: 2px solid var(--yellow);
}

.btn-yellow:hover {
  background: var(--yellow);
}

.btn-arrow::after {
  content: "→";
  font-size: 1.1em;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
  max-width: 600px;
}


/* ============================================
   ANGEBOTE / OFFERS
   ============================================ */
.offers-section {
  padding: 5rem 0;
  background: var(--white);
}

.offers-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-tab {
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--forest-green);
  border-radius: 999px;
  background: transparent;
  color: var(--forest-green);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.category-tab:hover,
.category-tab.active {
  background: var(--forest-green);
  color: var(--white);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.offer-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e5e5e5;
  transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.offer-image {
  height: 240px;
  overflow: hidden;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.offer-card:hover .offer-image img {
  transform: scale(1.05);
}

.offer-content {
  padding: 1.5rem;
}

.offer-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 1rem;
}

.offer-features {
  margin-bottom: 1.25rem;
}

.offer-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0.4rem;
}

.offer-features li::before {
  content: "✓";
  color: var(--forest-green);
  font-weight: 700;
  flex-shrink: 0;
}

.offer-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.offer-price-note {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 1rem;
}


/* ============================================
   DCW SECTION
   ============================================ */
.dcw-section {
  padding: 5rem 0;
  text-align: center;
  background: var(--white);
}

.dcw-label {
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--forest-green);
  margin-bottom: 2rem;
}

.dcw-image-carousel {
  max-width: 900px;
  margin: 0 auto 2rem;
  border-radius: 16px;
  overflow: hidden;
}

.dcw-image-carousel img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.dcw-description {
  font-size: 1.05rem;
  color: var(--black);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e5e5e5;
}

.testimonial-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 1rem;
}

.star {
  color: var(--gold-star);
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  text-align: center;
  font-style: italic;
}


/* ============================================
   DCW BANNER (sticky bottom)
   ============================================ */
.dcw-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--yellow-light);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  z-index: 99;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.dcw-banner-left {
  line-height: 1.3;
}

.dcw-banner-left .digital {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--forest-green);
}

.dcw-banner-left .culture {
  font-weight: 900;
  font-size: 1rem;
  color: var(--forest-green);
  background: var(--yellow);
  display: inline-block;
  padding: 0 4px;
}

.dcw-banner-left .week {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--forest-green);
}

.dcw-banner-center {
  text-align: center;
}

.dcw-banner-center .date {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--forest-green);
}

.dcw-banner .btn-tickets {
  background: var(--yellow);
  color: var(--forest-green);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  margin-top: 0.5rem;
}

.dcw-banner .close-btn {
  position: absolute;
  right: 1.5rem;
  top: 0.75rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--forest-green);
  opacity: 0.5;
}

.dcw-banner .close-btn:hover {
  opacity: 1;
}


/* ============================================
   EVENTS PAGE
   ============================================ */
.events-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: var(--white);
}

.event-featured {
  background: var(--yellow-light);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.event-featured .event-date-label {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--forest-green);
  margin-bottom: 0.5rem;
}

.event-featured h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 0.75rem;
}

.event-featured p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.events-upcoming {
  padding: 4rem 0;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-item {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  transition: box-shadow 0.3s;
}

.event-item:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.event-date-box {
  flex-shrink: 0;
  width: 80px;
  text-align: center;
  padding: 1rem;
  background: var(--light-bg);
  border-radius: 12px;
}

.event-date-box .day {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--forest-green);
}

.event-date-box .month {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

.event-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 0.5rem;
}

.event-info .event-time {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.event-info p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}


/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.news-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.news-card-image {
  height: 200px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.9rem;
}

.news-card-content {
  padding: 1.5rem;
}

.news-card-content .news-date {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.news-card-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 0.5rem;
}

.news-card-content p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}


/* ============================================
   WORK BETTER SECTION
   ============================================ */
.work-better-section {
  padding: 5rem 0;
  background: var(--forest-green);
  color: var(--white);
}

.work-better-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.work-better-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.work-better-section p {
  opacity: 0.8;
  line-height: 1.7;
}


/* ============================================
   DCW 2026 PAGE
   ============================================ */
.dcw-hero {
  padding-top: 6rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--forest-green);
  color: var(--white);
  text-align: center;
}

.dcw-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.dcw-hero .subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 1rem;
}

.dcw-hero .date-info {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 2rem;
}

.dcw-stats {
  padding: 4rem 0;
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--forest-green);
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

.dcw-about {
  padding: 5rem 0;
  background: var(--light-bg);
}

.dcw-about h2 {
  font-size: 2rem;
  color: var(--forest-green);
  margin-bottom: 1.5rem;
}

.dcw-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.dcw-feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e5e5e5;
}

.dcw-feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 0.75rem;
}

.dcw-feature-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.dcw-audience {
  padding: 5rem 0;
  background: var(--white);
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.audience-card {
  background: var(--yellow-light);
  border-radius: 16px;
  padding: 2rem;
}

.audience-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 0.75rem;
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}


/* ============================================
   EVENT SPACES SECTION
   ============================================ */
.event-spaces {
  padding: 5rem 0;
  background: var(--white);
}

.event-spaces h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--forest-green);
  margin-bottom: 0.5rem;
}

.event-spaces .subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 2rem;
}

.spaces-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-radius: 16px;
  overflow: hidden;
}

.spaces-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}


/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--forest-green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 90;
  opacity: 0;
  transition: opacity 0.3s;
}

.scroll-top.visible {
  opacity: 1;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  /* Header mobile */
  .nav-center {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* Hero mobile */
  .hero-carousel {
    min-height: 100vh;
  }

  .hero-slide-content {
    padding: 0 1.5rem;
  }

  .hero-slide-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .btn-hero-primary,
  .btn-hero-outline,
  .btn-hero-primary-dark,
  .btn-hero-outline-dark {
    min-width: 260px;
    width: 100%;
    max-width: 320px;
  }

  .carousel-arrow {
    display: none;
  }

  /* Footer mobile */
  .footer-links {
    flex-direction: column;
    gap: 0.25rem;
  }

  .footer-divider {
    display: none;
  }

  .footer-links a {
    padding: 0.35rem 0;
  }

  /* General mobile */
  .offers-grid,
  .testimonials-grid,
  .news-grid,
  .dcw-features,
  .audience-cards {
    grid-template-columns: 1fr;
  }

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

  .work-better-grid {
    grid-template-columns: 1fr;
  }

  .dcw-hero h1 {
    font-size: 2rem;
  }

  .event-item {
    flex-direction: column;
    gap: 1rem;
  }

  .dcw-banner {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

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