* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background-color: #333;
  color: white;
  line-height: 1.6;
  margin: 0;
  padding: 0;

  background-image: url('barberhood.jpg');
  background-position: center;
  background-size: cover; 
  background-attachment: fixed;
}

.navbar {
  background: rgba(0, 0, 0, 0.6);
  background-image: url(header-image.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 130px;
  padding: 10px 40px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar nav {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-family: 'Fjalla One', sans-serif;
}

.nav-left {
  flex: 1;
  padding-left: 50px;
}

.logo-button {
  display: inline-block;
  width: 160px;
  height: 140px;
  background: linear-gradient(135deg, #fff8dc 0%, #ffe680 15%, #d4af37 40%, #b8860b 60%, #fff6b0 85%, #b8860b 100%);
  -webkit-mask-image: url('barberhood-logo.png');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url('barberhood-logo.png');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-clip: border-box;
}

.logo-button img {
  display: none; /* still hidden unless fallback needed */
}


.nav-right {
  flex: 2;
  display: flex;
  justify-content: flex-end;
  gap: 60px;
  padding-right: 300px;
}

.navbar nav a {
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  transition: color 0.3s, border-bottom 0.3s;
  border-bottom: 2px solid transparent;
  margin-right: 30px;
}

.navbar nav a:hover {
  color: darkred;
  font-weight: 700;
}

.navbar nav a.active {
  color: darkred;
  border-bottom: 2px solid darkred;
}

#hero, #services, #prices, #hours, #find-us, #contact {
  scroll-margin-top: 130px;
}




.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  font-family: 'anton', sans-serif;
}

.hero-h3 {
  font-size: 5rem;
  font-weight: 500;
  font-family: 'Arial Black', sans-serif;

      background: linear-gradient(
        to bottom,
        #fff8dc 0%,
        #ffe680 15%,
        #d4af37 30%,
        #b8860b 45%,
        #f5d76e 60%,
        #daa520 75%,
        #fff6b0 90%,
        #b8860b 100%
      );

      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;

      /* Optional subtle shadow for pop */
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.hero-h3-bh {
    font-size: 5rem;
    font-weight: 500;
    font-family: 'Arial Black', sans-serif;

      background: linear-gradient(
        to bottom,
        #fff8dc 0%,
        #ffe680 15%,
        #d4af37 30%,
        #b8860b 45%,
        #f5d76e 60%,
        #daa520 75%,
        #fff6b0 90%,
        #b8860b 100%
      );

      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;

      /* Optional subtle shadow for pop */
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.services {
  padding: 50px;
  text-align: center;
  background-color: black;
}

.our-services {
    font-family: 'Fjalla One', sans-serif;
    font-size: 3rem;
      font-weight: bold;

      background: linear-gradient(
        to bottom,
        #fff8dc 0%,
        #ffe680 15%,
        #d4af37 30%,
        #b8860b 45%,
        #f5d76e 60%,
        #daa520 75%,
        #fff6b0 90%,
        #b8860b 100%
      );

      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;

      /* Optional subtle shadow for pop */
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.icon {
    display: block;
    margin: 0 auto 5px;
}

.services-list {
    padding-top: 5%;
    font-family: 'Fjalla one', sans-serif;
    font-size: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 10%;
    justify-content: center;

      font-weight: bold;

      background: linear-gradient(
        to bottom,
        #fff8dc 0%,
        #ffe680 15%,
        #d4af37 30%,
        #b8860b 45%,
        #f5d76e 60%,
        #daa520 75%,
        #fff6b0 90%,
        #b8860b 100%
      );

      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;

      /* Optional subtle shadow for pop */
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.services-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  text-align: center;
}

/*.services-list li img {
  width: 60px;
  height: 60px;
  filter: brightness(1.1) contrast(1.1); */
 /* filter: sepia(5) hue-rotate(18deg) saturate(9) brightness(1.1) contrast(1.9);
  mix-blend-mode: screen;
  
}*/

.gold-icon {
  width: 60px;
  height: 60px;
  display: inline-block;
  background: linear-gradient(135deg, #fff2c2 20%, #d4af37 50%, #a67c00 80%);

  -webkit-mask-image: var(--icon-url);
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;

  mask-image: var(--icon-url);
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;

  margin-bottom: 10px;
}


.prices-container {
    display: flex;
}

.prices-left, .prices-right {
    flex: 1;
}

.prices-left {
    background-image: url('chalkboard-background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.prices-block {
    margin-bottom: 35px;
}

.item-row {
  display: flex;
  align-items: center;
  gap: 10px;
    font-family: 'Fjalla one', sans-serif;
    font-weight: 400;
}

.item {
  font-family: 'Arial Black', sans-serif;
      font-size: 1.3rem;
      font-weight: bold;

      background: linear-gradient(
        to bottom,
        #fff8dc 0%,
        #ffe680 15%,
        #d4af37 30%,
        #b8860b 45%,
        #f5d76e 60%,
        #daa520 75%,
        #fff6b0 90%,
        #b8860b 100%
      );

      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;

      /* Optional subtle shadow for pop */
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    }



.dots {
  flex: 1;
  border-bottom: 1px dotted #aaa;
  margin: 0 10px;
}

.description {
  /*  font-family: 'Anton' sans-serif;
    margin-left: 20px;
    font-weight: 350; */
    display: none !important;
}

.prices-right {
  position: relative;
    background-image: url("inside.jpg");
  background-size: 165% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.prices-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.prices-right > * {
  position: relative;
  z-index: 2;
}


.prices-h2 {
    font-family: 'Fjalla One', sans-serif;
      font-size: 3rem;
      font-weight: bold;

      background: linear-gradient(
        to bottom,
        #fff8dc 0%,
        #ffe680 15%,
        #d4af37 30%,
        #b8860b 45%,
        #f5d76e 60%,
        #daa520 75%,
        #fff6b0 90%,
        #b8860b 100%
      );

      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;

      /* Optional subtle shadow for pop */
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.hours-section {
  padding: 60px 20px;
  background-color: #111;
  text-align: center;
}

.hours-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Arial Black', sans-serif;
      font-size: 2rem;
      font-weight: bold;

      background: linear-gradient(
        to bottom,
        #fff8dc 0%,
        #ffe680 15%,
        #d4af37 30%,
        #b8860b 45%,
        #f5d76e 60%,
        #daa520 75%,
        #fff6b0 90%,
        #b8860b 100%
      );

      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;

      /* Optional subtle shadow for pop */
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.hours-list {
  list-style: none;
  padding: 0;
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
  font-family: 'Arial Black', sans-serif;
      font-weight: bold;

      background: linear-gradient(
        to bottom,
        #fff8dc 0%,
        #ffe680 15%,
        #d4af37 30%,
        #b8860b 45%,
        #f5d76e 60%,
        #daa520 75%,
        #fff6b0 90%,
        #b8860b 100%
      );

      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;

      /* Optional subtle shadow for pop */
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dotted #555;
  font-size: 1.1rem;
}

.day {
  text-align: left;
  width: 50%;
}

.time {
  text-align: right;
  width: 50%;
}

.find-us-section {
  padding: 40px 20px;
  background: #111;
  text-align: center;
}

.find-us-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Arial Black', sans-serif;

      background: linear-gradient(
        to bottom,
        #fff8dc 0%,
        #ffe680 15%,
        #d4af37 30%,
        #b8860b 45%,
        #f5d76e 60%,
        #daa520 75%,
        #fff6b0 90%,
        #b8860b 100%
      );

      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;

      /* Optional subtle shadow for pop */
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.find-us-section p {
  font-family: 'Arial Black', sans-serif;
      font-weight: bold;

      background: linear-gradient(
        to bottom,
        #fff8dc 0%,
        #ffe680 15%,
        #d4af37 30%,
        #b8860b 45%,
        #f5d76e 60%,
        #daa520 75%,
        #fff6b0 90%,
        #b8860b 100%
      );

      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;

      /* Optional subtle shadow for pop */
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.find-us-section a {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #3795bd !important;
  color: #3795bd !important;
  font-family: sans-serif !important;
  text-decoration: none;
}

.find-us-section a:hover {
  font-style: italic;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.social-icon {
  font-size: 2rem;
  color: #000;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

.facebook {
  color: #3b5998; /* Facebook Blue */
}

.instagram {
  color: #C13584; /* Instagram Purple */
}

.social-icon:hover {
  color: #fff;
}

.map-container {
  max-width: 600px;
  margin: 20px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.contact-section {
  background: url('chalkboard-background.jpg') no-repeat center center/cover;
  padding: 60px 20px;
  color: white;
  position: relative;
}

.contact-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  max-width: 800px; /* was 600px */
  margin: auto;
  border-radius: 12px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form h2 {
  margin-bottom: 10px;
  text-align: center;
}

.contact-form label {
  font-weight: bold;
  margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #f9f9f9;
  color: #333;
}

.contact-form textarea {
  resize: vertical;
  height: 120px;
}

.contact-form button {
  margin-top: 10px;
  padding: 12px;
  background-color: #8b0000;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #440000;
}

.walkin-note {
  font-size: 0.9rem;
  color: #ddd;
  margin-top: -10px;
  margin-bottom: 20px;
  font-style: italic;
}

.footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 15px;
}

.footer a {
  color: #4f31aa;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Hamburger Icon */
.hamburger {
  display: none; /* Hide the hamburger icon on larger screens */
  font-size: 30px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hamburger.open {
  transform: rotate(90deg); /* Rotate the hamburger when open */
}

/* Nav Links */
.nav-links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

/* Mobile Nav Links */
.nav-links.show {
  display: block;
  text-align: center;
  width: 100%;
  animation: slideIn 0.5s ease-in-out; /* Add animation */
}

/* Mobile Menu Animation */
@keyframes slideIn {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Mobile Media Query */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
  }

  .nav-links {
    display: none;
    width: 100%;
  }

  .hamburger {
    display: block;
    z-index: 1001;
  }
}



@media (max-width: 768px) {
  html, body {
    margin: 0;
    padding: 0;
    height: 100%;
  }

  body {
    background-image: url('barberhood.jpg');
    background-size: contain; 
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
  }

  .navbar {
    flex-direction: column;
    height: auto;
    padding: 10px 20px;
    align-items: center;
    display: flex;
    justify-content: center;
  }

  .nav-left {
    padding-left: 0;
    margin-bottom: 10px;
    text-align: center;
    flex: 1;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  /* Centering the logo in the navbar */
  .logo-button {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .logo-button img {
    max-width: 90px; /* Adjust the size of the logo if needed */
  }

  .hamburger {
    display: flex;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 20px;
    
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-right {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-right: 0;
  }

  .hero {
    background-image: url('barberhood.jpg');
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.5) !important;
    background-size: 100% 100%;
    background-position: center top;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
  }

  .hero-h3,
  .hero-h3-bh {
    font-size: 2.5rem;
    padding: 0 10px;
  }

  .services {
    padding: 30px 15px;
  }

  .our-services {
    font-size: 2rem;
  }

  .services-list {
    flex-direction: column;
    gap: 20px;
  }

  .prices-container {
    flex-direction: column;
  }

  .prices-left,
  .prices-right {
    width: 100%;
  }

  .prices-left {
    padding: 20px;
  }

  .prices-h2 {
    font-size: 2rem;
    text-align: center;
  }

  .hours-section h2,
  .find-us-section h2 {
    font-size: 1.5rem;
  }

  .hours-list li {
    font-size: 1rem;
  }

  .footer {
    font-size: 13px;
    padding: 15px;
  }
}
