@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;700;900&family=Syncopate:wght@400;700&display=swap');

:root {
  --bg-dark: #050505;
  --bg-darker: #000;
  --primary-orange: #ff5e00;
  --secondary-orange: #ff8c00;
  --text-light: #f0f0f0;
  --text-muted: #888;
  --accent-glow: rgba(255, 94, 0, 0.5);
  --font-main: "Montserrat", sans-serif;
  --font-heading: "Syncopate", sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-light);
  width: 100%;
  max-width: 100vw;
  line-height: 1.8;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

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

button {
  cursor: pointer;
  font-family: var(--font-heading);
  border: none;
  background: none;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Common Components */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-padding {
  padding: 150px 0;
}

.section-title {
  color: var(--text-light);
  margin-bottom: 80px;
  font-size: 3rem;
  display: inline-block;
  position: relative;
  text-align: center;
  width: 100%;
}

.section-title span {
  color: var(--primary-orange);
}

.btn-primary {
  color: var(--primary-orange);
  border: 1px solid var(--primary-orange);
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 3px;
  z-index: 1;
  background: transparent;
  border-radius: 0;
  padding: 16px 40px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-primary:before {
  content: "";
  background-color: var(--primary-orange);
  width: 0%;
  height: 100%;
  transition: var(--transition-smooth);
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

.btn-primary:hover:before {
  width: 100%;
}

.btn-primary:hover {
  color: var(--bg-darker);
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-secondary {
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 25px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  margin: 5px;
}

.btn-secondary:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  background: rgba(255, 94, 0, 0.05);
  box-shadow: 0 0 15px rgba(255, 94, 0, 0.15);
}

/* Navbar */
.navbar {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(255, 94, 0, 0.2);
  justify-content: center;
  align-items: center;
  height: 90px;
  font-size: 1.1rem;
  display: flex;
  position: sticky;
  top: 0;
}

.navbar-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  padding: 0 40px;
  display: flex;
}

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

.navbar-logo-img {
  height: 60px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.navbar-logo-img:hover {
  filter: drop-shadow(0 0 10px rgba(255, 94, 0, 0.5));
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition-smooth);
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
}

.nav-links:hover, .nav-links.active {
  color: var(--primary-orange);
  text-shadow: 0 0 10px rgba(255, 94, 0, 0.3);
}

.menu-icon {
  display: none;
  color: var(--primary-orange);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-fullscreen {
  text-align: center;
  background-image: url('../images/hero.jpg');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: relative;
}

.hero-fullscreen:before {
  content: "";
  z-index: 1;
  background: linear-gradient(rgba(5, 5, 5, 0.7) 0%, rgba(5, 5, 5, 1) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-content-center {
  z-index: 10;
}

.hero-content-center h1 {
  letter-spacing: 15px;
  color: transparent;
  -webkit-text-stroke: 2px var(--text-light);
  background: linear-gradient(180deg, var(--text-light) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255, 94, 0, 0.2);
  margin-bottom: 20px;
  font-size: 7rem;
}

.hero-subtitle {
  font-family: var(--font-heading);
  letter-spacing: 8px;
  color: var(--primary-orange);
  text-shadow: 0 0 10px rgba(255, 94, 0, 0.5);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--text-muted);
  letter-spacing: 4px;
  font-size: 0.8rem;
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-indicator .line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary-orange), transparent);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

/* Philosophy */
.philosophy-section {
  text-align: center;
  padding: 100px 20px;
}

.philosophy-text h2 {
  font-size: 4rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.philosophy-text h2 span {
  color: var(--text-light);
}

.philosophy-text p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 2;
  color: var(--text-muted);
}

/* Poles */
.poles-showcase {
  display: flex;
  flex-direction: column;
  gap: 150px;
  padding: 100px 0;
}

.pole-row {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 0 5%;
}

.pole-row.reverse {
  flex-direction: row-reverse;
}

.pole-image-huge {
  flex: 1.5;
  height: 600px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 94, 0, 0.1);
}

.pole-image-huge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}

.pole-image-huge:hover img {
  transform: scale(1.05);
}

.img-overlay-dark {
  display: none;
}

.pole-text-huge {
  flex: 1;
}

.pole-subtitle {
  color: var(--primary-orange);
  letter-spacing: 4px;
  margin-bottom: 15px;
  display: block;
}

.pole-text-huge h3 {
  font-size: 3.5rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.pole-text-huge p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* Carousel Fade */
.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel-slide {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease; /* gentle ken burns effect */
}
.carousel-slide.active img {
  transform: scale(1.05); /* very slow subtle zoom over 10s */
}

/* Coaches Grid */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.metal-card {
  background: linear-gradient(135deg, #1f1f1f 0%, #050505 100%);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s;
  box-shadow: 10px 10px 30px rgba(0,0,0,0.8), inset 2px 2px 5px rgba(255,255,255,0.05);
}

.metal-card:hover {
  border-color: rgba(255, 94, 0, 0.5);
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(255, 94, 0, 0.2), inset 2px 2px 5px rgba(255,255,255,0.1);
}

.coach-badge {
  background: var(--primary-orange);
  color: var(--bg-darker);
  padding: 5px 15px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.8rem;
}

.coach-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.coach-role {
  color: var(--primary-orange);
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.pricing-card {
  position: relative;
}

.pricing-card.recommended {
  border-color: var(--primary-orange);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 94, 0, 0.1);
}

.pricing-card.recommended:hover {
  transform: scale(1.05) translateY(-10px);
}

.recommended-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-orange);
  color: var(--bg-darker);
  padding: 5px 20px;
  font-weight: bold;
}

.price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 30px;
}

