* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #F8F8F8;
}
.navbar2 {
  position: sticky;
  top: 0;
  background: #FFF6EA;
  color: white;
  padding: 1rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo2 {
  font-size: 1.5rem;
}
.logo-img2 {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-links li a {
  color: #C32545;
  text-decoration: none;
}
.dropdown-section {
  background: #F8F6F2;
  padding: 1rem;
  text-align: center;
  color: #C32545;
}
.dropdown-section select {
  padding: 0.5rem;
  font-size: 1rem;
  color: #C32545;
}
.news-bar {
  background: #edebe0;
  color: white;
  text-align: center;
  padding: 0.75rem;
}
.news-bar a {
  color: #C32545;
  text-decoration: none;
  font-weight: bold;
  display: none;
}
.image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1rem;
}
.image-item {
  width: 410px;
  transition: transform 0.3s ease;
}
.image-item:hover {
  transform: scale(1.05);
}
.image-item img {
  width: 100%;
  border-radius: 8px;
}
.image-item h3 {
  text-align: center;
  margin-top: 0.5rem;
}
.footer {
  background: #edebe0;
  color: #C32545;
  text-align: center;
  padding: 1rem;
  margin-top: auto;
  position: sticky;
  bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-end;
  }
  .image-grid {
    flex-direction: column;
    align-items: center;
  }
  .image-item {
  width: 310px;
  transition: transform 0.3s ease;
}
.dropdown-section select {
  padding: 0.5rem;
  font-size: 0.85em;
  color: #C32545;
}
.footer {
font-size: 0.85em;
}
}
/* Page Header Section */

.page-header {
	background-color: #f7f7f7;
  padding: 20px 20px 40px;
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin: 2rem 0;
  color: #C32545;
  border-bottom: 1px solid #ddd;
}


.page-header h2 {
  font-size: 2.5rem;
  color: #C32545;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.2rem;
  color: #666;
}
.home-page-header {
  background-color: #f7f7f7;
  padding: 10px 20px 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  font-family: 'Poppins', sans-serif;
  font-style: italic;
}
.home-page-header h2 {
  font-size: 2.5rem;
  color: #C32545;
  margin-bottom: 10px;
}

.home-page-header p {
  font-size: 1.2rem;
  color: #666;
}

/* Booking Container */
.booking-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.booking-container iframe {
  width: 100%;
  height: 700px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
  .page-header h2 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }
    .home-page-header h2 {
    font-size: 2rem;
  }

  .home-page-header p {
    font-size: 1rem;
  }

  .booking-container iframe {
    height: 600px;
  }
}
html {
  scroll-behavior: smooth;
}
.hours-section {
  padding: 1.5rem;
  background-color: #f7f7f7;
  border-radius: 8px;
  margin-top: 2rem;
}

.hours-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.working-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.working-hours li {
  padding: 0.3rem 0;
  font-size: 1rem;
  color: #555;
}
.service-highlights {
  padding: .5rem;
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 10px;
  margin: .5rem auto;
  max-width: 800px;
}

.service-highlights h2 {
  font-size: 1.8rem;
  color: #C32545;
  margin-bottom: .5rem;
}


.focus-list {
  list-style: none;
  padding: 0;
}

.focus-list li {
  font-family: 'Poppins', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.focus-list li::before {
  content: "";
  margin-right: 8px;
}



section[id] {
  scroll-margin-top: 90px;
}


/* Base header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background-color: #3B3C36;
  color: #C32545;
  position: sticky;
  z-index: 999;
}

/* Logo image */
.logo-img {
  height: 50px;
  max-width: 160px;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #C32545;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: 500;
  padding: 4px 6px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffcc00;
}

/* Hamburger toggle button */
.menu-toggle {
  display: none;
  font-size: 1.6em;
  background: none;
  border: none;
  color: #C32545;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #f7f7f7;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 12px;
    gap: 10px;
  }

  .nav-links.active {
    display: flex;
  }
  
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: white;
}

.faq-item {
  margin-bottom: 1em;
  border-bottom: 1px solid #ccc;
}
    .faq-container {
      max-width: 800px;
      margin: 80px auto;
      padding: 20px;
    }
    .faq-item {
      border-bottom: 1px solid #ddd;
      padding: 20px 20px;
	  background-color: #f9f9f9;
	  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }



.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.1em;
  padding: 0.5em 0;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .arrow {
  transition: transform 0.3s ease;
  font-size: 1.2em;
}

/* Hidden answer */
.faq-answer {
  display: none;
  padding: 0.5em 0;
  color: #444;
  font-size: 1em;
}

/* Active state */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .arrow {
  transform: rotate(180deg); /* flips arrow down */
}





