/* ===================================
   WIENER WALZERKUNST - MODERN BOLD STYLE
   Design: Bold modern design with strong typography
   ================================== */

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

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

body {
  font-family: 'Lato', 'Arial', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY - BOLD MODERN STYLE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 900;
  line-height: 1.2;
  color: #8B1538;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

h2 {
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h3 {
  font-size: 24px;
  font-weight: 800;
}

h4 {
  font-size: 20px;
  font-weight: 700;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}

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

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

li {
  margin-bottom: 8px;
  line-height: 1.8;
}

strong {
  font-weight: 700;
  color: #8B1538;
}

/* LAYOUT CONTAINERS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #8B1538;
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(139, 21, 56, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #6d0f2a;
  transform: scale(1.05);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #8B1538;
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #fff;
  color: #8B1538;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C5A572;
  padding-left: 10px;
  border-bottom-color: #C5A572;
}

/* HEADER */
header {
  background: #fff;
  border-bottom: 4px solid #8B1538;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #8B1538;
  border-bottom-color: #8B1538;
}

/* BUTTONS - BOLD MODERN STYLE */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-align: center;
}

.btn-primary {
  background: #8B1538;
  color: #fff;
  border-color: #8B1538;
  box-shadow: 4px 4px 0 #1a1a1a;
}

.btn-primary:hover {
  background: #6d0f2a;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #1a1a1a;
}

.btn-secondary {
  background: #C5A572;
  color: #1a1a1a;
  border-color: #C5A572;
  box-shadow: 4px 4px 0 #8B1538;
}

.btn-secondary:hover {
  background: #b08f5a;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #8B1538;
}

.btn-outline {
  background: transparent;
  color: #8B1538;
  border: 3px solid #8B1538;
  box-shadow: none;
}

.btn-outline:hover {
  background: #8B1538;
  color: #fff;
  box-shadow: 4px 4px 0 #1a1a1a;
}

/* HERO SECTION - BOLD GEOMETRIC */
.hero {
  background: linear-gradient(135deg, #8B1538 0%, #6d0f2a 100%);
  color: #fff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(197, 165, 114, 0.1);
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(244, 232, 208, 0.1);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #fff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #8B1538 0%, #C5A572 100%);
  color: #fff;
  padding: 80px 20px 60px;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 16px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #F4E8D0;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #fff;
}

/* CARD LAYOUTS - GEOMETRIC BOLD STYLE */
.stats-grid,
.services-grid,
.features-grid,
.values-grid,
.approach-grid,
.expectations-grid,
.packages-grid,
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.stat-card,
.service-card,
.feature-card,
.value-card,
.approach-card,
.expectation-card,
.package-card,
.pricing-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #fff;
  border: 4px solid #1a1a1a;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.stat-card::before,
.service-card::before,
.feature-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: #C5A572;
  z-index: -1;
  transition: all 0.3s ease;
}

.stat-card:hover,
.service-card:hover,
.feature-card:hover,
.value-card:hover,
.approach-card:hover,
.expectation-card:hover {
  transform: translate(-4px, -4px);
}

.stat-card:hover::before,
.service-card:hover::before,
.feature-card:hover::before {
  transform: translate(8px, 8px);
}

.stat-card h3 {
  font-size: 48px;
  color: #8B1538;
  margin-bottom: 8px;
  font-weight: 900;
}

.service-card h3,
.feature-card h3,
.value-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price {
  font-size: 24px;
  font-weight: 900;
  color: #8B1538;
  margin: 16px 0;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background: #F4E8D0;
  padding: 60px 20px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #fff;
  border: 4px solid #1a1a1a;
  padding: 32px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #8B1538;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 1;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: 700;
  color: #8B1538;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* PROCESS STEPS - GEOMETRIC */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
}

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: #8B1538;
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: all 0.3s ease;
}

.step:hover .step-number {
  background: #C5A572;
  transform: rotate(180deg);
}

