/* =========================================
   KUYA'S BARBER SHOP
   Premium Brown & Gold Design
========================================= */

:root {
  --brown-dark: #21140e;
  --brown: #4d2b1b;
  --brown-light: #765037;
  --gold: #d5a04b;
  --gold-light: #e8c477;
  --cream: #f5eee5;
  --white: #ffffff;
  --black: #111111;
  --gray: #777777;
}


/* =========================================
   RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--black);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

button,
input,
select {
  font-family: inherit;
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 6%;

  background: rgba(33, 20, 14, 0.97);

  border-bottom: 1px solid rgba(213, 160, 75, 0.3);

  backdrop-filter: blur(10px);
}


/* LOGO */

.logo-image {
    width: 250px;
    height: 160px;
    object-fit: contain;
    display: block;

   transform: scale(1.5);
    transform-origin: left center;

  filter: brightness(0) invert(1);
mix-blend-mode: normal;
}

/* NAV LINKS */

.navbar nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar nav a {
  color: white;

  font-size: 14px;
  font-weight: 500;

  transition: 0.3s;
}

.navbar nav a:hover {
  color: var(--gold);
}

.nav-book {
  padding: 11px 20px;

  border-radius: 30px;

  background: var(--gold);

  color: var(--brown-dark) !important;

  font-weight: bold !important;
}

.nav-book:hover {
  background: var(--gold-light);
}


/* =========================================
   HERO
========================================= */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  padding: 140px 7% 80px;

  background:
    linear-gradient(
      90deg,
      rgba(25, 14, 9, 0.96),
      rgba(25, 14, 9, 0.75),
      rgba(25, 14, 9, 0.45)
    ),
   url("images/New Website Background.jpeg");

  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at 75% 50%,
      rgba(213, 160, 75, 0.12),
      transparent 40%
    );
}

.hero-content {
  position: relative;

  z-index: 2;

  max-width: 720px;

  color: white;
}


/* EYEBROW */

.eyebrow {
  color: var(--gold);

  font-size: 13px;

  font-weight: bold;

  letter-spacing: 4px;

  margin-bottom: 16px;
}


/* HERO TITLE */

.hero h1 {
  font-size: clamp(55px, 9vw, 105px);

  line-height: 0.88;

  font-weight: 900;

  letter-spacing: -3px;

  margin-bottom: 30px;
}

.hero h1 span {
  color: var(--gold);
}


/* DESCRIPTION */

.hero-description {
  max-width: 600px;

  color: #eeeeee;

  font-size: 18px;

  margin-bottom: 35px;
}


/* HERO BUTTONS */

.hero-buttons {
  display: flex;

  gap: 15px;

  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  display: inline-block;

  padding: 14px 25px;

  border-radius: 30px;

  font-size: 14px;

  font-weight: bold;

  transition: 0.3s;
}

.btn-primary {
  background: var(--gold);

  color: var(--brown-dark);
}

.btn-primary:hover {
  background: var(--gold-light);

  transform: translateY(-3px);
}

.btn-outline {
  border: 1px solid var(--gold);

  color: white;
}

