/* Base Styles and Variables */
:root {
  --cream-bg: #FFF8F2;
  --deep-charcoal: #2E2E2E;
  --soft-blush: #F8E8E8;
  --warm-taupe: #E6DAD1;
  --accent-gold: #D4AF37;
  --text: #2d3748;
  --transition: all 0.3s ease;
}

/* Global Styles */
body {
  background-color: var(--cream-bg);
  color: var(--deep-charcoal);
  font-family: 'Open Sans', 'Lato', Arial, sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .brand-header, .headline-glow {
  font-family: 'Playfair Display', serif;
  color: var(--deep-charcoal);
}

.nav-link, .book-link, nav, .mobile-nav-link {
  font-family: 'Open Sans', 'Lato', Arial, sans-serif;
  color: var(--deep-charcoal);
}

.section-padding {
  padding: 5rem 2rem;
}

.section-divider {
  height: 3px;
  background: var(--warm-taupe);
  opacity: 0.4;
  margin: 0;
}

/* Navigation Styles */
header {
  background: var(--cream-bg) !important;
  color: var(--deep-charcoal) !important;
  border-bottom: 1.5px solid var(--warm-taupe) !important;
  box-shadow: 0 2px 12px rgba(44,44,44,0.04);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(237, 185, 195, 0.95) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.brand-header {
  font-family: 'Playfair Display', serif;
}

/* Mobile Navigation */
.mobile-nav-menu {
  background: rgba(255, 255, 255, 0.98);
  transition: var(--transition);
}

.mobile-nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-nav-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.mobile-nav-link {
  padding: 1rem;
  text-align: center;
  font-size: 1.2rem;
  color: var(--text);
  transition: var(--transition);
  text-decoration: none;
}

.mobile-nav-link:hover {
  background: var(--primary);
  color: white;
}

/* Button Styles */
.jt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  background: var(--accent-gold) !important;
  color: var(--deep-charcoal) !important;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: none !important;
}

.jt-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 62, 125, 0.3);
}

.jt-btn-pulse {
  animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
  0% { box-shadow: 0 0 0 0 rgba(227, 62, 125, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(227, 62, 125, 0); }
  100% { box-shadow: 0 0 0 0 rgba(227, 62, 125, 0); }
}

/* Card Styles */
.card {
  background: var(--soft-blush) !important;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(44,44,44,0.04) !important;
  border: 1.5px solid var(--warm-taupe) !important;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Form Styles */
input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--warm-taupe) !important;
  border-radius: 12px;
  transition: var(--transition);
  outline: none;
  font-size: 1rem;
  background: var(--cream-bg) !important;
  color: var(--deep-charcoal) !important;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15) !important;
  transform: scale(1.01);
}

/* Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.4s ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  opacity: 0;
  transition: all 0.4s ease;
}

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

.gallery-item:hover::after {
  opacity: 1;
}

/* Modal Gallery */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
  background: var(--cream-bg) !important;
  color: var(--deep-charcoal) !important;
}

.modal-image {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  backdrop-filter: blur(5px);
}

.modal-nav:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  backdrop-filter: blur(5px);
}

.modal-close:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

/* Hero Section Enhancements */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--cream-bg) !important;
  box-shadow: none !important;
}

.hero-background {
  position: absolute;
  top: -20px; /* Extra space for parallax */
  left: 0;
  width: 100%;
  height: calc(100% + 40px); /* Extra space for parallax */
  z-index: 0;
  object-fit: cover;
  filter: blur(8px) brightness(1.1);
  transform: scale(1.1);
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: heroContentFade 1s ease forwards 0.3s;
}

@keyframes heroContentFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section Styles */
.about-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.about-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.about-logo-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-logo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding-right: 2rem;
}

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .about-content {
    padding-right: 0;
  }

  .hero-section {
    min-height: 70vh;
  }
}

/* Logo Styles */
.logo-container {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--primary);
  transition: var(--transition);
}

.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-container:hover {
  border-color: var(--primary-dark);
  transform: scale(1.05);
}

/* Studio Image Integration */
.studio-feature {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  margin: 3rem 0;
}

.studio-feature img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .studio-feature {
    border-radius: 20px;
    margin: 2rem 0;
  }

  .wave-divider {
    height: 40px;
    margin-top: -20px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Floating Book Button */
.floating-book-btn {
  display: none !important;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--primary-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  z-index: 1000;
  transition: width 0.1s ease;
}

/* Hero Buttons Animation */
.hero-btn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: scale(1.05);
  background-color: var(--primary-light);
}

.hero-btn:first-child {
  animation: buttonPop 0.6s ease forwards 0.6s;
}

.hero-btn:last-child {
  animation: buttonPop 0.6s ease forwards 0.7s;
}

