/* Ritual Productivity Template - Main CSS */
/* Bootstrap 5 + FontAwesome Integration */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/Swiper/11.0.0/swiper-bundle.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');

/* CSS Variables - 5 Primary Colors + Shades */
:root {
  --primary-sage: #8fa48c;
  --primary-terracotta: #d0875b;
  --primary-deep-navy: #202938;
  --primary-warm-cream: #F7F5F3;
  --primary-forest: #455840;
  
  /* Light Shades */
  --sage-light: #a7c0a8;
  --terracotta-light: #d49c78;
  --navy-light: #6c798d;
  --cream-light: #FEFCFA;
  --forest-light: #6c9c66;
  
  /* Dark Shades */
  --sage-dark: #729770;
  --terracotta-dark: #98593b;
  --navy-dark: #18212a;
  --cream-dark: #f3f3f3;
  --forest-dark: #425a3a;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-sage), var(--primary-forest));
  --gradient-secondary: linear-gradient(135deg, var(--primary-terracotta), var(--terracotta-dark));
  --gradient-hero: linear-gradient(135deg, var(--primary-deep-navy), var(--navy-light));
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 18.00px;
  line-height: 1.6;
  color: var(--primary-deep-navy);
  background-color: var(--primary-warm-cream);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Conservative Typography */
h1 { font-size: 2.35rem; font-weight: 600; margin-bottom: 1.24rem; }
h2 { font-size: 1.94rem; font-weight: 600; margin-bottom: 1.00rem; }
h3 { font-size: 1.45rem; font-weight: 500; margin-bottom: 0.69rem; }
h4 { font-size: 1.32rem; font-weight: 500; margin-bottom: 0.68rem; }
h5 { font-size: 1.19rem; font-weight: 500; margin-bottom: 0.61rem; }
h6 { font-size: 1.06rem; font-weight: 500; margin-bottom: 0.46rem; }

p { margin-bottom: 1.24rem; }

/* Header & Navigation */
.navbar {
  background: var(--gradient-primary);
  backdrop-filter: blur(11px);
  box-shadow: 0 11px 25px rgba(47, 69, 99, 0.10);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.35rem !important;
  font-weight: 600;
  color: var(--primary-warm-cream) !important;
}

.navbar-nav .nav-link {
  color: var(--primary-warm-cream) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--cream-light) !important;
  transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  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: url('../images/hero-bg.webp') center/cover;
  opacity: 0.15;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
  color: var(--primary-warm-cream);
}

.hero-title {
  font-size: 2.56rem;
  font-weight: 700;
  margin-bottom: 1.66rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 2.24rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.19rem;
  margin-bottom: 2.61rem;
  opacity: 0.8;
}

/* Decorative Elements */
.decorative-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-secondary);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-22px); }
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1.24rem;
  color: var(--primary-deep-navy);
}

.section-subtitle {
  text-align: center;
  color: var(--sage-dark);
  margin-bottom: 1.66rem;
}

.section-desc {
  text-align: center;
  color: var(--navy-light);
  margin-bottom: 3.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3.11rem;
}

.service-item {
  background: var(--primary-warm-cream);
  border-radius: 19px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 30px rgba(57, 82, 99, 0.10);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 40px rgba(30, 43, 62, 0.15);
  border-color: var(--primary-sage);
}

.service-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1.66rem;
}

.service-item h4 {
  color: var(--primary-deep-navy);
  margin-bottom: 1.24rem;
}

.service-item p {
  color: var(--navy-light);
  margin-bottom: 1.66rem;
}

.service-price {
  font-size: 1.56rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  margin-bottom: 1.24rem;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3.11rem;
}

.team-member {
  text-align: center;
  background: var(--primary-warm-cream);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(48, 77, 91, 0.10);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(29, 46, 57, 0.15);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.66rem;
  border: 4px solid var(--primary-sage);
}

/* Testimonials Slider */
.testimonials-slider {
  background: var(--gradient-primary);
  color: var(--primary-warm-cream);
  padding: 4rem 0;
  margin: 3rem 0;
}

.testimonial-item {
  text-align: center;
  padding: 2rem;
}

.testimonial-text {
  font-size: 1.32rem;
  font-style: italic;
  margin-bottom: 2.24rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1.19rem;
}

/* Contact Form */
.contact-form {
  background: var(--primary-warm-cream);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(29, 41, 60, 0.10);
  margin-top: 3.11rem;
}

.form-control {
  border: 2px solid var(--sage-light);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 18.00px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(149, 164, 145, 0.25);
}

.btn-primary {
  background: var(--gradient-secondary);
  border: none;
  border-radius: 10px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(223, 132, 100, 0.30);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.11rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* FAQ */
.faq-item {
  background: var(--primary-warm-cream);
  border-radius: 10px;
  margin-bottom: 1.24rem;
  box-shadow: 0 5px 15px rgba(42, 59, 76, 0.05);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-deep-navy);
  border-bottom: 1px solid var(--sage-light);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--navy-light);
  display: none;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3.11rem;
}

.blog-item {
  background: var(--primary-warm-cream);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(42, 66, 85, 0.10);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(51, 67, 96, 0.15);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  color: var(--primary-deep-navy);
  margin-bottom: 1.24rem;
}

.blog-excerpt {
  color: var(--navy-light);
  margin-bottom: 1.66rem;
}

/* Footer */
.footer {
  background: var(--primary-deep-navy);
  color: var(--primary-warm-cream);
  padding: 3rem 0 1rem;
  margin-top: 5.17rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2.24rem;
}

.footer-section h5 {
  color: var(--primary-sage);
  margin-bottom: 1.24rem;
}

.footer-section a {
  color: var(--sage-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-warm-cream);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.25rem;
  border-top: 1px solid var(--navy-light);
}

/* Utilities */
.text-primary-sage { color: var(--primary-sage) !important; }
.text-primary-terracotta { color: var(--primary-terracotta) !important; }
.bg-gradient-primary { background: var(--gradient-primary) !important; }
.bg-gradient-secondary { background: var(--gradient-secondary) !important; }

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
} 


/* 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;
    }
}
