/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

.gallery-section {
  padding: 60px 20px;
  background-color: #fefefe;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}


body {
  font-family: 'Calibri', sans-serif;
  background-color: #fff;
  color: #222;
  transition: background-color 0.3s, color 0.3s;
}

/* Navbar Base */
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Calibri', sans-serif;
  background-color: #fff;
  color: #222;
}

/* Navbar Base */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar a {
  font-family: 'Pakenham Condensed', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* Left: Hamburger + Nav Links */
.nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hamburger Button */
.menu-toggle {
  font-size: 28px;
  background: none;
  border: none;
  color: black;
  cursor: pointer;
  display: none; /* shown only on mobile */
}

/* Logo: Always centered */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo img {
  height: 50px;
}

/* Right Icons */
.nav-right .nav-icons {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav-icons li a {
  color: black;
  text-decoration: none;
  font-size: 20px;
}

/* Navigation Links (Desktop default) */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: darkred;
}

/* -------------------- Responsive -------------------- */
@media (max-width: 768px) {
  /* Show hamburger */
  .menu-toggle {
    display: block;
  }

  /* Hide nav links by default on mobile */
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: whitesmoke;
    display: none;
    padding: 20px 0;
    gap: 15px;
    text-align: left;
    z-index: 999;
  }

  /* Show links when menu is active */
  .nav-links.active {
    display: flex;
  }

  /* Style links in mobile view */
  .nav-links li a {
    color:black;
    font-size: 18px;
  }

  .nav-links li a:hover {
    color: black;
  }

  /* Smaller logo */
  .logo img {
    height: 45px;
  }
}


/* Hero Section */
.hero {
  background: url('hero.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background-color: #ffcc00;
  color: #000;
  padding: 12px 24px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  text-decoration: none;
}

/* Featured Section */
.featured {
  padding: 40px 20px;
  background-color: #fff;
}

.featured h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: black;
}

.cards {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
  scrollbar-width: none; /* Firefox */
}

.cards::-webkit-scrollbar {
  display: none; /* Chrome */
}

.card {
  flex: 0 0 280px;
  scroll-snap-align: center;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  color: #333;
}

.card p {
  font-size: 14px;
  color: #666;
}


/* How It Works */
.how-it-works {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.step {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 20px 30px;
  border-radius: 20px;
  font-weight: bold;
}

.contact-page {
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #111;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  justify-content: space-between;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form .checkbox {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-form .checkbox input {
  margin-right: 10px;
}

.contact-form button {
  padding: 14px 20px;
  width: 100%;
  background: #ddd;
  border: none;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #ccc;
}

.contact-info {
  flex: 1;
  min-width: 280px;
  font-size: 14px;
  font-family: calibri;
}

.contact-info h3,
.contact-info h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 14px;
}

.contact-info p {
  margin-bottom: 20px;
  font-size: 14px;
}

.contact-info a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

.contact-info .hours {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.contact-info .hours li {
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  max-width: 250px;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }
}


/* Testimonials */
.testimonials {
  background-color: #f1f1f1;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 30px;
}

.quotes blockquote {
  font-style: italic;
  margin-bottom: 20px;
  max-width: 500px;
  margin-inline: auto;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: whitesmoke;
  color: black;
  padding: 20px 40px;
  flex-wrap: wrap;
}

.footer-socials a {
  color: black;
  font-size: 22px;
  margin-right: 20px;
  transition: opacity 0.3s;
}

.footer-socials a:hover {
  opacity: 0.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.footer-links a {
  color: black;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    margin-top: 15px;
    gap: 15px;
  }
}


/* Hero Carousel */
.hero-carousel {
  position: relative;
  height: 80vh;
  overflow: hidden;
}
.hours-table {
  font-family: 'Calibri', sans-serif;
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 10px;
}

.hours-table td {
  padding: 6px 10px;
  border-bottom: 1px solid #ccc;
}

.hours-table td:first-child {
  font-weight: bold;
  width: 100px;
}

.hours-table .highlight td {
  font-weight: bold;
  color: #111;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
  max-width: 80%;
}

.overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.overlay p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background-color: rgba(0, 0, 0, 0.4);
  color: ghostwhite;
  padding: 12px 24px;
  
  border: none;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 2;
}

.nav:hover {
  background: rgba(0, 0, 0, 0.6);
}

.nav.prev {
  left: 20px;
}

.nav.next {
  right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .overlay h1 {
    font-size: 1.5rem;
  }
  .overlay p {
    font-size: 1rem;
  }
}

.interactive-actions {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px 0;
  padding: 0 20px;
}

.action-card {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

.action-card h3 {
  margin-bottom: 15px;
  color: black;
}

.action-card p {
  margin-bottom: 30px;
  color: black  ;
  font-size: 15px;
}



.action-btn {
  background-color: #e60000;
  color: white;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.action-btn:hover {
  background-color: #cc0000;
}

@media (min-width: 768px) {
  .interactive-actions {
    flex-direction: row;
    justify-content: center;
  }

  .action-card {
    width: 45%;
  }
}


.action-card1 {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-card1:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

.action-card1 h3 {
  margin-bottom: 20px;
  color: black;
}

.action-card1 p {
  margin-bottom: 20px;
  color: black  ;
  font-size: 15px;
}



.action-btn1 {
  background-color: #e60000;
  color: white;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.action-btn1:hover {
  background-color: #cc0000;
}

@media (min-width: 768px) {
  .interactive-actions {
    flex-direction: row;
    justify-content: center;
  }

  .action-card1 {
    width: 45%;
  }
}