@keyframes buttonPop {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  70% {
    opacity: 1;
    transform: scale(1.1) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Wave Divider */
.wave-divider {
  position: relative;
  width: 100%;
  height: 70px;
  margin-top: -35px;
  z-index: 2;
}

/* Enhanced Service Cards */
.service-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Enhanced Visual Effects */
.parallax-section {
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.floating-element {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 30%,
    transparent 100%
  );
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

/* Product Showcase */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.product-card:hover .product-overlay {
  transform: translateY(0);
}

/* Salon Interior Showcase */
.salon-interior {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
}

.salon-interior img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.salon-interior:hover img {
  transform: scale(1.1);
}

/* Contact Section Enhancement */
.contact-section {
  background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
}

.contact-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

/* Footer Enhancement */
footer {
  background: linear-gradient(to right, #fff5f7, #fff, #fff5f7);
}

/* Testimonials Section */
.testimonials-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.testimonial-card {
  width: 100%;
  flex-shrink: 0;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.testimonial-dot.active {
  opacity: 1;
  transform: scale(1.2);
  background: var(--primary-dark);
}

/* Services Section Refinements */
.services-container {
  background: var(--cream-bg) !important;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Product Card Refinements */
.product-showcase {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--cream-bg) !important;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: visible;
}

.product-image-container {
  width: 100%;
  overflow: visible;
  position: relative;
  border-radius: 12px;
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.05);
}

.product-info {
  padding: 1rem 2rem;
}

.product-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--text);
}

.product-info p {
  color: var(--text);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .product-showcase {
    grid-template-columns: 1fr;
  }
  
  .product-info {
    text-align: center;
    padding-top: 1.5rem;
  }
}

/* Navigation Styles */
.nav-link {
  color: var(--deep-charcoal) !important;
  position: relative;
  transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-gold) !important;
}

.nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -4px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Accent color for highlights */
.accent-gold {
  color: var(--accent-gold) !important;
}

/* Soft blush and taupe for subtle backgrounds */
.bg-blush {
  background-color: var(--soft-blush) !important;
}
.bg-taupe {
  background-color: var(--warm-taupe) !important;
}

/* Remove book button styles */
.book-now-btn, .floating-book-btn {
  display: none !important;
}

/* Remove unnecessary overlays, particles, and decorative backgrounds */
.particles-container, .animate-float, .circle-frame, .circle-pulse, .logo-glow, .wave-divider, .decorative-element, .hexagon, .floating-circle {
  display: none !important;
}

/* Remove all pink and gradient classes */
body, header, footer, section, .section-padding, .card, .services-container, .product-showcase, .contact-section, .about-content, .brand-circle-inner, .policy-card, .testimonial-card, .blog-post-card, .featured-testimonial, .gallery-modal, .modal-content, .mobile-nav-menu {
  background: var(--cream-bg) !important;
  color: var(--deep-charcoal) !important;
  border-color: var(--warm-taupe) !important;
  box-shadow: none !important;
}

h1, h2, h3, h4, h5, h6, .brand-header, .headline-glow, .nav-link, .book-link, nav, .mobile-nav-link {
  color: var(--deep-charcoal) !important;
}

.jt-btn, .jt-btn:hover, .jt-btn:focus, .accent-gold {
  background: var(--accent-gold) !important;
  color: var(--deep-charcoal) !important;
  border: none !important;
  box-shadow: none !important;
}

input, select, textarea {
  border: 2px solid var(--warm-taupe) !important;
  background: var(--cream-bg) !important;
  color: var(--deep-charcoal) !important;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15) !important;
}

/* Remove all pink, gradient, and old accent classes */
[class*="bg-pink"], [class*="text-pink"], [class*="from-pink"], [class*="to-pink"], [class*="border-pink"], .wave-divider, .divider-line, .divider-icon, .brand-collection-title::after, .owner-label, .policy-icon, .faq-icon {
  background: none !important;
  color: var(--accent-gold) !important;
  border-color: var(--accent-gold) !important;
  box-shadow: none !important;
}

/* Section Dividers */
.section-divider {
  background: var(--soft-blush) !important;
  height: 12px !important;
  border: none !important;
  margin: 0 !important;
}

/* Card/Callout backgrounds */
.card, .services-container, .product-showcase, .contact-section, .about-content, .brand-circle-inner, .policy-card, .testimonial-card, .blog-post-card, .featured-testimonial {
  background: var(--soft-blush) !important;
  color: var(--deep-charcoal) !important;
  border: 1.5px solid var(--warm-taupe) !important;
  box-shadow: 0 4px 24px rgba(44,44,44,0.04) !important;
}

/* Section backgrounds */
section, .section-padding {
  background: var(--cream-bg) !important;
}

/* Remove any remaining strong pinks or gradients */
[class*="bg-pink"], [class*="text-pink"], [class*="from-pink"], [class*="to-pink"], [class*="border-pink"] {
  background: none !important;
  color: var(--accent-gold) !important;
  border-color: var(--accent-gold) !important;
  box-shadow: none !important;
} 