/* ============================================
   VITALFORCE BERLIN - ELEGANT CLASSIC DESIGN
   Timeless elegance with refined sophistication
   ============================================ */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #2c2c2c;
  background-color: #faf8f5;
  overflow-x: hidden;
}

/* ELEGANT CLASSIC TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.3;
}

h1 {
  font-size: 48px;
  margin-bottom: 32px;
}

h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

h4 {
  font-size: 22px;
  margin-bottom: 16px;
}

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

a {
  color: #8b7355;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #6b5335;
}

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

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

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

/* HEADER - ELEGANT & REFINED */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5dfd6;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo img {
  height: 48px;
  width: auto;
}

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

.main-nav a {
  font-family: 'Georgia', serif;
  font-size: 15px;
  color: #3a3a3a;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 18px;
  color: #3a3a3a;
  padding: 16px 0;
  border-bottom: 1px solid #e5dfd6;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #8b7355;
  padding-left: 12px;
}

/* BUTTONS - ELEGANT STYLE */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Georgia', serif;
  font-size: 15px;
  letter-spacing: 1px;
  border: 2px solid #8b7355;
  background: transparent;
  color: #8b7355;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: center;
  border-radius: 2px;
}

.btn:hover {
  background: #8b7355;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 115, 85, 0.25);
}

.btn-primary {
  background: #8b7355;
  color: #ffffff;
  border-color: #8b7355;
}

.btn-primary:hover {
  background: #6b5335;
  border-color: #6b5335;
}

.btn-secondary {
  background: transparent;
  color: #3a3a3a;
  border-color: #3a3a3a;
}

.btn-secondary:hover {
  background: #3a3a3a;
  color: #ffffff;
}

.btn-small {
  padding: 10px 24px;
  font-size: 14px;
}

/* HERO SECTION - ELEGANT & SOPHISTICATED */
.hero {
  background: linear-gradient(135deg, #f5f1eb 0%, #faf8f5 100%);
  padding: 100px 20px;
  text-align: center;
  border-bottom: 1px solid #e5dfd6;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-subtitle {
  font-size: 18px;
  color: #5a5a5a;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid #e5dfd6;
}

.trust-indicators span {
  font-family: 'Georgia', serif;
  font-size: 14px;
  color: #7a7a7a;
  letter-spacing: 0.5px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #f5f1eb 0%, #faf8f5 100%);
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 1px solid #e5dfd6;
}

.breadcrumb {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #8b7355;
}

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #6a6a6a;
  max-width: 700px;
  margin: 0 auto 48px;
  font-style: italic;
}

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

/* SERVICES GRID - ELEGANT CARDS */
.services-grid,
.benefits-grid,
.packages-grid,
.categories-grid,
.programs-grid,
.team-grid,
.articles-grid,
.tips-grid,
.next-steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.service-card,
.benefit-item,
.package-card,
.category-card,
.program-card,
.team-member,
.article-card,
.tip-card,
.step-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e5dfd6;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
}

.service-card:hover,
.benefit-item:hover,
.package-card:hover,
.category-card:hover,
.program-card:hover,
.team-member:hover,
.article-card:hover,
.tip-card:hover,
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: #8b7355;
}

.service-card h3,
.benefit-item h3,
.package-card h3,
.category-card h3,
.program-card h3,
.team-member h3,
.article-card h3,
.tip-card h3,
.step-card h3 {
  color: #8b7355;
  margin-bottom: 16px;
  font-size: 24px;
}

.service-price {
  font-family: 'Georgia', serif;
  font-size: 32px;
  color: #8b7355;
  margin: 24px 0;
  font-weight: 400;
}

/* SERVICE DETAIL */
.service-detail {
  background: #ffffff;
  border: 1px solid #e5dfd6;
  padding: 40px;
  margin-bottom: 32px;
  border-left: 4px solid #8b7355;
}

