/* ============================================
   SAMMLERKREIS DORTMUND - LUXURY PREMIUM DESIGN
   Wo Leidenschaft auf Tradition trifft
   ============================================ */

/* CSS RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  background-color: #FAF9F6;
  overflow-x: hidden;
}

/* TYPOGRAPHY - LUXURY PREMIUM */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 16px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37 0%, #B8941F 100%);
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #4a4a4a;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #4a4a4a;
}

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

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER - LUXURY STYLING */
header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2C3E50 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-bottom: 2px solid #D4AF37;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(1.2);
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #FAF9F6;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37, #FFD700);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #D4AF37;
}

.main-nav a:hover::after {
  width: 100%;
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: linear-gradient(135deg, #8B4513, #A0522D);
  border: 2px solid #D4AF37;
  color: #FAF9F6;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #A0522D, #8B4513);
  transform: scale(1.05);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a1a 0%, #2C3E50 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.5);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  border-left: 3px solid #D4AF37;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #D4AF37;
  color: #D4AF37;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #D4AF37;
  color: #1a1a1a;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: #FAF9F6;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  color: #D4AF37;
  border-left-color: #D4AF37;
  padding-left: 24px;
  background: rgba(212, 175, 55, 0.1);
}

/* HERO SECTION - LUXURY PREMIUM */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2C3E50 50%, #34495E 100%);
  color: #FAF9F6;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: #FAF9F6;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease;
}

.tagline {
  font-size: 24px;
  color: #D4AF37;
  margin-bottom: 24px;
  font-weight: 400;
  font-style: italic;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
  color: #E8E8E8;
}

/* BUTTONS - PREMIUM LUXURY STYLE */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
  color: #1a1a1a;
  border-color: #D4AF37;
  box-shadow: 0 4px 12px rgba(212,175,55,0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  box-shadow: 0 6px 20px rgba(212,175,55,0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #FAF9F6;
  border: 2px solid #D4AF37;
}

.btn-secondary:hover {
  background: rgba(212,175,55,0.15);
  border-color: #FFD700;
  color: #FFD700;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.introduction, .story, .mission-vision, .services-overview, .events-intro, .gallery-intro, .contact-intro, .membership-benefits, .guest-information, .thank-you-message {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 20px;
  color: #8B4513;
  margin-bottom: 32px;
  font-style: italic;
  text-align: center;
}

/* FEATURES GRID - FLEXBOX ONLY */
.features-grid, .services-grid, .benefits-grid, .values-grid, .team-grid, .contact-grid, .event-type-grid, .events-grid, .links-grid, .contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.feature-card, .service-card, .benefit-card, .value-card, .team-member, .contact-method, .event-type-card, .event-card, .link-card, .contact-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 1px solid #E8E8E8;
  position: relative;
  margin-bottom: 20px;
}

.feature-card::before, .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #D4AF37, #B8941F);
  transition: height 0.4s ease;
  border-radius: 12px 0 0 12px;
}

.feature-card:hover, .service-card:hover, .benefit-card:hover, .value-card:hover, .event-card:hover, .link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(212,175,55,0.2);
  border-color: #D4AF37;
}

.feature-card:hover::before, .service-card:hover::before {
  height: 100%;
}

.feature-card img, .benefit-card img, .contact-method img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: sepia(0.4) hue-rotate(20deg) saturate(1.2);
}

.feature-card h3, .service-card h3, .benefit-card h3, .value-card h4 {
  color: #2C3E50;
  margin-bottom: 16px;
  font-size: 22px;
}

.feature-card p, .service-card p, .benefit-card p, .value-card p {
  color: #666;
  line-height: 1.7;
}

/* PRICE STYLING */
.price {
  font-size: 32px;
  font-weight: 700;
  color: #D4AF37;
  margin: 20px 0;
  font-family: 'Playfair Display', serif;
}

.price span {
  font-size: 18px;
  color: #8B4513;
}

/* FEATURES LIST */
.features-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.features-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #4a4a4a;
  line-height: 1.6;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 18px;
}

/* PRICING PLANS */
.plans-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.plan-card {
  flex: 1 1 400px;
  max-width: 500px;
  background: #FFFFFF;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid #E8E8E8;
  position: relative;
  margin-bottom: 20px;
}

.plan-card.featured {
  border-color: #D4AF37;
  box-shadow: 0 12px 40px rgba(212,175,55,0.25);
  transform: scale(1.05);
}

.plan-card .badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #D4AF37, #B8941F);
  color: #1a1a1a;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(212,175,55,0.4);
}

.plan-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(212,175,55,0.3);
}

/* TESTIMONIALS - LUXURY STYLING */
.testimonials {
  background: linear-gradient(135deg, #F5F5F0 0%, #FAFAF5 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 450px;
  max-width: 550px;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-left: 4px solid #D4AF37;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 72px;
  color: rgba(212,175,55,0.15);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(212,175,55,0.2);
  transform: translateX(8px);
}

.testimonial-card p {
  color: #2C3E50;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  color: #8B4513;
  font-weight: 600;
  font-style: italic;
  font-size: 16px;
  margin-bottom: 0;
}

/* MILESTONES */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.milestone {
  flex: 1 1 200px;
  text-align: center;
  padding: 32px 20px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border-top: 4px solid #D4AF37;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.milestone:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.2);
}

.milestone .year {
  font-size: 36px;
  font-weight: 700;
  color: #D4AF37;
  font-family: 'Playfair Display', serif;
  display: block;
  margin-bottom: 12px;
}

.milestone p {
  color: #666;
  font-size: 16px;
}

/* STEPS */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 48px;
}

