:root {
  --pink: #d46aaa;
  --pink-hover: #b3548a;
  --dark-gray: #222;
  --light-gray: #f0f0f0;
  --text-light: #ddd;
  --text-dark: #333;
  --shadow-pink: rgba(212, 106, 158, 0.5);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-light);
  background: var(--dark-gray);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header {
  background: url('assets/hero-barbershop.jpg') center center/cover no-repeat;
  height: 85vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, 0.75);
  z-index: 1;
}

header .content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 0 15px;
}

header h1 {
  font-size: 4rem;
  font-family: 'Georgia', serif;
  letter-spacing: 6px;
  margin-bottom: 20px;
  color: var(--pink);
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 0 8px var(--pink);
}

header p {
  font-size: 1.6rem;
  margin-bottom: 30px;
  font-weight: 600;
  color: #f8e1f2;
  text-shadow: 0 0 6px rgba(212, 106, 158, 0.8);
}

.btn-primary {
  background-color: var(--pink);
  padding: 15px 45px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-dark);
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-pink);
  display: inline-block;
}

.btn-primary:hover {
  background-color: var(--pink-hover);
  color: var(--light-gray);
  box-shadow: 0 6px 20px var(--pink-hover);
}

main.container {
  max-width: 1200px;
  margin: 50px auto 80px;
  padding: 0 25px;
}

section {
  margin-bottom: 80px;
}

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.about img {
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px var(--shadow-pink);
  object-fit: cover;
  display: block;
}

.about .text {
  flex: 1 1 100%;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 500;
}

.about h2,
.services h2,
.gallery h2,
.map h2 {
  font-family: 'Georgia', serif;
  font-size: 2.5rem;
  color: var(--pink);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 0 4px var(--pink);
}

.services {
  text-align: center;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.service-item {
  background-color: #2c2c2c;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--shadow-pink);
  flex: 1 1 280px;
  transition: transform 0.3s ease;
  color: var(--text-light);
  font-weight: 600;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px var(--pink);
}

.service-item h3 {
  color: var(--pink);
  margin-bottom: 15px;
  font-weight: 700;
  font-family: 'Georgia', serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px var(--shadow-pink);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px var(--pink);
}

.map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(212, 106, 158, 0.3);
}

/* Footer */
footer {
  background-color: #111;
  color: #aaa;
  text-align: center;
  padding: 25px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Responsive */
@media (min-width: 901px) {
  .about {
    flex-wrap: nowrap;
  }

  .about img {
    flex: 1 1 50%;
  }

  .about .text {
    flex: 1 1 50%;
    max-width: none;
    margin: 0;
    padding-left: 30px;
  }
}

@media (max-width: 900px) {
  .about,
  .services-list {
    flex-direction: column;
    text-align: center;
  }

  .services-list {
    gap: 20px;
  }

  .about .text {
    padding: 0 10px;
    font-size: 1.1rem;
  }
}


@media (max-width: 600px) {
  header h1 {
    font-size: 2.5rem;
    letter-spacing: 3px;
  }

  header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .btn-primary {
    padding: 12px 30px;
    font-size: 1rem;
  }

  main.container {
    margin: 30px 15px 60px;
    padding: 0 10px;
  }

  .about {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .about img,
  .about .text {
    flex: none;
    max-width: 100%;
    margin: 0 auto;
  }

  .about .text {
    padding: 0 10px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .services-list {
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
  }

  .service-item {
    padding: 20px;
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-grid img {
    height: 150px;
  }

  .map iframe {
    height: 250px;
  }

  footer {
    font-size: 0.8rem;
    padding: 20px 10px;
  }

}

@media (min-width: 901px) {
  .about {
    flex-wrap: nowrap;
  }

  .about img {
    flex: 1 1 50%;
  }

  .about .text {
    flex: 1 1 50%;
    max-width: none;
    margin: 0;
    padding-left: 30px;
  }
}

@media (max-width: 900px) {
  .about,
  .services-list {
    flex-direction: column;
    text-align: center;
  }

  .services-list {
    gap: 20px;
  }

  .about .text {
    padding: 0 10px;
    font-size: 1.1rem;
  }
}



@media (max-width: 600px) {
  header h1 {
    font-size: 2.5rem;
    letter-spacing: 3px;
  }

  header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .btn-primary {
    padding: 12px 30px;
    font-size: 1rem;
  }

  main.container {
    margin: 30px 15px 60px;
    padding: 0 10px;
  }

  .about {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .about img,
  .about .text {
    flex: none;
    max-width: 100%;
    margin: 0 auto;
  }

  .about .text {
    padding: 0 10px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .services-list {
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
  }

  .service-item {
    padding: 20px;
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-grid img {
    height: 200px;
  }

  .map iframe {
    height: 250px;
  }

  footer {
    font-size: 0.8rem;
    padding: 20px 10px;
  }
}





.social-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background-color: #222;
  border-radius: 14px;
  text-decoration: none;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
  background-color: #333;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.social-btn img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.social-btn:hover img {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .social-buttons {
    flex-direction: column;
    align-items: center;
  }
}












html {
  scroll-behavior: smooth;
}

.navbar {
  position: sticky;
  top: 0;
  background-color: #111;
  padding: 10px 20px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar li a:hover {
  color: #fca311;
}

/* Optional: section spacing and background */
section {
  padding: 80px 20px;
  max-width: 800px;
  margin: auto;
  color: white;
}





.contact-phone {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.phone-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  background-color: #1a1a1a;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.phone-link:hover {
  background-color: #fca311;
  color: #000;
  transform: scale(1.05);
}

