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

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

:root {
  --primary-color: #ff4444;
  --secondary-color: #0a0a0a;
  --accent-color: #ffd700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --gradient-primary: linear-gradient(135deg, #ff4444, #cc1100);
  --gradient-fire: linear-gradient(135deg, #ff4444, #ff8800, #ffaa00);
  --gradient-dark: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  --shadow-glow: 0 0 40px rgba(255, 68, 68, 0.4);
  --shadow-card: 0 15px 40px rgba(0, 0, 0, 0.4);
  --shadow-intense: 0 20px 60px rgba(255, 68, 68, 0.3);
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--secondary-color);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* Loading Screen */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 68, 68, 0.2);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 2rem;
}

.loading-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: var(--primary-color);
  letter-spacing: 2px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.98);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  padding: 0.8rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  font-family: 'Oswald', sans-serif;
}

.gym-tagline {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 2px;
  margin-top: -5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

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

.nav-links a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.cta-nav-button {
  background: var(--gradient-fire);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  color: var(--text-light);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
}

.cta-nav-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 68, 68, 0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: 
    linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.9)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gym" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ff4444" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23gym)"/></svg>');
  overflow: hidden;
  padding: 2rem 0;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 68, 68, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 68, 68, 0.15) 0%, transparent 50%);
  animation: heroGlow 10s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}

.floating-element:nth-child(4) {
  top: 30%;
  left: 70%;
  animation-delay: 1s;
}

.floating-element:nth-child(5) {
  top: 70%;
  left: 90%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-block;
  background: var(--gradient-fire);
  color: var(--secondary-color);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 2rem;
  border: 2px solid var(--accent-color);
  animation: slideInUp 1s ease-out;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  box-shadow: var(--shadow-glow);
}

.hero h1 {
  font-size: 5.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--text-light);
  animation: slideInUp 1s ease-out 0.2s both;
  line-height: 1.1;
  font-family: 'Oswald', sans-serif;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
  letter-spacing: 2px;
}

.hero h1 .highlight {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  font-size: 6rem;
  text-shadow: none;
}

.hero-description {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: slideInUp 1s ease-out 0.4s both;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 500;
}

.hero-motivational {
  margin-bottom: 3rem;
  animation: slideInUp 1s ease-out 0.5s both;
}

.motivation-text {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--accent-color);
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 4rem;
  animation: slideInUp 1s ease-out 0.6s both;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 1.2rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cta-button.primary {
  background: var(--gradient-fire);
  color: var(--secondary-color);
  box-shadow: var(--shadow-intense);
}

.cta-button.secondary {
  background: transparent;
  color: var(--text-light);
  border: 3px solid var(--primary-color);
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
}

.cta-button.primary:hover {
  box-shadow: 0 25px 70px rgba(255, 68, 68, 0.5);
}

.cta-button.secondary:hover {
  background: var(--gradient-fire);
  color: var(--secondary-color);
  border-color: transparent;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  animation: slideInUp 1s ease-out 0.7s both;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 68, 68, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 68, 68, 0.3);
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-family: 'Oswald', sans-serif;
}

.stat-item p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Titles */
.section-title {
  font-size: 4rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
}

.section-subtitle {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 5rem;
  color: var(--text-light);
  opacity: 0.8;
  font-weight: 500;
}

/* Services Section */
.services {
  padding: 10rem 0;
  background: var(--secondary-color);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="weights" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M10,20 L30,20 M15,15 L25,15 M15,25 L25,25" stroke="%23ff4444" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23weights)"/></svg>');
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.service-card {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  padding: 3.5rem 2.5rem;
  border-radius: 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255, 68, 68, 0.2);
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-fire);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 25px;
}

.service-card:hover::before {
  opacity: 0.1;
}

.service-card:hover {
  transform: translateY(-20px);
  box-shadow: var(--shadow-intense);
  border-color: var(--primary-color);
}

.service-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(255, 68, 68, 0.5));
}

.service-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  position: relative;
  z-index: 2;
  font-family: 'Oswald', sans-serif;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-light);
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.service-highlight {
  background: rgba(255, 68, 68, 0.2);
  color: var(--accent-color);
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  border: 1px solid var(--primary-color);
  position: relative;
  z-index: 2;
}

.service-btn {
  background: var(--gradient-fire);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 25px;
  color: var(--secondary-color);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 68, 68, 0.4);
}

/* Trainers Section */
.trainers {
  padding: 10rem 0;
  background: var(--gradient-dark);
  position: relative;
}

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.trainer-card {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  padding: 3.5rem 2.5rem;
  border-radius: 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255, 68, 68, 0.2);
}

.trainer-card:hover {
  transform: translateY(-20px);
  box-shadow: var(--shadow-intense);
  border-color: var(--primary-color);
}

.trainer-image {
  position: relative;
  margin-bottom: 2rem;
}