.amount {
  font-size: 3.5rem;
  color: var(--primary-orange);
  font-weight: 900;
}

.currency, .period {
  color: var(--text-muted);
  font-size: 1.2rem;
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
}

.plan-features li {
  margin-bottom: 15px;
  color: var(--text-muted);
}

.plan-features li span {
  color: var(--primary-orange);
  margin-right: 10px;
}

/* Schedule */
.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  color: var(--text-light);
  border: 1px solid rgba(255, 94, 0, 0.5);
  padding: 10px 30px;
  transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--primary-orange);
  color: var(--bg-darker);
}

.schedule-container {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.schedule-table th, .schedule-table td {
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-table th {
  color: var(--primary-orange);
  background: rgba(255, 94, 0, 0.1);
}

.time-col {
  font-weight: bold;
  background: rgba(0, 0, 0, 0.5);
}

.has-class {
  cursor: pointer;
  transition: 0.3s;
  color: var(--text-light);
}

.has-class:hover {
  background: rgba(255, 94, 0, 0.2);
  color: var(--primary-orange);
}

/* Contact */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  padding: 30px;
  margin-bottom: 20px;
}

.icon-wrapper {
  color: var(--primary-orange);
  font-size: 2rem;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  font-family: var(--font-main);
  transition: 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary-orange);
  outline: none;
}

/* Footer */
.footer {
  background: #020202;
  border-top: 1px solid rgba(255, 94, 0, 0.1);
  padding: 80px 0 0;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
  padding: 0 40px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-col h3 {
  margin-bottom: 25px;
}

.footer-col h3 span {
  color: var(--primary-orange);
}

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

.footer-col ul li {
  margin-bottom: 15px;
  color: var(--text-muted);
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

/* Page Headers for subpages */
.page-header {
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.header-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.page-header h1, .page-header p {
  z-index: 2;
  position: relative;
}

.page-header h1 {
  font-size: 4rem;
  margin-bottom: 15px;
}

.page-header p {
  color: var(--primary-orange);
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    justify-content: center;
    transition: 0.4s;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-links {
    margin: 20px 0;
    font-size: 1.5rem;
  }
  .menu-icon {
    display: block;
  }
  .hero-content-center h1 {
    font-size: 5rem;
  }
  .pole-row {
    flex-direction: column !important;
    margin-bottom: 40px !important;
  }
  .pole-image-huge {
    width: 100%;
    height: 350px !important;
    min-height: 350px;
    display: block;
    flex: none;
  }
  .section-padding {
    padding: 50px 20px !important;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-content-center h1 {
    font-size: 2.2rem;
    letter-spacing: 3px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .pole-text-huge h3 {
    font-size: 1.8rem;
  }
  .page-header h1 {
    font-size: 2.2rem;
  }
  .philosophy-text h2 {
    font-size: 1.8rem;
  }
}
