:root {
  --black:#111;
  --white:#fff;
  --nude:#f6f1ec;
  --gold:#c9a14a;
}

* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

html { scroll-behavior:smooth; }

body {
  background:var(--white);
  color:var(--black);
}

/* HEADER */
.header {
  border-bottom: 1px solid #eee;
  transition: box-shadow 0.3s ease;
  position:sticky;
  top:0;
  background:rgba(255,255,255,.95);
  border-bottom:1px solid #eee;
  z-index:999;
}
header.scrolled {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.nav-container {
  max-width:1100px;
  margin:auto;
  padding:12px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo {
  display:flex;
  align-items:center;
  gap:10px;
  font-family:'Playfair Display',serif;
}

.logo img { height:32px; }

.nav {
  display:flex;
  gap:24px;
}

.nav a {
  text-decoration:none;
  font-size:.9rem;
  color:var(--black);
  position:relative;
}

.nav a::after {
  content:'';
  position:absolute;
  bottom:-4px;
  left:0;
  width:0;
  height:2px;
  background:var(--gold);
  transition:.3s;
}

.nav a:hover::after {
  width:100%;
}

.about-section {
  min-height: 70vh; /* middle of page without feeling empty */
  display: flex;
  align-items: center;   /* vertical center */
  justify-content: center; /* horizontal center */
  text-align: center;
  padding: 40px 20px;
}

.about-content {
  position: relative;
  max-width: 700px;
  
}

.about-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}
.about-content::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 20px;
}
.about-content::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
}
@media (max-width: 576px) {
  .about-content p {
    font-size: 16px;
  }
}

/* HERO */
.hero {
  height:90vh;
  background:
  linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
  url('images/hero.jpg') center/cover;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--white);
}

.hero-buttons {
  margin-top:25px;
  display:flex;
  gap:15px;
  justify-content:center;
}

/* BUTTONS */
.btn {
  border: 1px solid var(--gold);
  box-shadow: 0 6px 18px rgba(198,166,100,0.35);
  padding:14px 26px;
  border-radius:30px;
  text-decoration:none;
  font-size:.9rem;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(198,166,100,0.45);
}

.primary {
  background:var(--gold);
  color:var(--black);
}

.outline {
  border:1px solid var(--white);
  color:var(--white);
}

/* SECTIONS */
section { padding:90px; }

.container {
  max-width:1100px;
  margin:auto;
}

h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 30px;
  text-align: center;
}

/* SERVICES */
.services-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.service-card {
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border-radius:16px;
  padding:30px;
  text-align:center;
  background:#fff;
  transition:.3s;
  
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);

}

/* GALLERY SWIPER */
.haircutSwiper {
  padding: 20px 0;
}

.gallery-card {
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  transition: transform .3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

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

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: var(--gold);
  font-size: 22px;
  font-weight: bold;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}
.swiper-slide {
  transition: transform .6s ease, opacity .6s ease;
}

.swiper-slide-active {
  transform: scale(1.03);
}

.swiper-slide-next,
.swiper-slide-prev {
  opacity: 0.85;
}


/* CONTACT */
.contact-box {
  border:1px solid #eee;
  border-radius:16px;
  padding:25px;
}

.contact-actions {
  display:flex;
  gap:15px;
  margin-top:15px;
}

iframe {
  width:100%;
  height:250px;
  border-radius:16px;
  border:1px solid #eee;
  margin-top:20px;
}

/* FOOTER */
footer {
  background:var(--black);
  color:var(--white);
  text-align:center;
  padding:30px;
}

/* FADE ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
}

/* RESPONSIVE */
@media(min-width:768px) {
  .services-grid { grid-template-columns:repeat(3,1fr); }
}
section {
  position: relative;
}

section:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60%;
  height: 1px;
  background: #f0f0f0;
  transform: translateX(-50%);
}
.section-box {
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 40px 20px;
  background: #fff;
}
section:nth-child(even) {
  background: #fafafa;
}
/* ABOUT STATS */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.stat-card {
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 24px 16px;
  text-align: center;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 14px;
  color: #666;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* Desktop layout */
@media (min-width: 768px) {
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
