:root {
  --primary: #ec4899;
  --secondary: #a855f7;
  --text: #333;
  --bg: #f9f9f9;
}

@font-face {
  font-family: 'NewestShape';
  src: url('fonts/NewestShape-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

h2, .logo {
  font-family: 'NewestShape', sans-serif;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.logoHeader {
  display: flex;
  align-items: center;
  gap: 1em;
}

.logoImage {
  height: 50px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 0.5rem;
}
.main-nav a {
  text-decoration: none;
  color: var(--text);
}
.main-nav a:hover {
  color: var(--primary);
}

/* Hero */
.hero {
  position: relative;
  background: url('images/newHero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.hero-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.hero h2 {
  font-size: 2rem;
}
.hero p {
  font-size: 1.2rem;
}
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 1rem;
}

.heroHair {
  position: relative;
  background: url('images/braids.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
}

.heroMakeup {
  position: relative;
  background: url('images/makeup.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
}

.heroNails {
  position: relative;
  background: url('images/nails.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
}

.heroMassage {
  position: relative;
  background: url('images/massage.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
}

/* ===== About Section ===== */
.about-section {
  padding: 2px 20px;
/*  background-color: #fff5f8;*/
  color: #333;
}

.about-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.about-section h2 {
/*  font-family: 'NewestShape-Bold', sans-serif;*/
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #c71585; /* rose/magenta tone */
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: justify;
}


/* Section */
.section {
  padding: 4rem 0;
}
.section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

/* Services Grid */
.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.service-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card h3 {
  margin: 1rem 0 0.5rem;
}
.service-card p {
  padding: 0 1rem 1rem;
}

/* Barber Section */
.barber-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.barber-text {
  flex: 1 1 300px;
}
.barber-image img {
  width: 100%;
  border-radius: 6px;
}

.barber-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.barber-image img {
  width: auto;
  max-height: 80%;
  max-width: 350px;
  object-fit: contain;
  border-radius: 6px;
}

.barber-image img {
  filter: brightness(0.95);
}

.barber-image img {
  border: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}


@media (max-width: 768px) {
  .barber-image img {
    max-width: 250px;
  }
}


/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2rem;
  text-align: center;
}
.socials {
  text-align: center;
  margin-top: 2rem;
}
.socials a {
  margin: 0 0.5rem;
  text-decoration: none;
  color: var(--text);
  font-weight: bold;
}
.socials a:hover {
  color: var(--primary);
}

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

.socials a img {
  transition: transform 0.3s ease;
}

.socials a:hover img {
  transform: scale(1.1);
}


/* Footer */
.site-footer {
  text-align: center;
  padding: 2rem 0;
  background: #222;
  color: #fff;
}

/* Responsive Hero Text */
@media (min-width: 600px) {
  .hero h2 {
    font-size: 3rem;
  }
}

/* ===== Price List ===== */
.price-list {
  max-width: 600px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 8px;
  padding: 1rem 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1.1rem;
}

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

.price-item.highlight {
  font-weight: bold;
  color: var(--primary);
}