/* Minimalist Living Course Template - Main CSS */

:root {
  /* Primary Color Palette - Pastel High-Contrast Colors */
  --primary-sage: #8ca576;
  --primary-cream: #ffffdf;
  --primary-stone: #7e746a;
  --primary-earth: #e2c5aa;
  --primary-slate: #5c6777;
  
  /* Light/Dark Shades */
  --light-sage: #c4dea2;
  --dark-sage: #7f9c62;
  --light-cream: #FEFEF9;
  --dark-cream: #e4e4d2;
  --light-stone: #9e9a98;
  --dark-stone: #7d736c;
  --light-earth: #f0cbad;
  --dark-earth: #c4a872;
  --light-slate: #7d929b;
  --dark-slate: #64727b;
  
  /* Typography - Conservative Sizes */
  --navbar-brand-size: 1.1rem;
  --h1-size: 2rem;
  --h2-size: 1.75rem;
  --h3-size: 1.5rem;
  --h4-size: 1.25rem;
  --p-size: 0.95rem;
  --small-size: 0.85rem;
}

/* Global Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--primary-slate);
  line-height: 1.6;
  font-size: var(--p-size);
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }
p { font-size: var(--p-size); }
small { font-size: var(--small-size); }

/* Header Styles */
.navbar-brand {
  font-size: var(--navbar-brand-size);
  font-weight: 600;
  color: var(--primary-sage);
}

.navbar {
  background-color: var(--light-cream);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  color: var(--primary-slate);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-sage);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--primary-cream) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--light-sage);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 10%;
  right: 15%;
}

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 10%;
  width: 150px;
  height: 150px;
}

/* Section Spacing */
section {
  padding: 4rem 0;
}

.section-title {
  color: var(--primary-sage);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--primary-stone);
  font-weight: 400;
  margin-bottom: 2rem;
}

/* Services Cards */
.service-card {
  background: var(--light-cream);
  border: 1px solid var(--light-stone);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-price {
  color: var(--primary-sage);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Features Section */
.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  background: white;
  border: 2px solid var(--light-stone);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-sage);
}

.price-value {
  font-size: 2.5rem;
  color: var(--primary-sage);
  font-weight: 700;
}

/* Team Cards */
.team-card {
  text-align: center;
  padding: 1.5rem;
}

.team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--light-sage);
}

/* Reviews/Testimonials */
.review-card {
  background: var(--light-cream);
  border-left: 4px solid var(--primary-sage);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.review-author {
  color: var(--primary-sage);
  font-weight: 600;
}

/* Case Studies */
.case-study-card {
  background: white;
  border: 1px solid var(--light-stone);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-sage);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  padding: 1.5rem;
  border-left: 3px solid var(--primary-sage);
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 2rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-sage);
}

/* Career Cards */
.career-card {
  background: var(--light-cream);
  border: 1px solid var(--light-stone);
  border-radius: 10px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-3px);
}

/* Core Info Grid */
.core-info-item {
  background: white;
  border: 1px solid var(--light-stone);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

/* Contact Form */
.contact-form {
  background: var(--light-cream);
  border-radius: 15px;
  padding: 3rem;
}

.form-control {
  border: 1px solid var(--light-stone);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(124, 155, 90, 0.25);
}

.btn-primary {
  background-color: var(--primary-sage);
  border-color: var(--primary-sage);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: var(--dark-sage);
  border-color: var(--dark-sage);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border: 1px solid var(--light-stone);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.faq-question {
  color: var(--primary-sage);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Blog Cards */
.blog-card {
  background: white;
  border: 1px solid var(--light-stone);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Gallery */
.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: var(--primary-slate);
  color: var(--light-cream);
  padding: 3rem 0 1rem;
}

footer h5 {
  color: var(--primary-cream);
}

footer a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-cream);
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-cream);
}

.breadcrumb-image {
  width: 100%;
  max-width: 200px;
  height: auto;
} 

.hero-section h1 {
    padding-top: 100px;
}


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
