/* ===== YOGA STUDIO TEMPLATE - MAIN STYLES ===== */

/* Color Palette - 5 Primary Colors + Shades */
:root {
  /* Primary Colors */
  --color-primary: #865282;        /* Deep Lavender */
  --color-secondary: #95beaa;      /* Sage Green */
  --color-accent: #f9c6bc;         /* Soft Rose */
  --color-neutral: #d8d3cf;        /* Warm Beige */
  --color-highlight: #c3d7e2;      /* Powder Blue */
  
  /* Light Shades */
  --color-primary-light: #a08ca1;
  --color-secondary-light: #c3eecc;
  --color-accent-light: #fecfd0;
  --color-neutral-light: #f1f1f1;
  --color-highlight-light: #d7d7d7;
  
  /* Dark Shades */
  --color-primary-dark: #503353;
  --color-secondary-dark: #81a58d;
  --color-accent-dark: #f6bebc;
  --color-neutral-dark: #e5d4c9;
  --color-highlight-dark: #bec8d4;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  --gradient-accent: linear-gradient(45deg, var(--color-accent), var(--color-highlight));
  --gradient-hero: linear-gradient(rgba(149, 107, 149, 0.80), rgba(182, 218, 194, 0.80));
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-navbar-brand: 1.5rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --section-padding-small: 3rem 0;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333333;
  background-color: var(--color-neutral-light);
}

/* 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;
    scroll-behavior: auto !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 { font-size: var(--font-size-h1); color: var(--color-primary-dark); }
h2 { font-size: var(--font-size-h2); color: var(--color-primary); }
h3 { font-size: var(--font-size-h3); color: var(--color-primary); }
h4 { font-size: var(--font-size-h4); }

p {
  margin-bottom: 1rem;
  color: #6e6e6e;
}

/* Header & Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: var(--font-size-navbar-brand);
  font-weight: 700;
  color: var(--color-primary) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--color-primary-dark) !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-secondary) !important;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../GUD_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
}

.hero-content {
  padding-top: 50px !important;
  z-index: 2;
}

.hero-title {
  font-size: var(--font-size-h1);
  color: white;
  text-shadow: 4px 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 1.66rem;
}

.hero-subtitle {
  font-size: 1.33rem;
  color: var(--color-neutral-light);
  margin-bottom: 2rem;
}

.hero-desc {
  font-size: 1.15rem;
  color: white;
  margin-bottom: 2rem;
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-secondary-dark);
  font-size: 1.14rem;
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #6e6e6e;
}

/* About Section */
.about-section {
  background: var(--color-neutral-light);
}

.about-feature {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 110px;
  background: white;
  box-shadow: 0 8px 19px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-6px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--gradient-hero);
  color: white;
}

.service-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: scale(1.05);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent-light);
  margin-bottom: 1rem;
}

/* Team Section */
.team-section {
  background: var(--color-highlight-light);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 7px solid var(--color-primary);
}

/* Reviews Section */
.reviews-section {
  background: var(--color-accent-light);
}

.review-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 19px rgba(0,0,0,0.1);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #6d6868;
}

.review-author {
  font-weight: 600;
  color: var(--color-primary);
}

/* FAQ Section */
.faq-section {
  background: var(--color-neutral-light);
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  background: var(--color-primary);
  color: white;
  padding: 1.5rem;
  margin: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--color-primary-dark);
}

.faq-answer {
  padding: 1.5rem;
  color: #4b4b4b;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery-section {
  background: var(--color-highlight-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Contact Section */
.contact-section {
  background: var(--gradient-accent);
  color: #1a1a1a;
}

.contact-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--color-neutral);
  border-radius: 10px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(154, 116, 158, 0.25);
}

.btn-primary {
  background: var(--color-primary);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--color-primary-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--color-neutral-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

/* Blog Section */
.blog-section {
  background: var(--color-secondary-light);
}

.blog-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: #5b5354;
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--color-secondary-dark);
  font-weight: 600;
  text-decoration: none;
}

/* Process Section */
.process-section {
  background: var(--color-neutral-light);
}

.process-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.62rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
.timeline-section {
  background: var(--color-highlight-light);
}

.timeline-item {
  background: white;
  padding: 2rem;
  border-left: 4px solid var(--color-primary);
  margin-bottom: 2rem;
  border-radius: 0 15px 15px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Case Study Section */
.casestudy-section {
  background: var(--color-accent-light);
}

.casestudy-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Career Section */
.career-section {
  background: var(--color-secondary-light);
}

.career-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.career-role {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.14rem;
}

/* Core Info Section */
.coreinfo-section {
  background: var(--gradient-primary);
  color: white;
}

.coreinfo-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  text-align: center;
}

.coreinfo-item i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 1rem 0;
  background: var(--color-neutral-light);
}

.breadcrumb-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* Additional Pages Sections */
.additional-section {
  padding: var(--section-padding-small);
}

.additional-section:nth-child(odd) {
  background: var(--color-neutral-light);
}

.additional-section:nth-child(even) {
  background: white;
}

/* Space Page */
#space {
  min-height: 70vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  text-align: center;
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-custom {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.border-gradient {
  border: 2px solid;
  border-image: var(--gradient-primary) 1;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Image Responsiveness */
img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Contact Info */
.contact-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.contact-info i {
  color: var(--color-accent-light);
  margin-right: 0.5rem;
  font-size: 1.23rem;
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
