/* Red Rose Wellness Spa - Luxury Theme CSS */
:root {
  --primary-gold: #D4AF37;
  --primary-gold-dark: #AA8B2B;
  --primary-gold-light: #F3E5AB;
  --soft-beige: #F5F5DC;
  --dark-charcoal: #333333;
  --darker-charcoal: #1A1A1A;
  --white: #FFFFFF;
  --text-gray: #666666;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-charcoal);
  background-color: var(--soft-beige);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--darker-charcoal);
}

.text-gold { color: var(--primary-gold) !important; }
.bg-gold { background-color: var(--primary-gold) !important; }
.bg-charcoal { background-color: var(--darker-charcoal) !important; color: var(--white); }
.bg-beige { background-color: var(--soft-beige) !important; }

/* Buttons */
.btn-gold {
  background-color: var(--primary-gold);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-gold:hover {
  background-color: var(--primary-gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-outline-gold:hover {
  background-color: var(--primary-gold);
  color: var(--white);
}

/* Navbar */
.navbar {
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: all 0.3s ease;
}
.navbar-brand {
  color: var(--primary-gold) !important;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary-gold) !important;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.8)), url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  position: relative;
}
.hero-title {
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  color: var(--primary-gold);
}
.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Section padding */
.section-padding {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.5rem;
  color: var(--darker-charcoal);
  margin-bottom: 15px;
}
.section-title .divider {
  width: 60px;
  height: 3px;
  background-color: var(--primary-gold);
  margin: 0 auto;
}

/* Expertise/Service Highlights */
.expertise-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  height: 100%;
  border-bottom: 4px solid transparent;
}
.expertise-card:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--primary-gold);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.expertise-icon {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

/* Featured Services */
.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.service-img-wrap {
  overflow: hidden;
  height: 250px;
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img {
  transform: scale(1.1);
}
.service-content {
  padding: 30px;
}
.service-body {
  padding: 25px;
}
.service-price {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 15px;
}
.price-tag {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.service-img-wrapper {
  overflow: hidden;
  height: 220px;
}

/* Pricing Cards */
.pricing-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.pricing-header {
  background: linear-gradient(135deg, #1a1a1a, #2c1a0e);
  color: var(--white);
  padding: 30px;
  text-align: center;
}
.pricing-header h3 { color: var(--primary-gold); margin-bottom: 0; }
.pricing-body { padding: 20px 30px; }
.featured-pricing .pricing-header { background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark)); }
.featured-pricing .pricing-header h3 { color: #1a1a1a; }
.price-item {
  border-bottom: 1px solid #f0f0f0;
}
.price-item:last-child { border-bottom: none; }
.bg-gold { background-color: var(--primary-gold) !important; }

/* Testimonial Card */
.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
  line-height: 1.8;
}
.quote-icon { color: var(--primary-gold); }

/* Testimonials */
.testimonial-item {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin: 20px;
}
.stars {
  color: var(--primary-gold);
  margin-bottom: 15px;
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}
.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(212, 175, 55, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}
.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-icon {
  color: var(--white);
  font-size: 2rem;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.gallery-item:hover .gallery-icon {
  transform: translateY(0);
}

/* Form Styling */
.form-control, .form-select {
  border-radius: 5px;
  padding: 12px 15px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
  background-color: var(--white);
}

/* Footer */
.footer {
  background-color: var(--darker-charcoal);
  color: #ccc;
  padding: 80px 0 20px;
}
.footer h4 {
  color: var(--white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-gold);
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-links a:hover {
  background: var(--primary-gold);
  transform: translateY(-3px);
}
.bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #FFF;
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.2rem; }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}
