/* Indoor Climbing Gym Template - Main CSS */

:root {
  /* Primary Color Palette */
  --primary-orange: #ff6b35;
  --primary-orange-light: #ff8b65;
  --primary-orange-dark: #e55a2b;
  
  --primary-teal: #2d7d7f;
  --primary-teal-light: #4da6a8;
  --primary-teal-dark: #1f5657;
  
  --primary-forest: #2c5530;
  --primary-forest-light: #4a7c50;
  --primary-forest-dark: #1d3a20;
  
  --primary-charcoal: #2c3e50;
  --primary-charcoal-light: #34495e;
  --primary-charcoal-dark: #1a252f;
  
  --primary-warm-gray: #7f6b5d;
  --primary-warm-gray-light: #a38b7a;
  --primary-warm-gray-dark: #5c4e42;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-forest) 0%, var(--primary-charcoal) 100%);
  --gradient-hero: linear-gradient(rgba(44, 62, 80, 0.7), rgba(45, 125, 127, 0.7));
}

/* Typography */
body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary-charcoal);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--primary-orange) !important;
}

/* Header */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--primary-charcoal) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-orange) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero), url('../SOU_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--primary-charcoal);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Cards */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Services */
.services-card {
  text-align: center;
  padding: 2rem;
  height: 100%;
}

.services-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.price-tag {
  background: var(--gradient-primary);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

/* Team */
.team-card {
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Testimonials */
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  margin: 0 15px;
}

.testimonial-stars {
  color: #ffc107;
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: 20px;
}

.form-control {
  border-radius: 10px;
  border: 2px solid transparent;
  padding: 12px 20px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 25px;
  padding: 12px 40px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* FAQ */
.accordion-button {
  background: var(--light-gray);
  border: none;
  border-radius: 10px !important;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-orange);
  color: white;
}

/* Footer */
.footer {
  background: var(--gradient-secondary);
  color: white;
  padding: 60px 0 20px;
}

.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-orange);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .section {
    padding: 60px 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 