html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

h2{
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

body {
  margin: 0;
  background: #ffffff;
  color: #0b0b0b;
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
   overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ---------- SECTION WRAPPER ---------- */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 20px;
}


/* ---------- HOURS BAR ABOVE NAVBAR ---------- */
.hours-bar {
  background-color: #e0e0e0; /* light gray */
  color: #333333;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 10px;
  font-family: 'Montserrat', sans-serif;
  
}

/* ---------- HEADER / NAVBAR ---------- */
.site-header {
  position: sticky; /* sticky navbar */
  top: 0;           /* sticks to top */
  left: 0;
  width: 100%;
  z-index: 120;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(4px);
  transition: padding 0.3s ease; /* smooth padding change */
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: padding 0.3s ease;
}

.site-header.scrolled .header-inner {
  padding-top: 0; /* remove top padding when scrolled */
  padding-bottom: 8px; /* optional to reduce bottom padding */
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Oswald', sans-serif;
}

.logo {
  height: 48px;
  width: auto;
  display: block;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 1px;
  color: #0f0f30;
}

nav {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

/* ---------- DESKTOP NAV ---------- */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.desktop-nav a {
  font-weight: 700;
  color: #0b0b0b;
  padding: 8px 10px;
  border-radius: 6px;
  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: #6d6d75;
}

.desktop-nav .cta {
  background: #610000;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.desktop-nav .cta:hover {
  background: #958e8e;
  color: #ffffff;
}

/* ---------- HAMBURGER BUTTON ---------- */
.hamburger {
  display: none; /* shown only on mobile via media query */
  background: none;
  border: 0;
  font-size: 28px; /* adjust size */
  cursor: pointer;
  color: black; /* ensure visible */
  z-index: 200;
  position: relative;
}

.hamburger .material-icons {
  font-size: 28px;
  color: black;
}

@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .desktop-nav {
    display: none;
  }
}



/* ---------- MOBILE MENU (FULLSCREEN FADE) ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 11, 0.98);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(.2, .9, .3, 1);
  z-index: 220;
  padding: 40px 20px;
  text-align: center;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.mobile-menu .mobile-nav a {
  font-size: 1.4rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.mobile-menu .mobile-nav a:hover {
  color: #c21b1f;
}

.close-x {
  position: absolute;
  right: 18px;
  top: 16px;
  font-size: 36px;
  background: none;
  border: 0;
  color: #ffffff;
  cursor: pointer;
}


/* ---------- HERO SECTION ---------- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35)), url('img/hero2.png');
  background-size: cover;
  background-position: right;
}

.hero-inner {
  max-width: 900px;
  padding: 24px;
}

.hero-logo {
  padding-top: 20px;
  max-width: 400px;
  margin: 0 auto 12px;
  display: block;
}

.hero-title {
  font-size: 2.6rem;
  letter-spacing: 2px;
  margin: 8px 0 18px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  background: #610000;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.18s cubic-bezier(.2, .9, .3, 1), background 0.18s cubic-bezier(.2, .9, .3, 1);
}

.btn:hover {
  transform: translateY(-3px);
  background: #958e8e;
}

/* ---------- ABOUT SECTION ---------- */
.about {
  background: #ffffff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.about-video {
  flex: 1 1 400px;
  max-width: 300px;
}

.about-video video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.about-text {
  flex: 1 1 400px;
  color: #333333;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000000;
  font-weight: 800;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
}

/* ---------- SERVICES SECTION ---------- */
/* (Includes tabs, panels, items) */
.services {
  background: #040420;
  color: #ffffff;
  padding: 60px 20px;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
}

.services-tabs {
  font-family: "montserat", sans-serif;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tab-btn {
  background-color: #610000;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem;
  white-space: nowrap;
}

.tab-btn:hover {
  background-color: #958e8e;
}

.tab-btn.active {
  background-color: #958e8e;
}

.services-panel {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  overflow: visible;
}

.svc-panel {
  background: transparent;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 320ms ease, opacity 240ms ease;
  margin-bottom: 12px;
  will-change: max-height, opacity;
  padding: 0 6px;
}

.svc-panel.active {
  opacity: 1;
}

.svc-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  background: #121212;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.svc-name {
  color: #c21b1f;
  font-weight: 700;
  flex: 1 1 auto;
}

.svc-time,
.svc-price {
  color: #ffffff;
  font-weight: 800;
  min-width: 110px;
  text-align: right;
}

/* ---------- BOOKING SECTION ---------- */
.booking {
  background: #ffffff;
  color: #0b0b0b;
  text-align: center;
  padding: 40px 20px;
}

.booking h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #040420;
  margin-bottom: 30px;
}

