/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Source Sans 3', sans-serif; background: #0a0a0a; color: #f0f0f0; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: #ffd700; transition: color 0.3s; }
a:hover { color: #ffed4a; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 500; }
p { margin-bottom: 1rem; color: #ccc; }
.section-title { text-align: center; margin-bottom: 3rem; position: relative; }
.section-title h2 { display: inline-block; position: relative; margin-bottom: 0.5rem; }
.section-title h2::after { content: ''; display: block; width: 60px; height: 4px; background: #ffd700; margin: 10px auto 0; }
.section-title p { color: #999; font-size: 1.05rem; max-width: 600px; margin: 0.5rem auto 0; }

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: 14px 36px; font-family: 'Oswald', sans-serif; font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; border: none; cursor: pointer; transition: all 0.3s ease; border-radius: 0; }
.btn-primary { background: #ffd700; color: #0a0a0a; }
.btn-primary:hover { background: #d4b800; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212, 184, 0, 0.4); }
.btn-outline { background: transparent; color: #ffd700; border: 2px solid #ffd700; }
.btn-outline:hover { background: #ffd700; color: #111; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3); }
.btn-white { background: #fff; color: #0a0a0a; }
.btn-white:hover { background: #d4b800; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212, 184, 0, 0.4); }

/* ===== NAVIGATION ===== */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255, 215, 0, 0.1); transition: all 0.3s; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; padding: 0 20px; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 45px; }
.nav-logo span { font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 700; color: #ffd700; text-transform: uppercase; letter-spacing: 2px; }
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links li a { display: block; padding: 25px 16px; color: #f0f0f0; font-family: 'Oswald', sans-serif; font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; position: relative; }
.nav-links li a::before { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: #ffd700; transition: width 0.3s; }
.nav-links li a:hover, .nav-links li a.active { color: #ffd700; }
.nav-links li a:hover::before, .nav-links li a.active::before { width: 60%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.nav-toggle span { width: 28px; height: 3px; background: #ffd700; transition: all 0.3s; border-radius: 2px; }

/* ===== HERO ===== */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 20px; }
.hero-content h1 { color: #fff; margin-bottom: 0.5rem; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero-content h1 span { color: #ffd700; }
.hero-content .hero-subtitle { font-size: 1.2rem; color: #ffd700; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 4px; margin-bottom: 1rem; }
.hero-content p { font-size: 1.1rem; color: #ddd; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; color: #fff; font-size: 1.5rem; animation: bounce 2s infinite; cursor: pointer; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-dark { background: #0a0a0a; }
.section-gray { background: #111; }
.section-image { position: relative; background-size: cover; background-position: center; background-attachment: fixed; }
.section-image .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.8); }
.section-image .container { position: relative; z-index: 2; }

/* ===== PROGRAMS / CLASSES CARDS ===== */
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.program-card { background: #111; border: 1px solid rgba(255, 215, 0, 0.1); transition: all 0.4s ease; overflow: hidden; position: relative; }
.program-card:hover { transform: translateY(-8px); border-color: #ffd700; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.program-card-img { height: 240px; overflow: hidden; position: relative; }
.program-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.program-card:hover .program-card-img img { transform: scale(1.08); }
.program-card-body { padding: 25px; }
.program-card-body h3 { margin-bottom: 10px; color: #fff; }
.program-card-body h3 a { color: #fff; }
.program-card-body h3 a:hover { color: #ffd700; }
.program-card-body p { color: #999; font-size: 0.95rem; margin-bottom: 15px; }
.program-card-body .btn { font-size: 0.8rem; padding: 10px 24px; }

/* ===== TRAINER CARDS ===== */
.trainers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.trainer-card { background: #111; border: 1px solid rgba(255, 215, 0, 0.1); text-align: center; overflow: hidden; transition: all 0.4s; }
.trainer-card:hover { border-color: #ffd700; transform: translateY(-5px); }
.trainer-card-img { width: 100%; height: 320px; overflow: hidden; position: relative; }
.trainer-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.trainer-card:hover .trainer-card-img img { transform: scale(1.05); }
.trainer-card-body { padding: 20px; position: relative; }
.trainer-card-body h3 { color: #ffd700; margin-bottom: 5px; }
.trainer-card-body .trainer-role { color: #999; font-size: 0.85rem; margin-bottom: 10px; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; }
.trainer-card-body p { color: #aaa; font-size: 0.9rem; }

/* ===== ABOUT SECTION ===== */
.about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-section.reverse { direction: rtl; }
.about-section.reverse > * { direction: ltr; }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: 0; }
.about-image::before { content: ''; position: absolute; top: -15px; left: -15px; width: 100%; height: 100%; border: 3px solid #ffd700; z-index: -1; }
.about-text h2 { margin-bottom: 1rem; color: #fff; }
.about-text h2 span { color: #ffd700; }
.about-text p { margin-bottom: 1rem; }
.about-text ul { margin-bottom: 1.5rem; }
.about-text ul li { color: #ccc; padding: 6px 0; padding-left: 25px; position: relative; }
.about-text ul li::before { content: '\2713'; position: absolute; left: 0; color: #ffd700; font-weight: bold; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.testimonial-card { background: #111; padding: 35px; border-left: 4px solid #ffd700; position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 10px; right: 20px; font-size: 5rem; color: rgba(255, 215, 0, 0.1); font-family: Georgia, serif; line-height: 1; }
.testimonial-card p { font-style: italic; color: #ccc; margin-bottom: 15px; }
.testimonial-card .testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid #ffd700; }
.testimonial-card .testimonial-author .name { font-family: 'Oswald', sans-serif; color: #ffd700; font-size: 0.95rem; }
.testimonial-card .testimonial-author .role { color: #999; font-size: 0.8rem; }

/* ===== SCHEDULE TABLE ===== */
.schedule-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.schedule-table th { background: #ffd700; color: #0a0a0a; padding: 15px; font-family: 'Oswald', sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; border: 1px solid #333; }
.schedule-table td { padding: 15px; border: 1px solid #222; text-align: center; color: #ccc; }
.schedule-table tr:nth-child(even) { background: rgba(255, 215, 0, 0.03); }
.schedule-table tr:hover { background: rgba(255, 215, 0, 0.08); }
.schedule-table td:first-child { font-weight: 600; color: #ffd700; font-family: 'Oswald', sans-serif; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-family: 'Oswald', sans-serif; color: #ffd700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 16px; background: #1a1a1a; border: 1px solid #333; color: #f0f0f0; font-family: 'Inter', sans-serif; font-size: 1rem; transition: border-color 0.3s; border-radius: 0; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: #ffd700; }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== BLOG/NEWS ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.blog-card { background: #111; border: 1px solid rgba(255, 215, 0, 0.1); overflow: hidden; transition: all 0.4s; }
.blog-card:hover { border-color: #ffd700; transform: translateY(-5px); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 25px; }
.blog-card-body .date { color: #ffd700; font-size: 0.85rem; font-family: 'Oswald', sans-serif; margin-bottom: 8px; }
.blog-card-body h3 { margin-bottom: 10px; }
.blog-card-body h3 a { color: #fff; }
.blog-card-body h3 a:hover { color: #ffd700; }
.blog-card-body p { color: #999; font-size: 0.9rem; }

/* ===== VIDEO SECTION ===== */
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; background: #000; }
.video-wrapper video, .video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* ===== CTA SECTION ===== */
.cta-section { text-align: center; padding: 80px 0; background: linear-gradient(135deg, #111 0%, #1a1a1a 100%); border-top: 1px solid rgba(255, 215, 0, 0.2); border-bottom: 1px solid rgba(255, 215, 0, 0.2); }
.cta-section h2 { margin-bottom: 1rem; }
.cta-section h2 span { color: #ffd700; }
.cta-section p { max-width: 600px; margin: 0 auto 2rem; color: #aaa; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HEADER ===== */
.page-header { padding: 150px 0 60px; text-align: center; background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); border-bottom: 3px solid #ffd700; position: relative; }
.page-header h1 { color: #fff; }
.page-header h1 span { color: #ffd700; }
.page-header p { color: #999; margin-top: 0.5rem; }
.breadcrumb { color: #666; font-size: 0.85rem; margin-top: 10px; }
.breadcrumb a { color: #ffd700; }

/* ===== FOOTER ===== */
.footer { background: #050505; border-top: 1px solid rgba(255, 215, 0, 0.1); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: #ffd700; margin-bottom: 20px; font-size: 1rem; letter-spacing: 2px; }
.footer-col p, .footer-col li { color: #888; font-size: 0.9rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #888; transition: color 0.3s; }
.footer-col ul li a:hover { color: #ffd700; }
.footer-col ul li::before { content: '\203A'; color: #ffd700; margin-right: 10px; }
.footer-social { display: flex; gap: 12px; margin-top: 15px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: #1a1a1a; border: 1px solid #333; transition: all 0.3s; }
.footer-social a:hover { background: #ffd700; border-color: #ffd700; }
.footer-social a:hover svg { fill: #0a0a0a; }
.footer-social a svg { width: 18px; height: 18px; fill: #888; transition: fill 0.3s; }
.footer-bottom { border-top: 1px solid #111; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.footer-bottom p { color: #666; font-size: 0.85rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #666; font-size: 0.85rem; }
.footer-bottom-links a:hover { color: #ffd700; }

/* ===== ANIMATIONS ===== */
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-15px); } 60% { transform: translateX(-50%) translateY(-8px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
.animate { opacity: 0; }
.animate.fadeInUp { animation: fadeInUp 0.8s ease forwards; }
.animate.fadeInLeft { animation: fadeInLeft 0.8s ease forwards; }
.animate.fadeInRight { animation: fadeInRight 0.8s ease forwards; }
.animate.delay-1 { animation-delay: 0.2s; }
.animate.delay-2 { animation-delay: 0.4s; }
.animate.delay-3 { animation-delay: 0.6s; }

/* ===== FEATURES / ICON BOXES ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.feature-box { text-align: center; padding: 40px 20px; background: #111; border: 1px solid rgba(255, 215, 0, 0.1); transition: all 0.4s; }
.feature-box:hover { border-color: #ffd700; transform: translateY(-5px); }
.feature-box .icon { font-size: 2.5rem; color: #ffd700; margin-bottom: 15px; }
.feature-box h3 { color: #fff; margin-bottom: 10px; font-size: 1.1rem; }
.feature-box p { color: #999; font-size: 0.9rem; margin: 0; }

/* ===== PRICE / MEMBERSHIP ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.pricing-card { background: #111; border: 1px solid rgba(255, 215, 0, 0.1); padding: 40px 30px; text-align: center; transition: all 0.4s; position: relative; }
.pricing-card.featured { border-color: #ffd700; transform: scale(1.03); }
.pricing-card.featured::before { content: 'EMPFEHLUNG'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #ffd700; color: #0a0a0a; padding: 4px 20px; font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 2px; }
.pricing-card:hover { border-color: #ffd700; transform: translateY(-5px); }
.pricing-card.featured:hover { transform: translateY(-5px) scale(1.03); }
.pricing-card h3 { color: #fff; margin-bottom: 10px; }
.pricing-card .price { font-family: 'Oswald', sans-serif; font-size: 2.5rem; color: #ffd700; margin: 15px 0; }
.pricing-card .price span { font-size: 1rem; color: #999; }
.pricing-card ul { margin: 20px 0; }
.pricing-card ul li { padding: 8px 0; color: #ccc; border-bottom: 1px solid #1a1a1a; }
.pricing-card ul li:last-child { border-bottom: none; }

/* ===== CONTACT INFO ===== */
.contact-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 40px; }
.contact-item { text-align: center; padding: 25px; background: #111; border: 1px solid rgba(255, 215, 0, 0.1); }
.contact-item .icon { font-size: 2rem; color: #ffd700; margin-bottom: 10px; }
.contact-item h4 { color: #fff; margin-bottom: 8px; }
.contact-item p { color: #999; margin: 0; font-size: 0.9rem; }
.contact-item a { color: #ccc; }
.contact-item a:hover { color: #ffd700; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
.gallery-item { overflow: hidden; position: relative; height: 250px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after { content: '+'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(255, 215, 0, 0.3); color: #fff; font-size: 3rem; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover::after { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-section { grid-template-columns: 1fr; gap: 40px; }
  .about-section.reverse { direction: ltr; }
  .section { padding: 70px 0; }
}
@media (max-width: 768px) {
  .nav-links { position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px); background: rgba(10,10,10,0.98); flex-direction: column; gap: 0; padding: 20px 0; transition: left 0.4s; overflow-y: auto; }
  .nav-links.active { left: 0; }
  .nav-links li a { padding: 15px 20px; font-size: 1.1rem; border-bottom: 1px solid rgba(255,215,0,0.05); }
  .nav-links li a::before { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero { min-height: 500px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content .hero-subtitle { font-size: 0.9rem; letter-spacing: 2px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .trainers-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-5px); }
  .feature-box { padding: 25px 15px; }
  .page-header { padding: 120px 0 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-info { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .nav-logo span { font-size: 1rem; }
  .nav-logo img { height: 35px; }
  .section { padding: 50px 0; }
  .btn { padding: 12px 24px; font-size: 0.85rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
}