.trainer-image i {
  font-size: 6rem;
  color: var(--primary-color);
  filter: drop-shadow(0 0 20px rgba(255, 68, 68, 0.5));
}

.trainer-badge {
  position: absolute;
  top: -10px;
  right: 20%;
  background: var(--gradient-fire);
  color: var(--secondary-color);
  padding: 0.4rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

.trainer-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-family: 'Oswald', sans-serif;
}

.specialty {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.trainer-achievement {
  background: rgba(255, 215, 0, 0.2);
  color: var(--accent-color);
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--accent-color);
}

.trainer-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.trainer-stats .stat {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem;
  background: rgba(255, 68, 68, 0.1);
  border-radius: 10px;
}

.trainer-stats .label {
  color: var(--text-light);
  opacity: 0.8;
}

.trainer-stats .value {
  color: var(--primary-color);
  font-weight: 600;
}

.trainer-btn {
  background: var(--gradient-fire);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 25px;
  color: var(--secondary-color);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.trainer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 68, 68, 0.4);
}

/* Membership Section */
.membership {
  padding: 10rem 0;
  background: var(--secondary-color);
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.membership-card {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  padding: 3.5rem 2.5rem;
  border-radius: 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255, 68, 68, 0.2);
}

.membership-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.membership-card:hover {
  transform: translateY(-20px) scale(1.05);
  box-shadow: var(--shadow-intense);
  border-color: var(--primary-color);
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-fire);
  color: var(--secondary-color);
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Oswald', sans-serif;
  box-shadow: var(--shadow-glow);
}

.membership-card h3 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-family: 'Oswald', sans-serif;
}

.price {
  margin-bottom: 2rem;
}

.price .amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-color);
  font-family: 'Oswald', sans-serif;
}

.price .duration {
  font-size: 1rem;
  color: var(--text-light);
  opacity: 0.7;
}

.features {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: left;
}

.features li {
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text-light);
}

.features i {
  color: var(--primary-color);
  font-size: 1rem;
}

.membership-btn {
  background: var(--gradient-fire);
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 25px;
  color: var(--secondary-color);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1.1rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.membership-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 68, 68, 0.4);
}

/* Testimonials Section */
.testimonials {
  padding: 10rem 0;
  background: var(--gradient-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.testimonial-card {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  padding: 3rem 2.5rem;
  border-radius: 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
  border: 2px solid rgba(255, 68, 68, 0.2);
}

.testimonial-card:hover {
  transform: translateY(-20px);
  box-shadow: var(--shadow-intense);
  border-color: var(--primary-color);
}

.transformation-badge {
  background: var(--gradient-fire);
  color: var(--secondary-color);
  padding: 0.6rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.stars i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-light);
  font-style: italic;
}

.transformation-result {
  background: rgba(255, 215, 0, 0.2);
  color: var(--accent-color);
  padding: 1rem;
  border-radius: 15px;
  margin: 1.5rem 0;
  border: 1px solid var(--accent-color);
  font-weight: 600;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.author-image {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.testimonial-author h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  font-family: 'Oswald', sans-serif;
}

.testimonial-author span {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
}

/* About Section */
.about {
  padding: 10rem 0;
  background: var(--secondary-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--text-light);
  font-family: 'Oswald', sans-serif;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-light);
  opacity: 0.9;
}

.facilities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 68, 68, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 68, 68, 0.3);
}

.facility-item i {
  font-size: 2rem;
  color: var(--primary-color);
}

.facility-item span {
  font-weight: 600;
  color: var(--text-light);
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-3d {
  position: relative;
  text-align: center;
  padding: 3rem;
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border-radius: 25px;
  border: 2px solid rgba(255, 68, 68, 0.2);
}

.image-3d i {
  color: var(--primary-color);
  filter: drop-shadow(0 0 30px rgba(255, 68, 68, 0.5));
}

.achievement-badges {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.badge {
  background: var(--gradient-fire);
  color: var(--secondary-color);
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Oswald', sans-serif;
}

/* Footer */
.footer {
  background: var(--gradient-dark);
  padding: 5rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-family: 'Oswald', sans-serif;
}

.footer-section p,
.footer-section a {
  color: var(--text-light);
  opacity: 0.8;
  text-decoration: none;
  line-height: 1.8;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--gradient-fire);
  border-radius: 50%;
  color: var(--secondary-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 68, 68, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 68, 68, 0.3);
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-light);
  opacity: 0.7;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  opacity: 1;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero h1 .highlight {
    font-size: 4rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .motivation-text {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 1.2rem 2rem;
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .services-grid,
  .trainers-grid,
  .membership-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .facilities-list {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero h1 .highlight {
    font-size: 3.2rem;
  }
  
  .gym-tagline {
    font-size: 0.5rem;
  }
  
  .motivation-text {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
  
  .service-card,
  .trainer-card,
  .membership-card,
  .testimonial-card {
    padding: 2.5rem 2rem;
  }
}