.book-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.book-btn {
  background: #000000;
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

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

.call-us {
  font-size: 1.2rem;
  font-weight: 600;
}

.call-us a {
  color: #610000;
  text-decoration: none;
}

.call-us a:hover {
  text-decoration: underline;
}

/* ---------- GALLERY SECTION ---------- */
.gallery {
  background: #6a6969;
  text-align: center;
  padding: 80px 20px;
}

.gallery h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: auto;
  height: 300px;
  
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid img {
    aspect-ratio: 1 / 1;
  }
}

/* ---------- HOURS SECTION ---------- */
.hours {
  background: #040420;
  color: #ffffff;
  text-align: center;
  padding: 2px 20px;
}

.hours h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 40px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 2;
}

.hours-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.hours-list span {
  font-weight: 700;
  color: #ffffff;
}

/* ---------- CONTACT SECTION ---------- */
.contact {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.map-container {
  flex: 1 1 400px;
  min-width: 300px;
  max-width: 500px;
}

.contact-info {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: #0b0b0b;
}

.contact-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #000000;
}

.contact-box p {
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-box strong {
  font-weight: 700;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 24px;
  font-size: 0.95rem;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 900px) {
  .desktop-nav a {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .about-container {
    flex-direction: column;
  }

  .hero-title {
    font-size: 2rem;
  }

  .svc-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .svc-time,
  .svc-price {
    text-align: left;
    min-width: auto;
    margin-top: 6px;
  }

  .hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35)), url('img/hero1.png');
  background-size: cover;
  background-position: right;
}
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .gallery-grid img {
    height: 240px;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .services-tabs {
    gap: 8px;
  }

  .tab-btn {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
}

/* ---------- HOURS BAR ABOVE NAVBAR ---------- */
.hours-bar {
  background-color: #e0e0e0;
  color: #333333;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 10px;
  font-family: 'Montserrat', sans-serif;
}




.services-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards per row on desktop */
  gap: 16px;
  justify-items: center; /* center cards in their columns */
  margin-bottom: 40px;
}

.service-card {
  width: 100%;
  max-width: 320px; /* optional, controls card width */
  background: #ffffff;
  border: 4px solid #610000; /* thick maroon border */
  border-radius: 12px;
  padding: 24px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #610000;
  text-align: center;
  
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.service-card:hover {
 
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.service-card.active {
  background: #610000;
  color: #ffffff;
}

/* ---------- RESPONSIVE GRID ---------- */
@media (max-width: 900px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row on tablets */
  }
}

@media (max-width: 480px) {
  .services-cards {
    grid-template-columns: 1fr; /* 1 card per row on mobile */
  }
}


.hero-logo {
  width: 90%;           /* shrinks nicely on mobile */
  max-width: 400px;     /* stops it from getting too big on large screens */
  margin: 0 auto 12px;
  display: block;
  border-radius: 12%;   /* proportional radius instead of fixed 50px */
  padding-top: 20px;
   transition: opacity 1s ease;
  opacity: 1;
}


.fade-out {
  opacity: 0;
}
.fade-in {
  opacity: 1;
}




/* ---------- TRUSTED BY CLIENTS ---------- */
.trusted {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 40px 20px;
}

.trusted h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.trusted .stars {
  font-size: 2rem; /* size of stars */
  color: #f5c518; /* golden stars */
  margin-bottom: 12px;
}

.trusted .rating {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.trusted .reviews {
  font-size: 1.1rem;
  font-weight: 500;
  color: #cccccc;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .trusted h2 {
    font-size: 2rem;
  }

  .trusted .stars {
    font-size: 1.8rem;
  }

  .trusted .rating {
    font-size: 1.5rem;
  }

  .trusted .reviews {
    font-size: 1rem;
  }
}
