:root {
  /* Primary Color Palette - Meditation Theme */
  --primary-sage: #7a9654;
  --primary-lavender: #aea3db;
  --primary-mint: #99d1c3;
  --primary-peach: #f3c5a8;
  --primary-cream: #e2dcd0;
  
  /* Light/Dark Variations */
  --sage-light: #d0e5b9;
  --sage-dark: #485c3a;
  --lavender-light: #c6bae0;
  --lavender-dark: #7658ad;
  --mint-light: #e6fefa;
  --mint-dark: #5cd6d0;
  --peach-light: #fcc7b5;
  --peach-dark: #fb7c65;
  --cream-light: #faf7f2;
  --cream-dark: #dbd0be;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: Georgia, 'Times New Roman', Times, serif;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --container-max-width: 1200px;
  --border-radius: 15px;
  --box-shadow: 0 7px 20px rgba(153, 193, 123, 0.10);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--sage-dark);
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--mint-light) 100%);
  font-size: 16px;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.navbar {
  background: rgba(226, 226, 226, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(142, 179, 98, 0.10);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-size: 1.56rem;
  font-weight: 600;
  color: var(--sage-dark);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--sage-dark);
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background: var(--sage-light);
  color: var(--sage-dark);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--mint-light) 50%, var(--lavender-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../KUK_images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  padding-top: 100px !important;
}

.hero-content {
  padding-top: 50px !important;
  max-width: 600px;
}

.hero h1 {
  padding-top: 50px !important;
  font-size: 3rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.22rem;
  color: var(--sage-dark);
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Section Styling */
section {
  padding: var(--section-padding);
}

.section-title {
  font-size: 2.57rem;
  font-weight: 600;
  color: var(--sage-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.29rem;
  color: var(--sage-dark);
  text-align: center;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.section-desc {
  font-size: 1rem;
  color: var(--sage-dark);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

/* Cards */
.card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(152, 186, 131, 0.15);
}

.card-img-top {
  border-radius: var(--border-radius);
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.card-title {
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 0.63rem;
}

.card-text {
  color: var(--sage-dark);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--lavender-dark);
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-mint) 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--mint-dark) 100%);
  transform: translateY(-2px);
}

/* Forms */
.form-control {
  border: 2px solid var(--sage-light);
  border-radius: var(--border-radius);
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(129, 165, 102, 0.25);
  outline: none;
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--sage-light);
}

/* Testimonials */
.testimonial {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--sage-dark);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* FAQ */
.faq-item {
  background: white;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--box-shadow);
}

.faq-question {
  padding: 1.5rem;
  background: var(--sage-light);
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  color: var(--sage-dark);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--sage-dark);
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--sage-dark);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  color: var(--mint-light);
  margin-bottom: 1rem;
}

.footer a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 1;
}

.footer .row {
  margin-bottom: 2rem;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item img {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