.btn-outline:hover {
  background: var(--gold);

  color: var(--brown-dark);

  transform: translateY(-3px);
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.section {
  padding: 90px 7%;
}

.section-heading {
  text-align: center;

  margin-bottom: 50px;
}

.section-heading p {
  color: var(--brown-light);

  font-size: 12px;

  font-weight: bold;

  letter-spacing: 4px;

  margin-bottom: 8px;
}

.section-heading h2 {
  color: var(--brown-dark);

  font-size: 44px;

  line-height: 1.1;
}


/* =========================================
   BRANCHES
========================================= */

.branches {
  background: white;
}

.branch-container {
  max-width: 1000px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;
}

.branch-card {
  padding: 40px 35px;

  background: var(--cream);

  border: 1px solid #dfcfbd;

  border-radius: 18px;

  text-align: center;

  transition: 0.3s;
}

.branch-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.branch-icon {
  width: 70px;
  height: 70px;

  margin: 0 auto 20px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 50%;

  background: var(--brown-dark);

  font-size: 28px;
}

.branch-card h3 {
  color: var(--brown-dark);

  font-size: 27px;

  margin-bottom: 10px;
}

.branch-card p {
  color: var(--gray);

  font-size: 15px;

  margin-bottom: 25px;
}

.branch-button {
  border: none;

  padding: 12px 24px;

  border-radius: 30px;

  background: var(--brown);

  color: white;

  font-weight: bold;

  cursor: pointer;

  transition: 0.3s;
}

.branch-button:hover {
  background: var(--gold);

  color: var(--brown-dark);

  transform: translateY(-2px);
}


/* =========================================
   SERVICES
========================================= */

.services {
  background: var(--cream);
}

.services-grid {
  max-width: 1100px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.service-card {
  padding: 30px 25px;

  background: white;

  border-radius: 16px;

  border-bottom: 4px solid var(--gold);

  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
}

.service-icon {
  font-size: 34px;

  margin-bottom: 15px;
}

.service-card h3 {
  color: var(--brown-dark);

  font-size: 21px;

  margin-bottom: 8px;
}

.service-card p {
  color: var(--gray);

  font-size: 14px;
}


/* =========================================
   ABOUT
========================================= */

.about {
  padding: 100px 7%;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 65px;

  align-items: center;

  background: var(--brown-dark);

  color: white;
}

.about-image {
  overflow: hidden;

  border-radius: 20px;

  min-height: 460px;

  background: var(--brown);
}

.about-image img {
  width: 100%;
  height: 100%;

  min-height: 460px;

  display: block;

  object-fit: cover;
}

.about-content {
  max-width: 600px;
}

.about-content .eyebrow {
  margin-bottom: 10px;
}

.about-content h2 {
  color: white;

  font-size: 48px;

  line-height: 0.95;

  margin-bottom: 25px;
}

.about-content p:not(.eyebrow) {
  color: #d7d0ca;

  margin-bottom: 18px;

  font-size: 16px;
}


/* =========================================
   BOOKING
========================================= */

.booking {
  background: white;
}

.booking-box {
  max-width: 850px;

  margin: auto;

  padding: 40px;

  border-radius: 20px;

  background: var(--cream);

  border: 1px solid #dfcfbd;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

#bookingForm {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;
}

.form-group {
  display: flex;

  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--brown-dark);

  font-size: 14px;

  font-weight: bold;

  margin-bottom: 7px;
}

.form-group input,
.form-group select {
  width: 100%;

  padding: 14px 15px;

  border: 1px solid #d6c4b0;

  border-radius: 10px;

  background: white;

  color: var(--black);

  outline: none;

  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);

  box-shadow: 0 0 0 3px rgba(213, 160, 75, 0.12);
}

.submit-button {
  grid-column: 1 / -1;

  padding: 15px;

  border: none;

  border-radius: 30px;

  background: var(--brown-dark);

  color: white;

  font-size: 15px;

  font-weight: bold;

  cursor: pointer;

  transition: 0.3s;
}

.submit-button:hover {
  background: var(--brown);

  transform: translateY(-2px);
}

.booking-success {
  display: none;

  margin-top: 20px;

  padding: 16px;

  border-radius: 10px;

  background: #e7f5e7;

  color: #225522;

  text-align: center;

  font-weight: bold;
}


/* =========================================
   FOOTER
========================================= */

footer {
  padding: 55px 7% 25px;

  background: #140b07;

  color: white;
}

.footer-content {
  max-width: 1100px;

  margin: auto;

  display: grid;

  grid-template-columns: 2fr 1fr 1fr;

  gap: 45px;
}

.footer-logo {
  color: var(--gold);

  font-size: 20px;

  font-weight: bold;

  letter-spacing: 2px;

  margin-bottom: 12px;
}

.footer-content h3 {
  color: var(--gold);

  font-size: 16px;

  margin-bottom: 14px;
}

.footer-content p {
  color: #bdb5af;

  font-size: 14px;

  margin-bottom: 7px;
}

.footer-content a {
  color: #bdb5af;

  transition: 0.3s;
}

.footer-content a:hover {
  color: var(--gold);
}

.copyright {
  max-width: 1100px;

  margin: 40px auto 0;

  padding-top: 20px;

  border-top: 1px solid #38231a;

  color: #888;

  text-align: center;

  font-size: 13px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

  .navbar {
    padding: 12px 5%;
  }
.logo-image {
  width: 140px;
  height: 100px;
  object-fit: contain;

  transform: scale(1.35);
  transform-origin: left center;

  filter: invert(1);
  mix-blend-mode: screen;
}
  .navbar nav {
    gap: 15px;
  }

  .navbar nav a:not(.nav-book) {
    display: none;
  }

  .hero {
    padding: 130px 6% 70px;
  }

  .hero h1 {
    font-size: 65px;
  }

  .branch-container {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 350px;
  }

  .about-image img {
    min-height: 350px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 600px) {

  .logo strong {
    font-size: 15px;
  }

  .logo span {
    font-size: 7px;
  }

  .logo-circle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 90vh;
  }

  .hero h1 {
    font-size: 55px;

    letter-spacing: -2px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: stretch;
  }

  .btn-primary,
  .btn-outline {
    text-align: center;
  }

  .section {
    padding: 70px 6%;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about {
    padding: 75px 6%;
  }

  .about-content h2 {
    font-size: 40px;
  }

  .booking-box {
    padding: 25px 18px;
  }

  #bookingForm {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: auto;
  }

  .submit-button {
    grid-column: auto;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

}
/* =====================================================
   KUYA'S CHARITY OUTREACH
   ===================================================== */

.charity-section {
    padding: 80px 20px;
    background: var(--cream);
    text-align: center;
}

.charity-section h2 {
    color: var(--brown-dark);
    font-size: 2.4rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.charity-section p {
    max-width: 750px;
    margin: 0 auto 40px;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.charity-gallery {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.charity-gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    border: 3px solid var(--gold-light);
    box-shadow: 0 8px 20px rgba(33, 17, 14, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.charity-gallery img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 14px 30px rgba(33, 17, 14, 0.25);
}

/* Tablet */
@media (max-width: 900px) {
    .charity-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .charity-gallery img {
        height: 250px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .charity-section {
        padding: 60px 15px;
    }

    .charity-section h2 {
        font-size: 2rem;
    }

    .charity-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .charity-gallery img {
        height: 260px;
    }
}
/* =========================================
   KUYA'S BARBER SHOP - FINAL FIX
   Matches current index.html
========================================= */

/* NAVIGATION */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #d5a04b !important;
}

.nav-links .book-btn {
  background: #d5a04b;
  color: #21140e !important;
  padding: 11px 20px;
  border-radius: 30px;
  font-weight: 700;
}

.nav-links .book-btn:hover {
  background: #e8c477;
  transform: translateY(-2px);
}


/* HERO */
.hero {
  min-height: 100vh;
  padding: 150px 7% 90px;
  display: flex;
  align-items: center;
  position: relative;

  background:
    linear-gradient(
      90deg,
      rgba(25, 14, 9, 0.96),
      rgba(25, 14, 9, 0.78),
      rgba(25, 14, 9, 0.50)
    ),
    url("images/kuya-barber-shop-production%20%20images.JPG");

  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 720px;
  color: #ffffff;
}

.hero-content h1 {
  color: #ffffff;
  font-size: clamp(55px, 8vw, 105px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -3px;
  margin-bottom: 30px;
}

.hero-content p {
  color: #eeeeee;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-content .book-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #d5a04b;
  color: #21140e;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-content .book-btn:hover {
  background: #e8c477;
  transform: translateY(-3px);
}


/* GENERAL SECTIONS */
.section {
  padding: 90px 7%;
}

.section > h2 {
  text-align: center;
  color: #21140e;
  font-size: 44px;
  margin-bottom: 45px;
}


/* CARDS */
.cards {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  padding: 30px 25px;

  background: #ffffff;

  border: 1px solid #dfcfbd;
  border-bottom: 4px solid #d5a04b;

  border-radius: 18px;

  box-shadow: 0 8px 25px rgba(33, 20, 14, 0.06);

  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(33, 20, 14, 0.12);
}

.card h3 {
  color: #21140e;
  font-size: 23px;
  margin-bottom: 12px;
}

.card p {
  color: #6f6259;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.card button {
  border: none;
  padding: 12px 22px;

  background: #4d2b1b;
  color: #ffffff;

  border-radius: 30px;

  font-weight: 700;
  cursor: pointer;

  transition: 0.3s ease;
}

.card button:hover {
  background: #d5a04b;
  color: #21140e;
}


/* BRANCHES */
#branches {
  background: #ffffff;
}

#branches .card {
  text-align: center;
}

#branches .card h3 {
  font-size: 28px;
}


/* SERVICES */
#services {
  background: #f5eee5;
}

#services .card {
  min-height: 170px;
}


/* ABOUT */
.about-section {
  background: #21140e;
  color: #ffffff;
  text-align: center;
  padding: 100px 7%;
}

.about-section h2 {
  color: #ffffff;
  font-size: 46px;
  margin-bottom: 25px;
}

.about-section p {
  max-width: 850px;
  margin: 0 auto 15px;

  color: #d7d0ca;

  font-size: 17px;
  line-height: 1.8;
}


/* BOOKING */
.booking-section {
  background: #ffffff;
  padding: 100px 7%;
}

.booking-container {
  max-width: 900px;
  margin: 0 auto;

  padding: 45px;

  background: #f5eee5;

  border: 1px solid #dfcfbd;
  border-radius: 22px;

  box-shadow: 0 15px 40px rgba(33, 20, 14, 0.08);
}

.booking-container h2 {
  text-align: center;
  color: #21140e;
  font-size: 42px;
  margin-bottom: 10px;
}

.booking-subtitle {
  text-align: center;
  color: #766b63;
  margin-bottom: 35px;
}


/* BOOKING FORM */
#bookingForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #21140e;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;

  padding: 15px;

  border: 1px solid #d6c4b0;
  border-radius: 10px;

  background: #ffffff;

  color: #21140e;

  font-size: 15px;

  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #d5a04b;

  box-shadow:
    0 0 0 3px rgba(213, 160, 75, 0.15);
}


/* CONFIRM BUTTON */
.confirm-btn {
  width: 100%;

  margin-top: 5px;

  padding: 16px;

  border: none;
  border-radius: 30px;

  background: #21140e;
  color: #ffffff;

  font-size: 16px;
  font-weight: 700;

  cursor: pointer;

  transition: 0.3s ease;
}

.confirm-btn:hover {
  background: #d5a04b;
  color: #21140e;

  transform: translateY(-2px);
}


/* BOOKING SUCCESS */
.booking-success {
  margin-top: 25px;

  padding: 18px;

  background: #e8f5e8;

  border: 1px solid #a8d5a8;

  border-radius: 12px;

  color: #245424;

  text-align: center;

  font-weight: 700;
}


/* CHARITY */
.charity-section {
  padding: 100px 7%;
  background: #f5eee5;
  text-align: center;
}

.charity-section h2 {
  color: #21140e;
  font-size: 46px;
  margin-bottom: 15px;
}

.charity-section > p {
  max-width: 750px;
  margin: 0 auto 45px;

  color: #766b63;

  font-size: 17px;
}

.charity-gallery {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.charity-gallery img {
  width: 100%;
  height: 320px;

  object-fit: cover;

  border-radius: 18px;

  border: 3px solid #e8c477;

  box-shadow: 0 12px 30px rgba(33, 20, 14, 0.12);
}


/* FOOTER */
footer {
  background: #140b07;
  color: #ffffff;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 45px;
}

.footer-content a {
  color: #bdb5af !important;
  text-decoration: none;
}

.footer-content a:hover {
  color: #d5a04b !important;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .nav-links {
    gap: 12px;
  }

  .nav-links a:not(.book-btn) {
    display: none;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .charity-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}


@media (max-width: 600px) {

  .navbar {
    padding: 12px 5%;
  }

  .logo-circle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 90vh;
    padding: 130px 6% 70px;
  }

  .hero-content h1 {
    font-size: 58px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .section,
  .booking-section,
  .charity-section {
    padding: 70px 5%;
  }

  .section > h2,
  .about-section h2,
  .charity-section h2 {
    font-size: 34px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-container {
    padding: 25px 20px;
  }

  .booking-container h2 {
    font-size: 32px;
  }

  .charity-gallery {
    grid-template-columns: 1fr;
  }

  .charity-gallery img {
    height: 280px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* =========================
   BRANCH IMAGE STYLING
========================= */

.branch-card {
  overflow: hidden;
  text-align: center;
}

.branch-image {
  width: 85%;
  height: 180px;
  object-fit: cover;
  display: block;
  margin: 0 auto 20px;
  border-radius: 12px;
}

.branch-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.branch-card p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.branch-card button {
  margin-bottom: 10px;
}


/* MOBILE */
@media (max-width: 768px) {

  .branch-image {
  width: 90%;
  height: 160px;
}

  .branch-card h3 {
    font-size: 22px;
  }

}
/* =========================
   PREMIUM BOOKING FORM
========================= */

.booking-section {
  padding: 100px 8%;
}

.booking-container {
  max-width: 950px;
  margin: 0 auto;
  padding: 45px;
  border-radius: 20px;
  background: #f5eee5;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.booking-container h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 12px;
}

.booking-subtitle {
  text-align: center;
  margin-bottom: 35px;
  font-size: 17px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d8c8b8;
  border-radius: 10px;
  font-size: 16px;
  background: #fff;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #d5a04b;
  box-shadow: 0 0 0 3px rgba(213, 160, 75, 0.15);
}

.confirm-btn {
  display: block;
  width: 100%;
  padding: 16px;
  margin-top: 15px;
  border: none;
  border-radius: 10px;
  background: #4d2b1b;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.confirm-btn:hover {
  background: #d5a04b;
  color: #21140e;
  transform: translateY(-2px);
}

.booking-success {
  margin-top: 25px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
}


/* MOBILE */
@media (max-width: 768px) {

  .booking-section {
    padding: 70px 5%;
  }

  .booking-container {
    padding: 25px 20px;
  }

  .booking-container h2 {
    font-size: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

}
/* =========================
   PREMIUM BOOKING CONFIRMATION
========================= */

.booking-success {
  background: #21140e;
  border: 2px solid #d5a04b;
  border-radius: 18px;
  padding: 35px;
  margin-top: 30px;
  color: #f5eee5;
  text-align: center;
  box-shadow: 0 12px 35px rgba(33, 20, 14, 0.25);
}

.booking-success-message {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  text-align: left;
}

.success-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d5a04b;
  color: #21140e;
  font-size: 30px;
  font-weight: 900;
}

.booking-success-message strong {
  color: #e8c477;
}

.booking-success-message p {
  margin: 10px 0;
  line-height: 1.6;
  color: #f5eee5;
}

.booking-success-message small {
  display: block;
  margin-top: 18px;
  color: #d8c8b8;
}

@media (max-width: 600px) {
  .booking-success {
    padding: 25px 18px;
  }

  .booking-success-message {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* =========================================
   BRANCH IMAGES FIX
========================================= */

#branches .cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#branches .card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  margin-bottom: 25px;
}

@media (max-width: 600px) {
  #branches .cards {
    grid-template-columns: 1fr;
  }

  #branches .card img {
    height: 240px;
  }
}
/* =========================================
   BRANCH CARD SIZE FIX
========================================= */

#branches .cards {
  max-width: 1000px;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

#branches .card {
  padding: 20px;
  max-width: 450px;
  margin: 0 auto;
}

#branches .card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  margin-bottom: 20px;
}

@media (max-width: 600px) { 
   .logo-image {
  width: 60px;
  height: 60px;
}
  #branches .cards {
    grid-template-columns: 1fr;
  }

  #branches .card {
    max-width: 100%;
  }

  #branches .card img {
    height: 200px;
  }
}
/* FINAL BRANCH IMAGE SIZE */

#branches .card img {
  width: 400px !important;
  max-width: 100% !important;
  height: 240px !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 auto 20px auto !important;
  border-radius: 12px !important;
}
/* =========================================
   OFFICIAL KUYA'S NAVIGATION FIX
========================================= */

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
}

.nav-links a {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
  transform: translateY(-1px);
}

.nav-links .book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 29px;
  border-radius: 30px;
  background: var(--gold);
  color: var(--brown-dark) !important;
  font-weight: 800;
}

.nav-links .book-btn:hover {
  background: var(--gold-light);
  color: var(--brown-dark) !important;
  transform: translateY(-2px);
}

/* Official original logo */
.logo-image {
  width: 86px;
  height: 86px;
  object-fit: contain;
  display: block;
}

/* Mobile */
@media (max-width: 900px) {
  .nav-links {
    gap: 10px;
  }

  .nav-links a:not(.book-btn) {
    display: none;
  }

  .nav-links .book-btn {
    min-height: 44px;
    padding: 0 20px;
    font-size: 14px;
  }

  .logo-image {
    width: 68px;
    height: 68px;
  }
}
/* =========================================
   MOBILE RESPONSIVE - KUYA'S BARBER SHOP
   ========================================= */

@media (max-width: 600px) {

  /* NAVIGATION */
  .navbar {
    padding: 12px 18px;
    min-height: 70px;
  }

  .logo-image {
    width: 58px;
    height: 58px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links .book-btn {
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
    border-radius: 24px;
  }

  /* HERO */
  .hero {
    min-height: 100svh;
    padding: 100px 22px 70px;
    background-position: center center;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(42px, 15vw, 72px);
    line-height: 0.92;
    letter-spacing: -2px;
    margin-bottom: 24px;
  }

  .hero-content p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  /* HERO BUTTONS */
  .hero-content .book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 22px;
    font-size: 14px;
    width: auto;
    max-width: 100%;
  }

  /* GENERAL SECTIONS */
  .section {
    padding: 65px 20px;
  }

  .section > h2 {
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 30px;
  }

  /* BRANCHES */
  .branch-container {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  /* SERVICES */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  /* IMAGES */
  img {
    max-width: 100%;
    height: auto;
  }

  /* PREVENT HORIZONTAL SCROLL */
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

}


/* SMALL PHONES */
@media (max-width: 400px) {

  .navbar {
    padding: 10px 14px;
  }

  .logo-image {
    width: 52px;
    height: 52px;
  }

  .nav-links .book-btn {
    padding: 0 13px;
    font-size: 12px;
  }

  .hero {
    padding: 90px 18px 60px;
  }

  .hero-content h1 {
    font-size: 43px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .section {
    padding: 55px 16px;
  }

}
/* =========================================
   MOBILE HAMBURGER MENU
========================================= */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}

/* MOBILE */
@media (max-width: 600px) {

  .navbar {
    position: relative;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;

    display: none;
    flex-direction: column;
    align-items: center;

    background: #21140e;
    padding: 20px 18px;
    gap: 8px;

    z-index: 9999;
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-links a {
    display: block !important;
    width: 100%;
    max-width: 320px;
    text-align: center;

    padding: 12px 15px;
    font-size: 16px;
  }

  .nav-links .book-btn {
    margin-top: 5px;
  }

}
/* =========================================
   MOBILE MENU FIX - KUYA'S BARBER SHOP
   ========================================= */

@media (max-width: 600px) {

  .navbar {
    position: relative;
    z-index: 10001;
  }

  .nav-links.mobile-open {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: calc(100vh - 70px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding: 55px 24px 40px;

    background: #1f120d;

    z-index: 10000;
    overflow-y: auto;
    box-sizing: border-box;
  }

  .nav-links.mobile-open a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 620px;
    min-height: 52px;

    margin-bottom: 22px;

    font-size: 20px;
    font-weight: 600;
    text-align: center;
  }

  .nav-links.mobile-open .book-btn {
    width: 100%;
    max-width: 620px;
    min-height: 54px;

    margin-top: 8px;
    margin-bottom: 0;

    padding: 14px 20px;
    box-sizing: border-box;

    border-radius: 30px;
  }

  body:has(.nav-links.mobile-open) {
    overflow: hidden;
  }

}
/* =========================================
   MOBILE LOGO FIX
   ========================================= */

@media (max-width: 600px) {

  .navbar {
    min-height: 70px;
    padding: 8px 18px;
  }

  .logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10002;
  }

  .logo-image {
    width: 120px;
    height: 55px;
    object-fit: contain;
    transform: none;
    transform-origin: center;
    display: block;
  }

  .menu-toggle {
    position: relative;
    z-index: 10003;
  }

}
/* =========================================
   FINAL MOBILE LOGO VISIBILITY FIX
   ========================================= */

@media (max-width: 600px) {

  .navbar .logo {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;

    position: relative !important;
    z-index: 10003 !important;

    width: auto !important;
    height: auto !important;
  }

  .navbar .logo-image {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 120px !important;
    height: 55px !important;

    max-width: none !important;
    object-fit: contain !important;

    transform: none !important;
  }
}
/* =========================================
   MOBILE LOGO - MAKE IT BRIGHT
   ========================================= */

@media (max-width: 600px) {

  .navbar .logo-image {
    filter: brightness(0) invert(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

}
/* =========================================
   FINAL MOBILE LOGO BRIGHT FIX
   ========================================= */

@media (max-width: 600px) {
  .navbar .logo-image {
    filter: brightness(0) invert(1) contrast(150%) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
  }
}
/* =========================================
   MOBILE HERO TEXT CENTER FIX
   KUYA'S BARBER SHOP
   ========================================= */

@media (max-width: 600px) {

  .hero-content {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-content .hero-title,
  .hero-content h1 {
    text-align: center !important;
  }

  .hero-content .hero-subtitle,
  .hero-content p {
    text-align: center !important;
  }

}
/* =========================================
   FINAL MOBILE HERO CENTER
   ========================================= */

@media (max-width: 600px) {

  .hero {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .hero-content .hero-title,
  .hero-content h1 {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .hero-content .hero-subtitle,
  .hero-content p {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

}
/* =========================================
   MOBILE HERO LOGO - KUYA'S BARBER SHOP
   ========================================= */

@media (max-width: 600px) {

  /* Large logo inside the hero */
  .hero-content::before {
    content: "";
    display: block;

    width: 180px;
    height: 180px;

    margin: 0 auto 25px auto;

    background-image: url("ChatGPT Image Sep 14, 2026, 04_00_45 PM.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  /* Keep hero text centered */
  .hero-content {
    text-align: center !important;
  }

  .hero-content .hero-title,
  .hero-content h1 {
    text-align: center !important;
  }

  .hero-content .hero-subtitle,
  .hero-content p {
    text-align: center !important;
  }

}
/* =========================================
   MOBILE HERO LOGO - CENTERED
   ========================================= */

@media (max-width: 600px) {

 .hero-content::before {
  content: none !important;
  display: none !important;
}

  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

}
/* =========================================
   MOBILE HERO - REMOVE GHOST ELEMENTS
========================================= */

@media (max-width: 600px) {

  .hero {
    overflow: hidden !important;
  }

  .hero::before,
  .hero::after {
    content: none !important;
    display: none !important;
    background: none !important;
  }

}
/* REMOVE ONLY THE GHOST K ON MOBILE */

@media (max-width: 600px) {
  .hero {
    background-position: center !important;
  }

  .hero-content {
    position: relative !important;
    z-index: 10 !important;
  }
}
/* =========================================
   GIVING BACK TOGETHER - GALLERY
========================================= */

.charity-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  justify-items: center;
}

/* Center the 10th photo */
.charity-gallery img:nth-child(10) {
  grid-column: 2;
}

/* Mobile */
@media (max-width: 600px) {
  .charity-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .charity-gallery img:nth-child(10) {
    grid-column: auto;
  }

  .charity-gallery img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
/* =========================================
   GIVING BACK TOGETHER - VIDEO
========================================= */

.charity-video {
  width: min(900px, 90%);
  margin: 50px auto 20px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #d5a04b;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.20);
  background: #1f120d;
}

.charity-video video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
}

/* Mobile */
@media (max-width: 600px) {
  .charity-video {
    width: 92%;
    margin: 35px auto 15px;
    border-radius: 14px;
    border-width: 2px;
  }

  .charity-video video {
    width: 100%;
    max-height: none;
  }
}
/* =========================================
   GIVING BACK TOGETHER - PREMIUM STYLE
========================================= */

.charity-section {
  text-align: center;
  padding: 80px 20px;
}

.charity-section h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #d5a04b;
  font-weight: 700;
}

.charity-section > p {
  max-width: 700px;
  margin: 0 auto 35px;
  font-size: 18px;
  line-height: 1.7;
}

/* Charity Photos */
.charity-gallery {
  max-width: 1200px;
  margin: 0 auto 45px;
}

/* Charity Video */
.charity-video {
  margin-top: 45px;
}
/* =========================================
   TODAY'S PRIORITY
========================================= */

.today-priority {
  margin: 30px 0;
  padding: 25px;
  background: #21140e;
  border: 1px solid #d5a04b;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.priority-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.priority-header h3 {
  margin: 0;
  color: #d5a04b;
  font-size: 22px;
}

#priorityDate {
  color: #e8c477;
  font-size: 14px;
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.priority-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: #4d2b1b;
  border-radius: 12px;
  border: 1px solid rgba(213, 160, 75, 0.35);
}

.priority-icon {
  font-size: 25px;
}

.priority-card strong {
  display: block;
  font-size: 25px;
  color: #ffffff;
}

.priority-card small {
  display: block;
  margin-top: 3px;
  color: #f5eee5;
  font-size: 13px;
}

/* Mobile */
@media (max-width: 700px) {
  .today-priority {
    padding: 18px;
  }

  .priority-header {
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
  }

  .priority-grid {
    grid-template-columns: 1fr 1fr;
  }

  .priority-card {
    padding: 15px;
  }
}

@media (max-width: 450px) {
  .priority-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   TODAY'S PRIORITY - ADMIN DASHBOARD
========================================= */

.today-priority {
  margin: 30px 0;
  padding: 25px;
  background: #21140e;
  border: 1px solid #d5a04b;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.priority-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}

.priority-header h2 {
  margin: 0;
  color: #d5a04b;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

#priorityDate {
  color: #e8c477;
  font-size: 14px;
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.priority-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: #4d2b1b;
  border-radius: 14px;
  border: 1px solid rgba(213, 160, 75, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.priority-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.priority-icon {
  font-size: 25px;
  flex-shrink: 0;
}

.priority-card h3 {
  margin: 0 0 6px;
  color: #f5eee5;
  font-size: 13px;
  font-weight: 600;
}

.priority-card strong {
  display: block;
  color: #d5a04b;
  font-size: 28px;
  line-height: 1;
}

/* MOBILE */
@media (max-width: 700px) {
  .today-priority {
    padding: 20px;
    margin: 25px 0;
  }

  .priority-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .priority-header h2 {
    font-size: 21px;
  }

  .priority-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .priority-card {
    padding: 15px;
  }

  .priority-card h3 {
    font-size: 12px;
  }

  .priority-card strong {
    font-size: 24px;
  }

  .priority-icon {
    font-size: 21px;
  }
}

@media (max-width: 450px) {
  .priority-grid {
    grid-template-columns: 1fr;
  }
}