.step {
  flex: 1 1 220px;
  text-align: center;
  padding: 32px 20px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.2);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #D4AF37, #B8941F);
  color: #1a1a1a;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 4px 12px rgba(212,175,55,0.3);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  background: #FFFFFF;
  padding: 32px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border-left: 4px solid #D4AF37;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(212,175,55,0.2);
  transform: translateX(8px);
}

.faq-item h3 {
  color: #2C3E50;
  margin-bottom: 16px;
  font-size: 20px;
}

.faq-item p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

/* CTA SECTIONS */
.cta, .cta-banner, .contact-box {
  background: linear-gradient(135deg, #2C3E50 0%, #1a1a1a 100%);
  color: #FAF9F6;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.cta::before, .cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta h2, .cta-banner h2, .contact-box h2 {
  color: #FAF9F6;
  margin-bottom: 24px;
}

.cta h2::after, .cta-banner h2::after, .contact-box h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.cta p, .cta-banner p, .contact-box p {
  color: #E8E8E8;
  font-size: 18px;
  margin-bottom: 32px;
}

/* CONTACT INFORMATION */
.contact-info {
  padding: 80px 20px;
  background: #FAFAF5;
  margin-bottom: 60px;
}

.contact-grid {
  margin-top: 48px;
}

.contact-item h3, .contact-method h3 {
  color: #2C3E50;
  margin-bottom: 16px;
  font-size: 22px;
}

.contact-item p, .contact-method p {
  color: #666;
  line-height: 1.7;
}

.contact-item .note, .note {
  font-size: 14px;
  color: #8B4513;
  font-style: italic;
  margin-top: 12px;
}

.value {
  font-weight: 600;
  color: #2C3E50;
  margin: 12px 0;
}

/* LOCATION & MAP */
.location-map {
  padding: 80px 20px;
  margin-bottom: 60px;
}

.address-block, .directions {
  background: #FFFFFF;
  padding: 32px;
  margin: 24px 0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border-left: 4px solid #D4AF37;
}

/* TEAM CONTACTS */
.team-contacts, .team {
  padding: 80px 20px;
  background: #F5F5F0;
  margin-bottom: 60px;
}

.contact-person, .team-member {
  text-align: center;
}

.position {
  color: #8B4513;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.specialty {
  color: #666;
  font-style: italic;
  margin-bottom: 12px;
}

/* GALLERY */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.gallery-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  margin-bottom: 20px;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(212,175,55,0.2);
}

.gallery-item h3 {
  color: #2C3E50;
  margin-bottom: 16px;
  font-size: 20px;
}

.gallery-item p {
  color: #666;
  line-height: 1.7;
}

.gallery-category {
  padding: 60px 20px;
  margin-bottom: 40px;
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 24px;
}

.legal-content ul {
  margin-left: 32px;
  margin-bottom: 24px;
}

.legal-content li {
  margin-bottom: 12px;
}

.last-updated {
  color: #8B4513;
  font-style: italic;
  font-size: 14px;
}

/* THANK YOU PAGE */
.icon-checkmark {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #D4AF37, #B8941F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 56px;
  color: #1a1a1a;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(212,175,55,0.4);
  animation: scaleIn 0.5s ease;
}

.main-message {
  font-size: 20px;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 24px;
}

.related-content {
  padding: 80px 20px;
  background: #F5F5F0;
  margin-bottom: 60px;
}

/* FOOTER - LUXURY PREMIUM */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2C3E50 100%);
  color: #E8E8E8;
  padding: 60px 0 24px;
  border-top: 3px solid #D4AF37;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 220px;
}

.footer-section h3 {
  color: #D4AF37;
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: #C0C0C0;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #C0C0C0;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #D4AF37;
}

.footer-nav a:hover {
  color: #D4AF37;
  padding-left: 20px;
}

.footer-nav a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(212,175,55,0.3);
  color: #999;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2C3E50 100%);
  color: #FAF9F6;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  z-index: 10000;
  border-top: 2px solid #D4AF37;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: #E8E8E8;
  margin-bottom: 0;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #D4AF37, #B8941F);
  color: #1a1a1a;
  border-color: #D4AF37;
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: transparent;
  color: #E8E8E8;
  border-color: #666;
}

.cookie-btn-reject:hover {
  border-color: #999;
  color: #FFF;
}

.cookie-btn-settings {
  background: transparent;
  color: #D4AF37;
  border-color: #D4AF37;
}

.cookie-btn-settings:hover {
  background: rgba(212,175,55,0.15);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #F5F5F5;
  color: #2C3E50;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F5F5F0;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
}

.cookie-category h3 {
  color: #2C3E50;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-category p {
  color: #666;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  cursor: pointer;
}

.cookie-toggle label {
  color: #2C3E50;
  font-weight: 600;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Show mobile menu button, hide desktop nav */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .tagline {
    font-size: 18px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  /* Layout adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .section, .introduction, .story, .services-overview, .cta, .cta-banner {
    padding: 40px 20px;
  }
  
  /* Force single column on mobile */
  .feature-card, .service-card, .benefit-card, .value-card, .team-member, .contact-method, .event-type-card, .event-card, .link-card, .contact-item, .gallery-item, .milestone, .step {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .plan-card {
    flex: 1 1 100%;
  }
  
  .plan-card.featured {
    transform: scale(1);
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Button adjustments */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Steps on mobile */
  .steps-grid {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .feature-card, .service-card, .benefit-card, .value-card, .gallery-item {
    flex: 1 1 calc(50% - 12px);
  }
  
  .milestone, .step {
    flex: 1 1 calc(50% - 16px);
  }
}

/* ENSURE NO OVERLAPPING */
* {
  position: relative;
}

.feature-card, .service-card, .benefit-card, .testimonial-card, .milestone, .step, .gallery-item, .faq-item {
  z-index: 1;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero {
    background: white;
    color: black;
    padding: 20px;
  }
}