    * {
      box-sizing: border-box;
    }

html, body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #fff;
      color: #333;
        scroll-behavior: smooth;
      height: 100%;
    }

    html {
      width: 100%;
    }

      body {
      flex-direction: column;
      display: flex;
      min-height:fit-content;
    }

    
    header {
      background-color: #e60000;
      padding: 1.5em 1em;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: nowrap;
    }


    li {
      font-size: 1.1rem;
      margin: 0.4rem 0;
    }
    
    .logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-container img {
  width: 40%;
}

.site-title {
  display: flex;
  position: relative;
  flex-direction: column;
  line-height: .9;
  right: 20px;
}

.tags {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.tags:hover {
  text-decoration: underline;
}

.top-title {
  font-size: 2.2rem;
  font-weight: 500;
  color: white;

}

.bottom-title {
  font-size: 2.7rem;
  font-weight: BOLD;
  color: white;
    letter-spacing: 1px;
}

    header h1 {
      margin: 0;
      font-size: 1.8em;
    }

    nav {
      display: flex;
      gap: 1.5em;

    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      font-size: x-large;
    }

    nav a:hover {
      text-decoration: underline;
    }

    .hero-image {
      width: 100%;
      max-height: 600px;
      object-fit: cover;
      display: block;
    }
    
    hr {
      border: none;
      height: 2px;
      background-color: #ccc;
      margin: 1em 0 2em;
    }

    main {
      flex: 1;
      padding: 2em 1.5em;
      max-width: 1800px;
      width: 100%;
      margin: auto;

    }


.contact-info {
      font-size: 1.05em;
      margin-bottom: 1.5em;
    }

    .icon-line {
      display: flex;
      align-items: center;
      margin: 0.6em 0;
    }

    .icon-line i {
      font-size: 1.2em;
      margin-right: 10px;
      color: #e60000;
      width: 20px;
      text-align: center;
    }

    .icon-line a {
      color: #333;
      text-decoration: none;
    }

    .icon-line a:hover {
      text-decoration: underline;
    }


    h2, h3 {
        color: #193665;
  margin-bottom: 0.5rem;
    }

    .map-container {
    
  margin-top: 1rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.welcome {
    max-width: 1000px;
  margin: 2rem auto;
  padding: 1rem;
}

.pricing-section {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 1rem;
}

.contact-section {
    max-width: 1000px;
  margin: 2rem auto;
  padding: 1rem;
}

h1 {
  text-align: center;
  color: #222;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pricing-section .disclaimer {
  font-style: italic;
  color: #666;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  text-align: center;
}

.season-pricing {
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
   border: 1px solid #e0e0e0;
   border-left: 5px solid red;
}

.season-pricing:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.season-pricing span {
  font-weight: normal;
  font-size: 0.9rem;
  color: #555;
}

.season-pricing ul {
  list-style: none;
  padding-left: 0;
}

.season-pricing p, a {
        font-size: 1.1rem;
      margin: 0.4rem 0;
}


    footer {
      position:relative;
      background-color: #e60000;
      color: white;
      text-align: center;
      padding: 15px 20px;
      margin-top: 2em;
    }

    footer a {
      color: white;
      margin: 0 12px;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

.slideshow-container {
  height: 500px;
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #eee;
  display: block;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
  pointer-events: none; /* prevent them from blocking clicks */
}


.slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

/* Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  background: rgba(255, 255, 255, 0.7);
  color: #b11e1e;
  font-weight: bold;
  padding-right: 25px;
  padding-left: 25px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 50%;
  z-index: 10; /* ensure it's above everything */
  cursor: pointer;
  user-select: none;
  transition: background 0.3s, color 0.3s;
}

.prev:hover, .next:hover {
  background-color: #b11e1e;
  color: #fff;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Dots */
.dots-container {
  text-align: center;
  padding: 10px 0;
  background: #fff;
    margin-top: 15px;

}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.dot.active,
.dot:hover {
  background-color: #b11e1e;
}

.info-box {
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
   border: 1px solid #e0e0e0;
   border-left: 5px solid red;
}

.info-box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: #193665;
}

.styled-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  row-gap: 0.5rem;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    column-gap: 2rem;
}

.styled-list li {
  position: relative;
  padding-right: 5px;
}

.styled-list li::before {
  content: "›";
  position: relative;
  padding-right: 5px;
  left: 0;
  color: #193665;
  font-weight: bold;
  font-size: 1rem;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.navbar a {
  color: white;
  text-decoration: none;
  padding: 10px 10px;
}

/* Hamburger menu (hidden by default) */
.hamburger {
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: none; /* Hidden by default */
}

.mobile-logo-container {
  display: none;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

@media (max-width: 1400px) {
  .logo-container img {
    width: 60%;
  }
}

@media (max-width: 800px) {
header {
  min-height: 15vh;
}

  .slideshow-container {
    height: 300px;
  }

    .logo-container {
    display: none;
  }

  .header-container {
    width: 100%;
  }

  .mobile-logo-container {
      display: flex;
  }

  .mobile-logo-container img {
    width: 100%;
  }

  .navbar {
    text-align: center;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    min-height: 12vh;
    width:min-content;
    background-color: #a80000;
    padding: 10px 20px;
  }

  .navbar a {
    display: block;
  }

  .navbar.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

}

    @media (max-width: 600px) {
  .slideshow-container {
    aspect-ratio: 4 / 3; /* Taller ratio for phones */
  }
    }

    @media (max-width: 520px) {
  .styled-list{
     grid-template-columns: repeat(1, minmax(200px, 1fr));
}
    }
