/* =============================
   Reset & Base Styles
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Helvetica Neue', sans-serif;
  color: #333;
  background-color: #fffefc;
  line-height: 1.6;
}

/* =============================
   Header / Navigation Bar
============================= */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background-color: #25362c; /* Sol green luxury */
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}
.site-header .logo img {
  height: 60px;
}
.site-header .logo .slogan {
  font-size: 0.9rem;
  margin-top: 5px;
  color: #c0945b; /* Gold accent */
  font-style: italic;
}
.site-nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.site-nav ul li {
  margin-left: 25px;
}
.site-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 5px;
  transition: 0.3s all;
}
.site-nav ul li a:hover {
  background-color: #b53f5b; /* Luna pink accent */
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}


/* =============================
   Hero Section - Darker Green Gradient
============================= */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 40px 20px 20px;
  background: linear-gradient(135deg, #25362c, #c8457b); /* darker green to subtle burgundy */
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ELYSIUM Heading - No background */
.hero h1 {
  font-size: 8rem;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 0 25px rgba(0,0,0,0.4); /* soft glow for luxury feel */
  background: none;
  padding: 0;
  border-radius: 0;
}

/* Slogan - No background */
.hero .slogan {
  font-size: 2rem;
  color: #f8f8f8;
  margin: 0;
  text-shadow: 0 0 10px rgba(0,0,0,0.3);
  background: none;
  padding: 0;
  border-radius: 0;
}
/* Optional subtle shine effect behind hero */
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  transform: rotate(45deg);
  pointer-events: none;
}

/* =============================
   Home Photos Section
============================= */
.home-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
}
.photo-item {
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: #fffefc;
}
.photo-item img {
  width: 100%;
  height: auto;
  display: block;
}
.photo-item p {
  margin: 10px 0;
  font-weight: bold;
  color: #1e3d2d;
}
.photo-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

/* =============================
   Sol & Luna Section Cards
============================= */

/* Sol - Men's Barbershop */
.men-section {
  background-color: #25362c; /* dark green */
  color: #f8f8f8;
  padding: 60px 20px;
  border-radius: 15px;
  max-width: 1000px;
  margin: 40px auto;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.men-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.men-section p {
  font-size: 1.2rem;
  color: #e6e6e6;
  line-height: 1.6;
}

/* Luna - Women's Beauty Salon */
.women-section {
  background-color: #c8457b; /* dark pink / burgundy */
  color: #f8f8f8;
  padding: 60px 20px;
  border-radius: 15px;
  max-width: 1000px;
  margin: 40px auto;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.women-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.women-section p {
  font-size: 1.2rem;
  color: #f0dede;
  line-height: 1.6;
}
/* =============================
   VIP Section - Gold Luxury
============================= */
.vip-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #c0945b; /* new luxury gold color */
  color: #fff;
  border-radius: 15px;
  max-width: 800px;
  margin: 40px auto;
  box-shadow: 0 12px 35px rgba(0,0,0,0.4); /* slightly stronger shadow for depth */
}

.vip-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #fff8e0; /* soft gold text for better contrast */
}

.vip-intro {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #fff4d9; /* lighter text for elegance */
}

.vip-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0 20px;
  margin-bottom: 30px;
}

.vip-item {
  background-color: #a87b4c; /* slightly darker gold for each item */
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.vip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35); /* hover shadow for depth */
}

.vip-icon {
  font-size: 1.5rem;
  color: #fff2c9; /* soft gold icon */
}

.free-drink { 
  background-color: #8b5e32; /* darker accent for the free drink item */
  font-weight: bold; 
}

.vip-price {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff; /* ensure price text is readable */
}
/* =============================
   Extras Section
============================= */
.extras-section {
  max-width: 1000px;
  margin: 60px auto;
  text-align: center;
}
.extras-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1e3d2d;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.extra-item {
  padding: 20px;
  border-radius: 10px;
  background-color: #f8f8f8;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}
.extra-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}
.extra-icon {
  font-size: 1.5rem;
  color: #b53f5b;
}


.services-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1e3d2d, #2c5c45); /* dark luxury gradient */
  color: #fff;
  border-radius: 15px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.services-section h1 {
  font-size: 3rem;
  color: #c0945b; /* gold accent */
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.services-section .intro {
  font-size: 1.3rem;
  color: #c0945b;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.service-category {
  background-color: #2c5c45; /* card background */
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.service-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.4);
  background-color: #3e7c5b; /* slightly brighter on hover */
}

