/* Page-specific styles */

/* Main Content Spacing */
.main-content {
  padding-top: 80px;
}

/* Hero Sections */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(rgba(26, 74, 58, 0.6), rgba(44, 62, 80, 0.7)), url('../images/hero1-beauty-salon-interior.jpg') center/cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  padding: 40px 20px;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(135deg, #C9A96E, #F5E6D3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.hero-cta {
  margin-top: 30px;
}

/* About Section Styles */
.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text-content h2 {
  margin-bottom: 25px;
  color: var(--accent);
}

.about-text-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-category {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.service-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-header {
  padding: 25px;
  background: var(--accent);
  color: white;
  text-align: center;
}

.service-header h3 {
  margin: 0;
  font-size: 1.4rem;
}

.service-list {
  padding: 25px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.service-item:last-child {
  border-bottom: none;
}

.service-name {
  font-weight: 500;
  color: var(--text-primary);
}

.service-price {
  font-weight: 700;
  color: var(--primary);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-member-card {
  text-align: center;
}

.team-member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--primary);
}

.member-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--accent);
}

.member-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.member-experience {
  color: var(--text-secondary);
  font-style: italic;
}

/* Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

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

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(26, 74, 58, 0.8), rgba(201, 169, 110, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.overlay-text {
  color: white;
  font-weight: 600;
  text-align: center;
}

/* Blog Post Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-post-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.blog-post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-post-content {
  padding: 25px;
}

.blog-post-meta {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.blog-post-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--accent);
}

.blog-post-excerpt {
  color: var(--text-secondary);
  line-height: 1.6;
}

.read-more-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary);
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more-link:hover {
  color: var(--primary-dark);
}

/* Testimonial Section */
.testimonial-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial-quote {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}

.testimonial-location {
  color: var(--text-secondary);
  margin-top: 5px;
}

/* Quote Icon */
.testimonial-wrapper::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.3;
  font-family: var(--font-heading);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(26, 74, 58, 0.8), rgba(44, 62, 80, 0.9)), url('../images/feature2-spa-treatment-luxury.jpg') center/cover;
  background-attachment: fixed;
  text-align: center;
  color: white;
  padding: 100px 0;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

/* Floating Booking Button */
.floating-booking-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--shadow-hover);
  z-index: 9000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-booking-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  color: white;
}

/* Success Message */
.success-message {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 15px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  display: none;
}

.success-message.show {
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-section {
    min-height: 80vh;
    background-attachment: scroll;
  }
  
  .cta-section {
    background-attachment: scroll;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .floating-booking-btn {
    bottom: 10px;
    right: 10px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* Page Transition Effects */
.page-enter {
  opacity: 0;
  transform: translateY(20px);
}

.page-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}

/* Decorative Elements */
.section-decoration {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.1), transparent);
  border-radius: 50%;
  z-index: -1;
}