/* Main CSS for Remote Peer-Coaching Platform Template */
/* Bootstrap 5 Compatible - No Overrides */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-soft-blue: #79c7ec;
  --primary-warm-coral: #ff989a;
  --primary-sage-green: #9cb294;
  --primary-soft-purple: #d6b58f;
  --primary-cream: #fffae8;
  
  /* Light/Dark Shades */
  --light-blue: #ccdcf1;
  --dark-blue: #24678d;
  --light-coral: #FFF5F5;
  --dark-coral: #d78e85;
  --light-sage: #F1F8ED;
  --dark-sage: #57872e;
  --light-purple: #fff7eb;
  --dark-purple: #7c512f;
  
  /* Typography - Conservative Sizes */
  --font-size-h1: 2.25rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --card-border-radius: 0.75rem;
}

/* Base Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #33465c;
}

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

/* Navbar Brand - Conservative Size */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Lazy Loading Images */
.lozad {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.lozad.loaded {
  opacity: 1;
}

img.lozad {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.hero-decorative {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-blob-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-soft-blue);
  top: 10%;
  right: 10%;
}

.hero-blob-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-sage-green);
  bottom: 20%;
  left: 5%;
}

/* Sections */
.section {
  padding: var(--section-padding);
}

.section-alt {
  background-color: var(--light-cream);
}

/* Cards */
.custom-card {
  border: none;
  border-radius: var(--card-border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Service Cards */
.service-card {
  background: white;
  text-align: center;
  padding: 2rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-soft-blue);
}

/* Team Cards */
.team-card img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* FAQ Cards */
.faq-card {
  margin-bottom: 1rem;
  background: white;
}

.faq-question {
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #6a7b83;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: var(--card-border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Footer */
.footer {
  background-color: var(--dark-blue);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-cream);
  margin-bottom: 1rem;
}

.footer a {
  color: #a6b6be;
  text-decoration: none;
}

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

/* Gallery */
.gallery-item {
  overflow: hidden;
  border-radius: var(--card-border-radius);
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Price Plan Cards */
.price-card {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.price-featured {
  border: 2px solid var(--primary-soft-blue);
  transform: scale(1.05);
}

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

/* Button Styles */
.btn-primary-custom {
  background-color: var(--primary-soft-blue);
  border-color: var(--primary-soft-blue);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-weight: 500;
}

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

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

@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-decorative {
    display: none;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
} 

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


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

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

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

.x-link::after {
    content: '✦';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