.service-category h2 {
  font-size: 1.7rem;
  color: #c0945b; /* gold accent */
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

.service-category ul {
  list-style: none;
  padding: 0;
  color: #f8f8f8;
}

.service-category li {
  font-size: 1.1rem;
  margin: 12px 0;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between; /* Service left, price right */
  align-items: center;
  border: none; /* remove lines */
  background-color: rgba(255, 255, 255, 0.05); /* optional subtle luxury touch */
  border-radius: 8px;
  padding: 12px 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-category li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-category .price {
  font-weight: bold;
  color: #c0945b; /* gold accent */
  flex-shrink: 0; /* prevent shrinking */
  text-align: right;
}
.service-category li i {
  color:  #c0945b; /* gold */
  margin-right: 10px;
}

/* Book VIP Button on Services Page */
.book-vip-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 35px;
  background-color: #c0945b; /* luxurious golden brown */
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
}

.book-vip-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  opacity: 0.9;
}

/* =============================
   Luxury Gallery
============================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px;
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.gallery-item img {
  width: 100%;
  height: 180px; /* smaller images */
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* Luxury Gallery Title */
.gallery-title {
  font-size: 3rem;
  text-align: center;
  color: #c0945b; /* luxury gold */
  letter-spacing: 2px;
  margin-top: 50px;
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}

/* Elegant line under title */
.gallery-title::after {
  content: "";
  width: 120px;
  height: 3px;
  background: #c0945b;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Sticky Book Now Button - Luxury Style */
.book-now-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #c0945b; /* luxury gold */
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
  z-index: 1000;
}

/* Hover effect */
.book-now-btn:hover {
  background: #a87b4c; /* darker gold */
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

/* =============================
   Products Page Luxury
============================= */

.products-section {
max-width: 1200px;
margin: 60px auto;
padding: 20px;
text-align: center;
}

.products-title {
font-size: 3rem;
color: #c0945b;
margin-bottom: 10px;
letter-spacing: 2px;
}

.products-subtitle {
color: #666;
margin-bottom: 50px;
font-size: 1.2rem;
}

/* Category Titles */

.product-category {
font-size: 2rem;
color: #ffffff;
margin: 60px 0 25px;
letter-spacing: 1px;
}

/* Products Grid */

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 30px;
margin-bottom: 40px;
}

/* Product Card */

.product-card {
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
transform: translateY(-6px);
box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.product-card img {
width: 100%;
height: 200px;
object-fit: cover;
}

.product-card h3 {
margin: 15px 0 5px;
color: #1e3d2d;
}

.product-card p {
font-size: 0.9rem;
color: #777;
padding: 0 15px 20px;
}

/* SOL Section (Men) */

.sol-section{
background:#1e3d2d;
padding:60px 30px;
margin-top:60px;
border-radius:15px;
color:white;
}

.sol-title{
font-size:2.5rem;
color:#ffffff;
margin-bottom:10px;
}

/* LUNA Section (Women) */

.luna-section{
background:#c8457b;
padding:60px 30px;
margin-top:60px;
border-radius:15px;
color:white;
}

.luna-title{
font-size:2.5rem;
color:white;
margin-bottom:10px;
}

.collection-subtitle{
margin-bottom:40px;
opacity:0.9;
}

/* Product cards inside sections */

.products-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-bottom:40px;
}

.product-card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.2);
transition:0.3s;
}

.product-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.35);
}

.product-card img{
width:100%;
height:200px;
object-fit:cover;
}

.product-card h4{
color:#1e3d2d;
margin:15px 0 5px;
}

.product-card p{
color:#666;
font-size:0.9rem;
padding:0 15px 20px;
}

/* Booking Section */
.booking-section{
  max-width:900px;
  margin:80px auto;
  background:#fdfaf6;
  padding:50px;
  border-radius:20px;
  box-shadow:0 15px 50px rgba(0,0,0,0.2);
}

.booking-section h2{
  font-size:2rem;
  color:#1e3d2d;
  margin-bottom:30px;
  text-align:center;
  letter-spacing:1px;
}

.services-options{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  margin-bottom:50px;
}

.service-card{
  padding:30px;
  border-radius:15px;
  box-shadow:0 8px 25px rgba(0,0,0,0.15);
  background:#2c5c45;
  color:#fff;
  text-align:center;
}

.service-card.luna{
  background:#c8457b;
}

.service-card h3{
  margin-bottom:15px;
  font-size:1.5rem;
}

.service-card ul{
  list-style:none;
  padding:0;
  font-size:1.1rem;
}

.service-card li{
  margin:8px 0;
}

/* Barber Grid */
.barbers-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:30px;
  margin-bottom:50px;
  justify-items:center;
}

.barber-card{
  text-align:center;
  border-radius:15px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 35px rgba(0,0,0,0.2);
  transition:transform 0.3s,box-shadow 0.3s;
  cursor:pointer;
}

.barber-card:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 45px rgba(0,0,0,0.3);
}

.barber-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.barber-card p{
  padding:15px 0;
  font-weight:bold;
  font-size:1.1rem;
  color:#1e3d2d;
}

/* Form Inputs */
form label{
  display:block;
  margin-top:20px;
  font-weight:600;
  color:#1e3d2d;
}

