/* ──────────────────────────────────────────────────────────────────────────
   Custom Font: Intro Rust Base Shade
────────────────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Intro Rust Base Shade';
  src: local('Intro Rust Base Shade'), local('IntroRustBaseShade'),
       url('fonts/IntroRust-BaseShade.woff2') format('woff2'),
       url('fonts/IntroRust-BaseShade.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}



/* ──────────────────────────────────────────────────────────────────────────
   Reset & Base
────────────────────────────────────────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fafafa;
  color: #333;
  /* push content below fixed header */
  padding-top: 100px;
}

/* ──────────────────────────────────────────────────────────────────────────
   Header
────────────────────────────────────────────────────────────────────────── */
.header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 5px 20px 10px;
  text-align: center;
  border-bottom: 1px solid #eee;
  z-index: 1000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-container.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

/* Logo & Subtitle */
.logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 5px;
}

.logo-image {
  max-height: 200px;
  height: auto;
}

.logo-subtitle {
  font-family: "Intro Rust Base Shade", "Intro Rust Base Shade Mobile", "Montserrat", "Arial", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #7f8c8d;
}

/* Navigation */
.nav-container {
  display: block;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  margin: 5px 0 10px;
}

.nav-menu li a {
  font-family: "Intro Rust Base Shade", "Intro Rust Base Shade Mobile", "Montserrat", "Arial", sans-serif;
  text-decoration: none;
  color: #2c3e50;
  font-size: 0.9rem;
  text-transform: lowercase;
  padding: 5px;
}

.nav-menu li a.active,
.nav-menu li a:hover {
  color: #e53e3e;
}

/* Hamburger Menu Styles */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger {
  display: block;
  width: 100%;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

/* ──────────────────────────────────────────────────────────────────────────
   Hero (index.html only)
────────────────────────────────────────────────────────────────────────── */
.hero-image {
  width: 100%;
  height: 70vh;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
}

/* ──────────────────────────────────────────────────────────────────────────
   Content Sections
────────────────────────────────────────────────────────────────────────── */
.main-content {
  margin-top: 0;
}

.content-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
  text-align: center;
}

.section-title {
  font-family: "Intro Rust Base Shade", cursive;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
}

.section-description {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

/* ──────────────────────────────────────────────────────────────────────────
   Gallery
────────────────────────────────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-caption {
  padding: 20px;
}

.gallery-caption h3 {
  font-family: 'Intro Rust Base Shade', cursive;
  font-size: 1.6rem;
  color: #e53e3e;
}

.gallery-caption p {
  color: #7f8c8d;
  font-size: 0.95rem;
}

/* ──────────────────────────────────────────────────────────────────────────
   Image Nav Tiles (Explore)
────────────────────────────────────────────────────────────────────────── */
.image-nav-grid {
  display: flex;
  justify-content: space-between;
  gap: 0;
  padding: 0;
}

.image-nav-tile {
  position: relative;
  flex: 1;
  height: 250px;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

.image-nav-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-nav-tile:hover img {
  transform: scale(1.1);
}

.image-nav-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-family: 'Intro Rust Base Shade', cursive;
  font-size: 1.4rem;
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
}

/* ──────────────────────────────────────────────────────────────────────────
   Menu Poster (menu.html)
────────────────────────────────────────────────────────────────────────── */
.menu-image img {
  width: 80%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.header-container + .content-section {
  margin-top: 200px;
}

/* ──────────────────────────────────────────────────────────────────────────
   Hours Banner (services.html)
────────────────────────────────────────────────────────────────────────── */
.hours-image img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 200px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ──────────────────────────────────────────────────────────────────────────
   Services CTA Button
────────────────────────────────────────────────────────────────────────── */
.services-cta {
  text-align: center;
}

.services-cta .section-description {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.btn-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 24px;
  background-color: #e53e3e;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-cta:hover {
  background-color: #c12f2f;
}

/* ──────────────────────────────────────────────────────────────────────────
   About Section
────────────────────────────────────────────────────────────────────────── */
.about-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 40px;
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text .section-title {
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
  background-color: #e53e3e;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  margin-top: 140px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* ──────────────────────────────────────────────────────────────────────────
   Contact Form Styling
────────────────────────────────────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form button {
  width: fit-content;
  padding: 0.75rem 1.5rem;
  background-color: #e53e3e;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #c12f2f;
}

/* ──────────────────────────────────────────────────────────────────────────
   Footer
────────────────────────────────────────────────────────────────────────── */
footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 40px 20px;
  margin-top: 80px;
}


/* ──────────────────────────────────────────────────────────────────────────
   Mobile Styles: viewport ≤ 768px
────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Body push-down */
  body {
    padding-top: 180px;
  }

  /* Header padding */
  .header-container {
    padding: 5px 20px;
  }

  /* Hero image adjustment */
  .hero-image {
    margin-top: 0;
    height: 50vh;
  }

  /* Explore tiles → 2-column grid */
  .image-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Logo adjustments */
  .logo-section,
  .text-logo-container {
    padding: 0 20px;
    box-sizing: border-box;
  }

  .logo-image,
  .text-logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /* Hamburger toggle */
  .nav-toggle {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .hamburger {
    width: 100%;
    height: 3px;
    background: #2c3e50;
    border-radius: 2px;
  }

  /* Collapsible nav */
  .nav-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    width: auto;
    background: white;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    z-index: 999;
    box-sizing: border-box;
  }

  .nav-container.open {
    display: block;
    max-height: 300px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  /* Stack navigation links vertically */
  .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
  }

  .nav-menu li a {
    font-family: "Intro Rust Base Shade", "Intro Rust Base Shade Mobile", "Montserrat", "Arial", sans-serif;
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    text-transform: lowercase;
  }

  /* About section stacks on mobile */
  .about-section {
    flex-direction: column;
    text-align: center;
    margin-top: 100px;
  }

  .about-text {
    text-align: center;
    
  }

  .about-image {
    margin-top: 20px;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   Ultra-Mobile Styles: viewport ≤ 480px
────────────────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  /* Further adjust body push-down */
  body {
    padding-top: 160px;
  }

  /* Single-column explore tiles */
  .image-nav-grid {
    grid-template-columns: 1fr;
  }

  /* Adjust content padding */
  .content-section {
    padding: 0 20px;
  }

  /* Smaller section titles */
  .section-title {
    font-size: 2rem;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   Footer Social Links
────────────────────────────────────────────────────────────────────────── */
.footer-social {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-social a img {
  display: block;
  width: 32px;
  height: auto;
  filter: none;
  transition: transform 0.2s ease;
}

.footer-social a:hover img {
  transform: scale(1.1);
}
