/* Personal Fitness Trainer Certification - Main CSS */

/* Color Palette - 5 Primary Colors + Light/Dark Shades */
:root {
  --primary-blue: #56afe6;
  --primary-blue-light: #7ebaff;
  --primary-blue-dark: #3d66bb;
  
  --primary-green: #70bb27;
  --primary-green-light: #b0df4e;
  --primary-green-dark: #7dcd24;
  
  --primary-orange: #eda324;
  --primary-orange-light: #eaad55;
  --primary-orange-dark: #dd872d;
  
  --primary-purple: #ac10ef;
  --primary-purple-light: #b33aff;
  --primary-purple-dark: #500fbc;
  
  --primary-pink: #ff1961;
  --primary-pink-light: #ff6bb0;
  --primary-pink-dark: #cb0b3b;
  
  --white: #FFFFFF;
  --black: #000000;
  --gray-light: #F8F9FA;
  --gray-medium: #68707d;
  --gray-dark: #292f37;
  
  --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  --gradient-secondary: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
  --gradient-accent: linear-gradient(135deg, var(--primary-pink), var(--primary-orange));
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
  
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 24px;
}

/* Conservative Font Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-dark);
  background-color: var(--white);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header Styles */
.navbar {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.44rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--gray-dark);
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../YID_images/hero-bg.webp') center/cover;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 2.52rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.24rem;
  font-weight: 400;
  margin-bottom: 1.68rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--gray-dark);
}

.section-subtitle {
  font-size: 1.15rem;
  text-align: center;
  color: var(--gray-medium);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: var(--gray-medium);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: var(--gray-light);
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.feature-name {
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 0.63rem;
}

.feature-desc {
  color: var(--gray-medium);
  font-size: 1.01rem;
}

/* Services Section */
.services-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-name {
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  color: var(--gray-dark);
}

.service-desc {
  color: var(--gray-medium);
  margin-bottom: 1rem;
  font-size: 0.93rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--gray-medium);
  font-size: 0.92rem;
}

.service-features li:before {
  content: "âœ“";
  color: var(--primary-green);
  font-weight: bold;
  margin-right: 0.5rem;
}

.service-price {
  font-size: 1.54rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* Features Section */
.features-section {
  background: var(--gradient-secondary);
  color: var(--white);
}

.features-section .section-title,
.features-section .section-subtitle,
.features-section .section-desc {
  color: var(--white);
}

.features-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--border-radius);
  height: 100%;
  transition: all 0.3s ease;
}

.features-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

/* Price Plan Section */
.priceplan-section {
  background: var(--gray-light);
}

.price-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.price-card.featured {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.05);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.price-value {
  font-size: 2.51rem;
  font-weight: 700;
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Team Section */
.team-section {
  background: var(--white);
}

.team-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.21rem;
  font-weight: 600;
  margin-bottom: 0.56rem;
}

.team-role {
  color: var(--gray-medium);
  font-size: 0.92rem;
}

/* Reviews Section */
.reviews-section {
  background: var(--gradient-accent);
  color: var(--white);
}

.reviews-section .section-title,
.reviews-section .section-subtitle,
.reviews-section .section-desc {
  color: var(--white);
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.60rem;
  transition: all 0.3s ease;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.03rem;
}

.review-author {
  font-weight: 600;
  text-align: right;
}

/* Case Study Section */
.casestudy-section {
  background: var(--gray-light);
}

.casestudy-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.casestudy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.casestudy-title {
  font-size: 1.31rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

/* Process Section */
.process-section {
  background: var(--white);
}

.process-item {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.63rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-title {
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 0.74rem;
}

/* Timeline Section */
.timeline-section {
  background: var(--gray-light);
}

.timeline-item {
  padding: 1.5rem 0;
  border-left: 3px solid var(--primary-blue);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 1.5rem;
  width: 14px;
  height: 14px;
  background: var(--primary-blue);
  border-radius: 50%;
}

.timeline-title {
  font-size: 1.19rem;
  font-weight: 600;
  margin-bottom: 0.56rem;
}

/* Career Section */
.career-section {
  background: var(--white);
}

.career-card {
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.career-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.career-title {
  font-size: 1.26rem;
  font-weight: 600;
  margin-bottom: 0.61rem;
  color: var(--primary-blue);
}

.career-role {
  color: var(--gray-medium);
  font-size: 0.94rem;
  margin-bottom: 1rem;
}

/* Core Info Section */
.coreinfo-section {
  background: var(--gradient-primary);
  color: var(--white);
}

.coreinfo-section .section-title,
.coreinfo-section .section-subtitle,
.coreinfo-section .section-desc {
  color: var(--white);
}

.coreinfo-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  height: 100%;
}

.coreinfo-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.coreinfo-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  background: var(--gray-light);
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.form-control {
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--gray-light);
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(63, 139, 206, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.contact-info h5 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.58rem;
  color: var(--gray-medium);
}

/* Blog Section */
.blog-section {
  background: var(--white);
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.20rem;
  font-weight: 600;
  margin-bottom: 0.67rem;
}

.blog-excerpt {
  color: var(--gray-medium);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  background: var(--gray-light);
}

.faq-card {
  background: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  background: var(--white);
  border: none;
  padding: 1.5rem;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: var(--gray-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--gray-light);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-medium);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: var(--gray-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.56rem;
}

.footer-links a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--gray-medium);
  padding-top: 1rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* Utilities */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.bg-gradient-accent {
  background: var(--gradient-accent);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.87rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .navbar-brand {
    font-size: 1.29rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.82rem;
  }
  
  .section-title {
    font-size: 1.63rem;
  }
  
  .price-value {
    font-size: 2rem;
  }
}


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