form input{
  width:100%;
  padding:15px;
  margin-top:5px;
  border-radius:10px;
  border:1px solid #ddd;
  font-size:15px;
}

.cta-btn{
  margin-top:30px;
  width:100%;
  padding:18px;
  background:#c0945b;
  color:white;
  border:none;
  border-radius:30px;
  font-size:18px;
  font-weight:bold;
  cursor:pointer;
  transition:0.3s;
}

.cta-btn:hover{
  background:#a87b4c;
}

/* VIP Section */
.vip-section{
  max-width:800px;
  margin:80px auto;
  background:#c0945b;
  padding:50px;
  border-radius:20px;
  box-shadow:0 15px 50px rgba(0,0,0,0.25);
  text-align:center;
  color:#fff;
}

.vip-section h2{
  font-size:2rem;
  margin-bottom:20px;
}

.vip-services{
  list-style:none;
  padding:0;
  margin-bottom:30px;
}

.vip-services li{
  margin:10px 0;
  font-size:1.1rem;
  font-weight:bold;
}

.vip-btn{
  display:inline-block;
  padding:15px 40px;
  background:#1e3d2d;
  color:white;
  font-weight:bold;
  border-radius:30px;
  text-decoration:none;
  transition:0.3s;
}

.vip-btn:hover{
  background:#153122;
}

/* VIP Section */
.vip-section{
  max-width:850px;
  margin:80px auto;
  background:#c0945b;
  padding:60px 50px;
  border-radius:25px;
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
  text-align:center;
  color:#fff;
}

.vip-section h2{
  font-size:2.2rem;
  margin-bottom:20px;
  color:#fff;
  text-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.vip-services{
  list-style:none;
  padding:0;
  margin-bottom:40px;
}

.vip-services li{
  margin:10px 0;
  font-size:1.2rem;
  font-weight:bold;
}

/* VIP Button */
.vip-btn{
  display:inline-block;
  padding:18px 45px;
  background:#1e3d2d;
  color:white;
  font-weight:bold;
  border-radius:30px;
  text-decoration:none;
  font-size:1.2rem;
  transition:0.3s;
}

.vip-btn:hover{
  background:#153122;
}

/* Services cards with prices */
.service-card li{
  display:flex;
  justify-content:space-between;
}

.service-card li::after{
  content:"";
}

/* Luxury styling for the entire booking section already applied in previous CSS */

.contact-container {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:30px;
  max-width:1000px;
  margin:50px auto;
}

.contact-card {
  flex:1 1 250px;
  background-color:#1e3d2d;
  color:#fff;
  padding:30px;
  border-radius:15px;
  box-shadow:0 8px 25px rgba(0,0,0,0.3);
  text-align:center;
  transition:0.3s;
}

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

.contact-card i { font-size:2rem; margin-bottom:15px; color:#c0945b; }
.contact-card h3 { font-size:1.5rem; margin-bottom:10px; }
.contact-card a, .contact-card p { color:#f8f8f8; text-decoration:none; }
.contact-card a i { color:#b53f5b; margin-right:8px; }

/* Hero Small - Contact Page */
.hero-small {
 
  text-align: center; /* Center content */
}

.hero-small .contact-title {
  font-size: 4rem; /* Bigger font */
  color: #ffd700; /* Luxury gold color */
  margin: 0;
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7); /* glowing gold effect */
}

.hero-small p {
  font-size: 1.5rem;
  color: #f8f8f8;
  margin-top: 10px;
  letter-spacing: 1px;
}

.hero-hours {
  font-size: 2rem; /* bigger and more visible */
  color: #c0945b; /* luxurious gold */
  background-color: rgba(30, 61, 45, 0.85); /* dark green overlay */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5); /* premium shadow */
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-top: 20px; /* space from slogan */
  text-align: center;
  backdrop-filter: blur(5px); /* subtle glassy effect */
  animation: fadeIn 1.5s ease forwards; /* smooth fade in */
}

/* Icon styling */
.hero-hours i {
  font-size: 1.8rem;
  color: #c0945b;
}

/* Center the hero content perfectly */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
  position: relative;
}

/* Optional fade-in animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* =============================
   Mobile improvements
============================= */
@media (max-width: 768px) {
  .site-header {
    padding: 12px 16px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .site-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .site-nav ul li {
    margin-left: 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero .slogan {
    font-size: 1.2rem;
  }

  .booking-section,
  .vip-section {
    margin: 24px 12px;
    padding: 20px 14px;
    border-radius: 14px;
  }

  .service-card {
    padding: 18px;
  }

  .barber-select-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .barber-photo img,
  #barberImage {
    max-width: 100%;
    height: auto;
  }

  form input,
  form select,
  .cta-btn {
    font-size: 16px;
  }

  .vip-modal-content {
    width: 94%;
    margin: 20px auto;
    padding: 18px 14px;
  }
}