/* style.css */
body {
  margin: 0;
}

html {
  font-size: 20px; /* Increased base font size */
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  /* overflow-x: hidden; */
  line-height: 1.6;
  color: #222;
}

*, *::before, *::after {
  box-sizing: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

header.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
}

.navbar {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 1000;
  border-bottom: 1px solid #ccc;
  width: 100%;
  height: 60px; /* âœ… Fixed height */
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

.navbar a {
  text-decoration: none;
  color: #333;
}

#hero {
  padding-top: 80px;
}

.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  min-height: 100vh; /* Fill full viewport height */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px; /* Side padding for content */
}

.light-gray-section {
  background-color: #f0f0f0;
  padding: 50px 0;
}

.white-section {
  background-color: #fff;
  padding: 50px 0;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.grid-item {
  flex: 1 1 calc(50% - 20px);
  box-sizing: border-box;
}

.grid-item img {
  max-width: 100%;
  height: auto;
}

.faq-section .faq-item {
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-section .question {
  background-color: #f9f9f9;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
font-weight: bold;
}

.faq-section .answer {
  display: none;
  padding: 15px;
  background-color: #fff;
}

.image-text-section {
  padding: 50px 0;
  text-align: center;
}

.image-text-section img {
  max-width: 100%;
  height: auto;
}

.light-blue-section {
  background-color: #e0f7fa;
  padding: 50px 0;
  text-align: center;
}

H1 {
  /* color: #000; */
}

H2 {
  color: #d32f2f;
  text-align: center;
}

.footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-item {
  flex: 1 1 30%;
  padding: 10px;
}

@media (max-width: 768px) {
  .grid-item {
    flex: 1 1 100%;
  }

  .footer-grid {
    flex-direction: column;
    align-items: center;
  }

  .footer-item {
    text-align: center;
  }
}

.cta-button {
  background-color: #d32f2f; /* Red */
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px; /* Rounded corners */
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #b71c1c; /* Darker red on hover */
}


.testimonials-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.testimonial {
  background: #fff;
  border-left: 6px solid #d32f2f; /* DSI red */
  padding: 20px 25px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.testimonial .quote {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.6;
}

.testimonial .author {
  text-align: right;
  font-weight: bold;
  color: #555;
}

.hero-section {
  background-image: url('../assets/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-overlay .container {
  position: relative;
  z-index: 2;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8); /* Text shadow */
}

.cta-button {
  background-color: #d32f2f;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none; /* ðŸ”¥ This removes the underline */
  display: inline-block; /* Ensures padding is respected */
}

.cta-button:hover {
  background-color: #b71c1c;
}

img {
  max-width: 100%;
  display: block; /* Prevents inline gaps */
}







.navbar {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
  width: 100%;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  height: 70px;
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav li {
  position: relative;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 10px 0;
  transition: color 0.3s ease;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #d32f2f;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #d32f2f;
}

nav a:hover::after {
  width: 100%;
}




/* Hamburger hidden by default */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Nav layout */
nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  position: relative;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #d32f2f;
  transition: width 0.3s ease;
}

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

.nav-links li a:hover::after {
  width: 100%;
}

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

  .nav-links {
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .nav-links.open {
    max-height: 300px;
  }

  .nav-links li {
    padding: 15px;
    text-align: center;
  }
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1; /* Push to right */
}

@media (min-width: 769px) {
  nav {
    justify-content: flex-end; /* Make sure it's flush right on desktop */
  }

  .hamburger {
    display: none !important; /* Never show hamburger on large screens */
  }
}

.logo {
  margin-right: auto;
}



  .signup-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: sans-serif;
  }

  .signup-form h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #222;
  }

  .signup-form label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: #444;
  }

  .signup-form input[type="text"],
  .signup-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
  }

  .signup-form .selectbox {
    width: 100%;
    min-width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
  }

  .signup-form button {
    margin-top: 20px;
    background-color: #c30000;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
  }

  .signup-form button:hover {
    background-color: #a30000;
  }

  #selected-date-display {
    font-weight: 600;
    margin-bottom: 10px;
    color: #007700;
  }

  @media (max-width: 600px) {
    .signup-form {
      padding: 15px;
    }

    .signup-form h3 {
      font-size: 18px;
    }
  }





  .footer {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    font-family: Arial, sans-serif;
  }

  .footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .footer-column {
    flex: 1 1 300px;
    margin: 10px 0;
  }

  .footer-column.left {
    text-align: left;
  }

  .footer-column.center {
    text-align: center;
  }

  .footer-column.right {
    text-align: right;
  }

  .footer a {
    color: #fff;
    text-decoration: none;
  }

  .footer a:hover {
    text-decoration: underline;
  }

  .social-icons {
    margin-top: 10px;
  }

  .social-icons a {
    margin: 0 8px;
    display: inline-block;
  }

  .social-icons img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
  }

  @media (max-width: 768px) {
    .footer .container {
      flex-direction: column;
      text-align: center;
    }

    .footer-column.left,
    .footer-column.right {
      text-align: center;
    }
  }













.site-footer {
  background-color: #222;
  color: #fff;
  padding: 20px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.footer-center {
  text-align: center;
  flex: 1;
}

.footer-right {
  text-align: right;
  flex: 1;
}

.footer-right img {
  max-height: 150px;
  display: block;
  margin-left: auto;
}

.footer-left img {
  max-height: 150px;
  display: block;
  margin-right: auto;
}




footer a {
  color: yellow;
  /* color: #ffd700; */ /* Gold */
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline; /* Optional: adds underline on hover for clarity */
}



@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: none;
    margin: 10px 0;
  }

  .footer-right img {
    max-width: 150px;
    min-width: 150px;
    margin: 0 auto;
  }

  .footer-left img {
    max-width: 150px;
    min-width: 150px;
    margin: 0 auto;
  }
}


    .hero-section {
      background-image: url('/images/hero.jpg');
    }
    table {
      width: 100%;
      border-collapse: collapse;
    }
    td, th {
      padding: 6px;
      width: 14.2%;
    }
    a {
      text-decoration: none;
    }
    @media (max-width: 600px) {
      td, th {
        font-size: 12px;
        padding: 4px;
      }
    }



    #calendar {
      min-height: 250px;
      border: 1px dashed #ccc;
      padding: 10px;
      background: #f9f9f9;
    }

#calendar table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

#calendar th, #calendar td {
  border: 1px solid #ccc;
  padding: 8px;
  vertical-align: top;
  height: 80px;
  box-sizing: border-box;
  text-align: center;
}

#calendar a {
  display: inline-block;
  background-color: #c00;
  color: white;
  padding: 5px;
  border-radius: 5px;
  text-decoration: none;
}

#calendar h3 {
  margin: 0;
}

.footer a {
  color: #ffd700; /* Gold for contrast */
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.contact-form { max-width: 500px; margin: 20px auto; display: flex; flex-direction: column; gap: 10px; }
.contact-form label { font-weight: bold; }
.contact-form input, .contact-form textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; }
.contact-form button { padding: 10px; background: #007BFF; color: white; border: none; border-radius: 5px; cursor: pointer; }
.contact-success { background: #d4edda; color: #155724; padding: 10px; border-radius: 5px; text-align: center; }
.contact-error { background: #f8d7da; color: #721c24; padding: 10px; border-radius: 5px; }

.stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  margin-bottom: 5px;
  max-width: 170px;
}
.stars input {
  display: none;
}
.stars label {
  font-size: 2em;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}
.stars input:checked ~ label, .stars label:hover, .stars label:hover ~ label {
  color: gold;
}
#star-output {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #555;
}

