/* Services Page Specific Styles */

#services-page {
  padding-top: 80px;
  background: #ffffff;
  min-height: 100vh;
}

/* Services Hero Section */
.services-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('Heros.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.1));
  pointer-events: none;
}

.services-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #D4AF37;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-hero-content p {
  font-size: 1.2rem;
  color: #fff;
  max-width: 600px;
  margin: 0 auto;
}

/* Price List Container */
.price-list-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Service Sections */
.service-section {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.service-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37, #FFD700, #D4AF37);
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.service-header i {
  font-size: 2.5rem;
  color: #D4AF37;
  margin-right: 20px;
  background: linear-gradient(45deg, #D4AF37, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-header h2 {
  font-size: 2rem;
  color: #D4AF37;
  font-weight: 600;
  margin: 0;
}

/* Price Grid */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.price-item:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: #D4AF37;
}

.service-name {
  color: #333;
  font-size: 0.95rem;
  font-weight: 400;
  flex: 1;
}

.service-price {
  color: #D4AF37;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(45deg, #D4AF37, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* Services Contact Section */
.services-contact {
  background: #f8f9fa;
  padding: 60px 20px;
  border-top: 1px solid #e0e0e0;
}

.contact-info-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: #f8f9fa;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-item i {
  font-size: 2rem;
  color: #D4AF37;
  background: linear-gradient(45deg, #D4AF37, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 5px;
}

.contact-info-item h3 {
  color: #D4AF37;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-info-item p {
  color: #666;
  margin: 5px 0;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  color: #D4AF37;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  border: 1px solid #e0e0e0;
}

.social-links a:hover {
  background: #D4AF37;
  color: #ffffff;
  transform: scale(1.1);
}

/* Services CTA Section */
.services-cta {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(255, 215, 0, 0.05));
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.services-cta h2 {
  font-size: 2.5rem;
  color: #D4AF37;
  margin-bottom: 20px;
  font-weight: 600;
}

.services-cta p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .service-section {
    padding: 30px 20px;
  }
  
  .service-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .service-header i {
    margin-right: 0;
  }
  
  .price-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .contact-info-item i {
    margin-top: 0;
  }
  
  .services-cta h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .services-hero {
    padding: 80px 0;
  }
  
  .services-hero-content h1 {
    font-size: 2rem;
  }
  
  .price-item {
    padding: 12px 15px;
  }
  
  .service-name {
    font-size: 0.9rem;
  }
  
  .service-price {
    font-size: 1rem;
  }
}

/* Active Navigation Link */
#nav .active {
  color: #D4AF37 !important;
  position: relative;
}

#nav .active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #D4AF37;
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Service Section Subheadings */
.service-section h3 {
  font-size: 1.4rem;
  color: #333;
  font-weight: 600;
  margin: 30px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #D4AF37;
  display: inline-block;
}

/* Section IDs for navigation */
#barber-shop,
#dreadlocks,
#skin-care,
#massage {
  scroll-margin-top: 100px;
}