/* PRICING CARDS - BOLD DESIGN */
.pricing-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #fff;
  border: 4px solid #1a1a1a;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.pricing-card.popular,
.pricing-card.premium {
  border-color: #8B1538;
  border-width: 6px;
}

.pricing-card .badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #8B1538;
  color: #fff;
  padding: 8px 20px;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.price-display {
  margin: 24px 0;
}

.price-display .price {
  font-size: 56px;
  color: #8B1538;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.price-display .unit {
  font-size: 14px;
  color: #666;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card .features {
  list-style: none;
  margin: 32px 0;
  text-align: left;
}

.pricing-card .features li {
  padding: 12px 0;
  border-bottom: 2px solid #F4E8D0;
  font-weight: 600;
}

.pricing-card .features li::before {
  content: '✓';
  color: #8B1538;
  font-weight: 900;
  margin-right: 12px;
  font-size: 20px;
}

/* INSTRUCTOR PROFILES */
.instructor-card {
  background: #fff;
  border: 4px solid #1a1a1a;
  padding: 32px;
  margin-bottom: 32px;
  position: relative;
}

.instructor-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #8B1538 0%, #C5A572 100%);
}

.instructor-card .title {
  color: #C5A572;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.instructor-card .quote {
  font-style: italic;
  color: #666;
  border-left: 4px solid #8B1538;
  padding-left: 20px;
  margin-top: 20px;
}

/* CONTACT FORM - BOLD STYLE */
.form-container {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  border: 4px solid #1a1a1a;
  padding: 40px;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #8B1538;
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 16px;
  border: 3px solid #1a1a1a;
  background: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #8B1538;
  box-shadow: 4px 4px 0 #C5A572;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

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

.form-checkbox label {
  font-size: 14px;
  cursor: pointer;
}

/* CTA SECTIONS - BOLD IMPACT */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #8B1538 0%, #6d0f2a 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="%23C5A572" stroke-width="2" opacity="0.1"/></svg>');
}

.cta-banner h2,
.cta-section h2 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  font-size: 20px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER - BOLD GEOMETRIC */
footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 20px 20px;
  border-top: 6px solid #8B1538;
}

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

.footer-column {
  flex: 1 1 250px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 16px;
}

.footer-column h4 {
  color: #C5A572;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
}

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

.footer-nav a {
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-nav a:hover {
  color: #C5A572;
  padding-left: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid #333;
  font-size: 14px;
  font-weight: 700;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 24px;
  z-index: 999;
  border-top: 4px solid #8B1538;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

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

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

.cookie-modal-content {
  background: #fff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 4px solid #1a1a1a;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #8B1538;
  font-weight: 900;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  border: 2px solid #F4E8D0;
}

.cookie-category h3 {
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.toggle-switch {
  width: 60px;
  height: 30px;
  background: #ccc;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #8B1538;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(30px);
}

/* BADGE STYLES */
.badge {
  display: inline-block;
  background: #8B1538;
  color: #fff;
  padding: 8px 16px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 4px;
}

.level-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* LISTS */
.features-list {
  list-style: none;
  margin: 20px 0;
}

.features-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  font-weight: 600;
}

.features-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #8B1538;
  font-size: 14px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #8B1538 0%, #C5A572 100%);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #fff;
  color: #8B1538;
  font-size: 60px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border: 6px solid #1a1a1a;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .stats-grid,
  .services-grid,
  .features-grid,
  .values-grid,
  .approach-grid,
  .pricing-grid {
    flex-direction: column;
  }
  
  .stat-card,
  .service-card,
  .feature-card,
  .value-card,
  .pricing-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .section {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .form-container {
    padding: 24px;
  }
  
  .pricing-card,
  .service-card,
  .instructor-card {
    padding: 24px;
  }
}

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

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.section {
  animation: fadeIn 0.6s ease-out;
}

/* ACCESSIBILITY */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid #C5A572;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .btn {
    display: none;
  }
}