/* TESTIMONIALS - REFINED STYLE */
.testimonials {
  background: #f5f1eb;
  border-top: 1px solid #e5dfd6;
  border-bottom: 1px solid #e5dfd6;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  background: #ffffff;
  padding: 32px;
  border-left: 4px solid #8b7355;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  position: relative;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #3a3a3a;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  font-family: 'Georgia', serif;
  font-size: 14px;
  color: #8b7355;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* LOCATION & CONTACT */
.location {
  background: #ffffff;
}

.location-content,
.location-info {
  max-width: 700px;
  margin: 0 auto;
}

.location-info p {
  margin-bottom: 24px;
}

.location-info strong {
  color: #8b7355;
  font-family: 'Georgia', serif;
}

/* CTA BANNER - ELEGANT */
.cta-banner {
  background: linear-gradient(135deg, #8b7355 0%, #6b5335 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-top: 1px solid #e5dfd6;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-banner p {
  color: #f5f1eb;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.cta-banner .btn {
  background: #ffffff;
  color: #8b7355;
  border-color: #ffffff;
}

.cta-banner .btn:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

/* FOOTER - ELEGANT */
footer {
  background: #2a2420;
  color: #d5cdc1;
  padding: 60px 20px 30px;
  border-top: 3px solid #8b7355;
}

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

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

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  color: #8b7355;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-col ul {
  list-style: none;
  margin-left: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #d5cdc1;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #8b7355;
  padding-left: 8px;
}

.footer-col p {
  color: #b5ada1;
  font-size: 14px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #4a4035;
  text-align: center;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-legal a {
  font-size: 13px;
  color: #b5ada1;
}

.footer-legal a:hover {
  color: #8b7355;
}

.footer-bottom p {
  font-size: 13px;
  color: #8a7a6a;
}

/* COURSE SCHEDULE */
.schedule-info {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border: 1px solid #e5dfd6;
}

.schedule-info p {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0ebe3;
}

.schedule-info p:last-of-type {
  border-bottom: none;
}

.schedule-info strong {
  color: #8b7355;
  display: inline-block;
  min-width: 100px;
}

/* BOOKING OPTIONS */
.booking-options {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
}

.option {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  padding: 32px;
  border: 1px solid #e5dfd6;
  text-align: center;
}

.option h3 {
  color: #8b7355;
  margin-bottom: 16px;
}

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

.faq-item,
.qa-item {
  background: #ffffff;
  border: 1px solid #e5dfd6;
  padding: 32px;
  margin-bottom: 20px;
  border-left: 4px solid #8b7355;
}

.faq-item h3,
.qa-item h3 {
  color: #8b7355;
  margin-bottom: 12px;
  font-size: 20px;
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, #f5f1eb 0%, #faf8f5 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #e5dfd6;
}

.legal-date {
  color: #7a7a7a;
  font-style: italic;
  font-size: 14px;
}

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

.legal-content h2 {
  text-align: left;
  margin-top: 48px;
  margin-bottom: 20px;
  color: #8b7355;
  font-size: 28px;
}

.legal-content h3 {
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 22px;
}

/* CONTACT PAGE */
.contact-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
}

.contact-option {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  padding: 40px;
  border: 1px solid #e5dfd6;
  text-align: center;
}

.contact-option h3 {
  color: #8b7355;
  margin-bottom: 20px;
}

.form-placeholder {
  background: #ffffff;
  border: 1px solid #e5dfd6;
  padding: 40px;
  max-width: 700px;
  margin: 40px auto;
}

.form-placeholder ul {
  list-style: none;
  margin-left: 0;
}

.form-placeholder li {
  padding: 12px 0;
  border-bottom: 1px solid #f0ebe3;
  color: #5a5a5a;
}

.note {
  color: #8b7355;
  font-style: italic;
  font-size: 14px;
  margin-top: 16px;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: #8b7355;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
}

.confirmation {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.confirmation ol {
  text-align: left;
  max-width: 500px;
  margin: 32px auto;
}

.stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 36px;
  color: #8b7355;
  font-family: 'Georgia', serif;
  margin-bottom: 8px;
}

.stat-item span {
  font-size: 14px;
  color: #7a7a7a;
}

.testimonial-quote {
  background: #ffffff;
  padding: 32px;
  border-left: 4px solid #8b7355;
  max-width: 600px;
  margin: 40px auto;
}

.testimonial-quote .author {
  color: #8b7355;
  font-style: italic;
  margin-top: 16px;
}

/* BLOG & TIPS */
.category-item {
  background: #ffffff;
  border: 1px solid #e5dfd6;
  padding: 24px;
  text-align: center;
  font-family: 'Georgia', serif;
  color: #8b7355;
  transition: all 0.3s ease;
}

.category-item:hover {
  background: #f5f1eb;
  border-color: #8b7355;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #c91717;
  color: #d5cdc1;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner-text {
  flex: 1 1 400px;
  font-size: 14px;
}

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

.cookie-banner .btn {
  padding: 10px 24px;
  font-size: 14px;
  white-space: nowrap;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 2px solid #8b7355;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal h2 {
  color: #8b7355;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #f5f1eb;
  margin-bottom: 16px;
  border-left: 3px solid #8b7355;
}

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

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-cta {
    display: none;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  section {
    padding: 40px 20px;
  }
  
  .service-card,
  .benefit-item,
  .package-card,
  .category-card,
  .program-card,
  .team-member,
  .article-card,
  .tip-card,
  .step-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .booking-options,
  .contact-grid {
    flex-direction: column;
  }
}

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

.service-card,
.testimonial-card,
.benefit-item {
  animation: fadeIn 0.6s ease forwards;
}

/* ACCESSIBILITY */
.btn:focus,
a:focus {
  outline: 2px solid #8b7355;
  outline-offset: 2px;
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }