/* =========================================================
   IMPORT FONTS
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Bowlby+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@300;400;500;600&display=swap');


/* =========================================================
   ROOT VARIABLES
========================================================= */
:root {
  --turquoise: #00CFCB;
  --yellow: #F6D67C;
  --hot-pink: #E258BD;
  --off-black: #161216;
  --beige: #FCF3DA;

  --text-main: var(--beige);
  --text-muted: rgba(252, 243, 218, 0.6);

  --radius: 10px;
  --transition: 0.25s ease;
}


/* =========================================================
   GLOBAL RESET
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--off-black);
  color: var(--text-main);
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */
h1,
h2 {
  font-family: 'Bowlby One', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--yellow);
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

h2 {
  font-size: 2rem;
  line-height: 1.15;
}

h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--beige);
  margin-bottom: 10px;
}

p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--beige);
  margin-bottom: 18px;
}


/* =========================================================
   LINKS & BUTTONS
========================================================= */
a {
  color: var(--turquoise);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--hot-pink);
}

.btn {
  display: inline-block;
  background: var(--turquoise);
  color: var(--off-black);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn:hover {
  background: var(--yellow);
  color: var(--off-black);
}


/* =========================================================
   LAYOUT / SECTIONS
========================================================= */
main {
  background: var(--hot-pink);
  padding-bottom: 60px;
}

.section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}


/* =========================================================
   HEADER (DESKTOP)
========================================================= */
header {
  background: var(--turquoise);
  padding: 16px 20px;
  border-bottom: 4px solid var(--off-black);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop-menu a {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--off-black);
  font-size: 0.9rem;
}

.desktop-menu a:hover,
.desktop-menu a.active {
  color: var(--hot-pink);
  font-weight: 800;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  background: var(--off-black);
  color: var(--yellow);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
}

.header-cta:hover {
  background: var(--yellow);
  color: var(--off-black);
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--off-black);
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 30px;
}


/* =========================================================
   MOBILE CTA (drawer)
========================================================= */
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--off-black);
  padding: 4px 8px;
  border-radius: var(--radius);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.6rem;
  width: 75%;
  margin-top: 24px;
}

.mobile-cta:hover {
  background: var(--yellow);
  color: var(--off-black);
}


/* =========================================================
   MOBILE DRAWER (≤ 768px)
========================================================= */
.mobile-menu {
  display: none;
}

@media (max-width: 768px) {

  .desktop-menu,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: block;
    margin-left: auto;
    font-size: 2rem;
    cursor: pointer;
    color: var(--off-black);
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: -245px;
    width: 245px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: var(--turquoise);
    border-left: 3px solid var(--yellow);
    transition: right 0.35s ease;
    z-index: 2000;
  }

  .mobile-menu.show {
    right: 0;
  }

  .mobile-menu a {
    padding: 14px 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--off-black);
  }

  .mobile-menu a:hover,
  .mobile-menu a.active {
    color: var(--hot-pink);
  }

  .mobile-cta {
    display: inline-flex;
  }

  #overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1500;
  }

  #overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
}


/* =========================================================
   HERO / VIBE / STAND
========================================================= */
.hero {
  text-align: center;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 24px;
}

.columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}


/* =========================================================
   COLUMN BLOCK — Yellow Hover Lift
========================================================= */
.column-block {
  background: rgba(22, 18, 22, 0.6);
  border-radius: var(--radius);
  padding: 20px;
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.column-block:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: 0 6px 20px rgba(246, 214, 124, 0.35);
}


.service-card {
  background: rgba(22, 18, 22, 0.7);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(0, 207, 203, 0.4);

  /* Add lift animation */
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: 0 6px 20px rgba(246, 214, 124, 0.35);
}


/* =========================================================
   SERVICES GRID
========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.service-card {
  background: rgba(22, 18, 22, 0.7);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(0, 207, 203, 0.4);
}

.service-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-weight: 700;
  color: var(--yellow);
}


/* =========================================================
   CTA BAND
========================================================= */
.cta-band {
  background: var(--turquoise);
  padding: 70px 20px;
  text-align: center;
  border-top: 4px solid var(--off-black);
}

.cta-band h2 {
  color: var(--off-black);
  margin-bottom: 24px;
}

.cta-btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--off-black);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: var(--transition);
}

.cta-btn:hover {
  background: var(--hot-pink);
  color: var(--off-black);
}


/* =========================================================
   FOOTER
========================================================= */
#footer {
  background: var(--off-black);
  padding: 60px 20px;
  color: var(--beige);
  text-align: left;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: flex-start;
  gap: 90px;
}

.footer-logo img {
  height: 160px;
  display: block;
  margin-top: -10px;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 6px;
  width: 260px;
}

.footer-nav a {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

.footer-nav a:hover {
  color: var(--hot-pink);
}

.footer-copy {
  grid-column: 1 / 3;
  margin-top: 10px;
}

.footer-copy p {
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
}

.footer-info {
  text-align: right;
}

.footer-info p {
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
}


/* =========================================================
   FOOTER MOBILE
========================================================= */
@media (max-width: 768px) {

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .footer-logo img {
    height: 120px;
    margin: 0 auto;
  }

  .footer-left {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 260px;
    text-align: center;
    gap: 10px;
  }

  .footer-nav a {
    font-size: 1rem;
  }

  .footer-copy {
    grid-column: auto;
    margin-top: 10px;
    text-align: center;
  }

  .footer-info {
    text-align: center;
    width: 100%;
  }

  .footer-info p {
    font-size: 1rem;
    line-height: 1.5;
  }
}


/* =========================================================
   ANIMATION
========================================================= */
.fade {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 0.6s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================================================
   BARBER IMAGE WRAP
========================================================= */
.barber-wrap {
  float: left;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 0 15px 10px 0;
}

@media (max-width: 600px) {
  .barber-wrap {
    float: none;
    display: block;
    margin: 0 auto 15px auto;
  }
}


/* =========================================================
   HOURS TABLE
========================================================= */
.hours-card {
  max-width: 425px;
  margin: 20px auto;
  padding: 10px;
  text-align: left;
  background: rgba(22, 18, 22, 0.6);
  border-radius: var(--radius);
  border: 1px solid rgba(246, 214, 124, 0.4);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 10px 12px;
  color: var(--text-main);
  font-size: 1rem;
}

.hours-table th {
  color: var(--yellow);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(246, 214, 124, 0.25);
}

.hours-table tr td {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table tr:hover {
  background: rgba(246, 214, 124, 0.06);
  transition: background 0.3s ease;
}

.hours-table td:last-child {
  padding-right: 0;
  padding-left: 6px;
}

/* Hours card hover lift */
.hours-card {
  max-width: 425px;
  margin: 20px auto;
  padding: 10px;
  text-align: left;
  background: rgba(22, 18, 22, 0.6);
  border-radius: var(--radius);
  border: 2px solid transparent;

  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hours-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: 0 6px 20px rgba(246, 214, 124, 0.35);
}

