/* Main CSS for Home Spa Night Kits Template */

:root {
  /* Primary Color Palette */
  --spa-primary: #9c5c71;
  --spa-secondary: #b9c7b6;
  --spa-accent: #fff2d2;
  --spa-neutral: #80678c;
  --spa-luxury: #ba9a7e;
  
  /* Light/Dark Shades */
  --spa-primary-light: #a9738c;
  --spa-primary-dark: #523636;
  --spa-secondary-light: #d0decc;
  --spa-secondary-dark: #768e6f;
  --spa-accent-light: #e6e1c5;
  --spa-accent-dark: #e6caab;
  --spa-neutral-light: #93879b;
  --spa-neutral-dark: #676469;
  --spa-luxury-light: #c6ad8a;
  --spa-luxury-dark: #9c7e5b;
  
  /* Additional Colors */
  --spa-white: #FFFFFF;
  --spa-off-white: #FAFAFA;
  --spa-text-dark: #1e1c1c;
  --spa-text-light: #7c7b7b;
  --spa-border: #f8f8f8;
  
  /* Gradients */
  --spa-gradient-1: linear-gradient(135deg, var(--spa-primary), var(--spa-secondary));
  --spa-gradient-2: linear-gradient(45deg, var(--spa-accent), var(--spa-luxury));
  --spa-gradient-3: linear-gradient(180deg, var(--spa-primary-light), var(--spa-primary-dark));
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--spa-text-dark);
  font-size: 20.00px;
  overflow-x: hidden;
}

@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;
  line-height: 1.3;
  margin-bottom: 1.11rem;
}

h1 { font-size: 2.57rem; }
h2 { font-size: 2.05rem; }
h3 { font-size: 1.81rem; }
h4 { font-size: 1.61rem; }
h5 { font-size: 1.37rem; }
h6 { font-size: 1.24rem; }

p { margin-bottom: 1.11rem; }

/* Header */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.61rem !important;
  font-weight: 700;
  color: var(--spa-primary) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--spa-text-dark) !important;
  transition: color 0.3s ease;
  margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
  color: var(--spa-primary) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: var(--spa-gradient-1);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../LAF_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
  color: white;
}

.hero-decorative {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: var(--spa-accent);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 1;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.19rem;
}

.section-title h2 {
  color: var(--spa-primary);
  margin-bottom: 1.11rem;
}

.section-title p {
  color: var(--spa-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-feature {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 110px;
  background: var(--spa-off-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-9px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 3.06rem;
  color: var(--spa-primary);
  margin-bottom: 1.11rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.24rem;
}

.service-card {
  background: white;
  border-radius: 19px;
  overflow: hidden;
  box-shadow: 0 9px 210px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  font-size: 1.61rem;
  font-weight: 700;
  color: var(--spa-primary);
  margin-top: 1.18rem;
}

/* Features Section */
.features-section {
  background: var(--spa-gradient-2);
  color: white;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-item i {
  font-size: 2.57rem;
  margin-bottom: 1.11rem;
  color: white;
}

/* Price Plan Section */
.price-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.24rem;
}

.price-card {
  background: white;
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card.featured {
  border: 3px solid var(--spa-primary);
  transform: scale(1.05);
}

.price-card .price {
  font-size: 2.57rem;
  font-weight: 700;
  color: var(--spa-primary);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--spa-border);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3.24rem;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background-size: cover;
  background-position: center;
  border: 5px solid var(--spa-accent);
}

/* Reviews Section */
.reviews-slider {
  margin-top: 3.24rem;
}

.review-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  margin: 0 1rem;
  text-align: center;
}

.review-stars {
  color: var(--spa-luxury);
  font-size: 1.28rem;
  margin-bottom: 1.11rem;
}

/* Case Studies Section */
.casestudy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3.24rem;
}

.casestudy-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.casestudy-item:hover {
  transform: translateY(-5px);
}

.casestudy-content {
  padding: 2rem;
}

/* Process Section */
.process-timeline {
  position: relative;
  margin-top: 3.24rem;
}

.process-item {
  display: flex;
  margin-bottom: 3.19rem;
  align-items: center;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--spa-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.61rem;
  margin-right: 2rem;
  flex-shrink: 0;
}

/* Timeline Section */
.timeline-container {
  position: relative;
  margin-top: 3.24rem;
}

.timeline-item {
  margin-bottom: 2.07rem;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* Career Section */
.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.24rem;
}

.career-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.career-item:hover {
  transform: translateY(-5px);
}

/* Core Info Section */
.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.24rem;
}

.coreinfo-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.coreinfo-item i {
  font-size: 2.57rem;
  color: var(--spa-primary);
  margin-bottom: 1.11rem;
}

/* Contact Form */
.contact-section {
  background: var(--spa-gradient-3);
  color: white;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.60rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 10px;
  padding: 1rem;
  font-size: 1.09rem;
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  background: white;
}

.btn-primary {
  background: var(--spa-luxury);
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--spa-luxury-dark);
  transform: translateY(-2px);
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3.24rem;
}

.blog-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 1.5rem;
}

.blog-link {
  color: var(--spa-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--spa-primary-dark);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  margin-bottom: 1.11rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  background: var(--spa-primary);
  color: white;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--spa-primary-dark);
}

.faq-answer {
  padding: 1.5rem;
  background: white;
  border-radius: 0 0 10px 10px;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3.24rem;
}

.gallery-item {
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: var(--spa-text-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2.07rem;
}

.footer-section h5 {
  color: var(--spa-accent);
  margin-bottom: 1.11rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--spa-accent);
}

.footer-bottom {
  border-top: 1px solid var(--spa-neutral);
  padding-top: 1.13rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb-section {
  padding: 2rem 0;
  background: var(--spa-off-white);
}

.breadcrumb-image {
  width: 100%;
  max-width: 200px;
  height: auto;
}

/* Space Page */
#space {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--spa-gradient-1);
}

/* Swiper Styles */
.swiper-pagination-bullet {
  background: var(--spa-primary);
}

.swiper-pagination-bullet-active {
  background: var(--spa-luxury);
}

/* Utility Classes */
.text-spa-primary { color: var(--spa-primary); }
.text-spa-secondary { color: var(--spa-secondary); }
.bg-spa-primary { background-color: var(--spa-primary); }
.bg-spa-secondary { background-color: var(--spa-secondary); }
.bg-spa-gradient-1 { background: var(--spa-gradient-1); }
.bg-spa-gradient-2 { background: var(--spa-gradient-2); }

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Contact Info Styling */
#contact-info-phone,
#contact-info-email,
#contact-info-address {
  margin-bottom: 0.68rem;
  color: var(--spa-text-light);
}

/* Copyright Styling */
#site-copyright {
  color: var(--spa-text-light);
  font-size: 0.99rem;
}



/* 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);
}

.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;
    }
}
