/* ========== RESET & BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* ========== NAVIGATION ========== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  background-color: #111;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.nav-left h1 {
  font-size: 1.8rem;
  color: rgb(196, 150, 112);
  margin: 0;
  font-weight: bold;
}

.nav-right {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-right li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-right li a:hover,
.nav-right li a.active {
  color: rgb(196, 150, 112);
  text-decoration: underline;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 2px;
  display: block;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-right {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #111;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    width: auto;
  }

  .nav-right.show {
    display: flex;
  }
}

/* ========== HERO SECTION ========== */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: url('../images/BG.jpeg.jpg') center center / cover no-repeat, #000;
  color: #fff;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  margin-left: 30px;
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.7));
}

.hero-buttons .btn {
  display: inline-block;
  padding: 12px 24px;
  margin: 10px;
  background-color: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.hero-buttons .btn:hover {
  background-color: #333;
}

/* ========== ABOUT SECTION ========== */
.about {
  background-color: #111;
  color: #fff;
  padding: 20px 35px;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ========== MEET THE FAM SECTION ========== */
.meet-the-fam {
  background-color: #000;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.meet-the-fam h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.barber-photo {
  width: 200px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.instagram-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.instagram-icon:hover {
  transform: scale(1.2);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
  background-color: #111;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background-color: #222;
  border-left: 5px solid #e0b973;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-style: italic;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .testimonial-grid {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }
}

/* ========== FIND US SECTION ========== */
.find-us {
  background-color: #000;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.find-us h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.map-container {
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.info-columns {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.info-block h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #e0b973;
}

.info-block p {
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .info-columns {
    flex-direction: row;
  }

  .info-block {
    width: 250px;
  }
}

/* ========== LOOKBOOK SECTION ========== */
.lookbook {
  background-color: #111;
  color: #ffffff;
  padding: 50px 20px;
  text-align: center;
}

.lookbook h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.gallery-grid a:hover {
  transform: scale(1.03);
}

/* ========== FOOTER ========== */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}
