* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #f7f7f7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #1a1a1a;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.logo img {
  max-width: 100px;
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 40px;
}

nav ul li a {
  color: #fdcd3b;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.25rem;
}

nav ul li a:hover {
  color: #fdcc3b99;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #fdcd3b;
  margin-right: 15px;
  border: 1px solid #fdcd3b;
  border-radius: 6px;
  padding: 2.5px 5px;
}

#hero {
  height: 75vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(resources/images/asset-1.webp) center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.hero-content {
  max-width: 700px;
  padding: 0 30px;
  color: #fdcd3b;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: -1px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
  margin-bottom: 0;
  line-height: 1.1;
}

.hero-content p {
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  margin-bottom: 15px;
}

.hero-description {
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-cta {
  margin-top: 25px;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}
.btn-cta {
  background: #fdcd3b;
  color: #1a1a1a;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #e6b82a;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#about-us {
  display: flex;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 30px;
  gap: 30px;
  justify-content: center;
}

.about-us-content {
  flex: 3;
}

.our-facility {
  flex: 2;
}

.about-us-content h2,
.our-facility h2,
.package-container h2 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.about-us-content h2::before,
.our-facility h2::before {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #fdcd3b;
  margin-bottom: 15px;
}

.package-container h2::before {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #fdcd3b;
  margin: 0 auto 15px;
}

.about-us-content p.tagline {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.about-us-content p {
  margin-bottom: 18px;
  line-height: 1.8;
}

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

.facilities-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.facilities-list li::before {
  content: "\2713";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: rgba(253, 205, 59, 0.15);
  border-radius: 50%;
  color: #fdcd3b;
  margin-right: 12px;
  font-size: 12px;
}

.facilities-list li:hover {
  transform: translateX(5px);
}

.package-container {
  display: flex;
  flex-direction: column;
  padding: 0 30px;
  margin: 40px auto;
  max-width: 1200px;
}

.package-container h2 {
  text-align: center;
}

.package-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.package-card {
  background: #1a1a1a;
  border-radius: 6px;
  padding: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

@media (hover: hover) {
  .package-card:hover {
    transform: translateY(-10px);
  }
}

.package-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #fff;
}

.package-card .price {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fdcd3b;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.package-card ul li {
  padding: 5px 0;
  color: #ccc;
  border-bottom: 1px solid #f5f5f5;
}

#available-dates {
  padding: 40px 0;
  background-color: #f7f7f7;
}

.calendar-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}

.calendar-container h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a1a1a;
  font-weight: 400;
}

.calendar-container h2::before {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #fdcd3b;
  margin: 0 auto 15px;
}

.calendar-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
  border-radius: 6px;
  padding: 15px 25px;
  margin-bottom: 25px;
}

.nav-btn {
  background: none;
  border: none;
  color: #fdcd3b;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: rgba(253, 205, 59, 0.1);
  transform: scale(1.1);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}
.nav-btn:disabled:hover {
  background: none;
  transform: none;
}

.month-year {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
}

.calendar-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2a2a2a;
  border-radius: 6px;
  padding: 15px 20px;
  margin-bottom: 25px;
}

.year-selector {
  display: flex;
  gap: 10px;
  background: #1a1a1a;
  border-radius: 6px;
  padding: 5px;
}

.year-btn {
  background: transparent;
  border: none;
  color: #ccc;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.year-btn:hover {
  background: rgba(253, 205, 59, 0.1);
  color: #fdcd3b;
}

.year-btn.active {
  background: #fdcd3b;
  color: #1a1a1a;
  transform: scale(1.05);
}
.year-btn.active:hover {
  background: #fdcd3b;
  color: #1a1a1a;
}

.today-btn {
  background: #28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.today-btn:hover {
  background: #218838;
  transform: scale(1.05);
}

.today-btn:active {
  transform: scale(0.98);
}

.calendar-table {
  background: #1a1a1a;
  border-radius: 6px;
  padding: 20px;
  overflow: hidden;
}

.calendar-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #333;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}

.day-name {
  background: #2a2a2a;
  color: #fdcd3b;
  text-align: center;
  padding: 12px 5px;
  font-weight: 600;
  font-size: 0.9rem;
}

.calendar-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #333;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  position: relative;
  min-height: 300px;
  /* transition: opacity 0.3s ease; */
}

.calendar-cell {
  background: #2a2a2a;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: none !important;
}

/* @keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

.calendar-cell.other-month {
  background: #1a1a1a;
  opacity: 0.4;
  transition: none !important;
}

.day-number {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: none !important;
}

.other-month .day-number {
  color: #666;
  transition: none !important;
}

.calendar-cell.weekend {
  border: 2px solid transparent;
}

.calendar-cell.weekend.booked {
  background: #3d1a1a;
  border-color: #dc3545;
}

.calendar-cell.today {
  background: #2a2a1a;
  border-color: #fdcd3b;
}

.calendar-cell.today .day-number {
  color: #fdcd3b;
  font-weight: 700;
}

.book-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(37, 211, 102, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 6px;
}
.book-btn {
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.calendar-cell.weekend:not(.booked):hover .book-overlay {
  opacity: 1;
  visibility: visible;
}

.calendar-booking-cta {
  display: none;
}

.book-date-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366;
  color: #fff;
  border-radius: 6px;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.book-date-btn:hover {
  background-color: #128c7e;
}

.calendar-info {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.nav-btn img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: all 0.3s ease;
}
.nav-btn:hover img {
  opacity: 1;
  transform: scale(1.1);
}
.nav-btn:disabled img {
  opacity: 0.3;
  transform: none;
}
.nav-btn:disabled:hover img {
  transform: none;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
}

.info-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-booked {
  background: #dc3545;
}

.btn-detail,
.map-link {
  display: inline-block;
  background-color: #fdcd3b;
  color: #1a1a1a;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-detail:hover {
  background-color: #fdcc3b99;
}

.note {
  text-align: center;
  font-size: 0.9rem;
  font-style: italic;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1200px;
}

.footer-section {
  margin-bottom: 20px;
  text-align: left;
}

.footer-section h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fdcd3b;
  margin-bottom: 15px;
}

.footer-section p {
  margin-bottom: 8px;
  line-height: 1.5;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link img {
  display: block;
  width: 18px;
  height: 18px;
}

.social-link:hover {
  color: #fdcd3b;
}

.map-link {
  margin-top: 20px;
}

.map-link:hover {
  transform: scale(1.05);
}

#footer > p {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

#other-events {
  padding: 1rem 0;
}

.event-description {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.event-description p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.event-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  list-style: none;
}

.event-types li {
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  .event-types li:hover {
    transform: scale(1.05);
  }
}

.event-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25d366;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s;
}

.event-cta img {
  display: block;
  width: 20px;
  height: 20px;
}

.event-cta:hover {
  background-color: #128c7e;
}

@media (min-width: 769px) and (max-width: 992px) {
  .header-container {
    padding: 15px;
  }
  .logo img {
    max-width: 80px;
  }
  nav ul {
    gap: 30px;
  }
  nav ul li a {
    font-size: 1rem;
  }
  #hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(resources/images/asset-1.webp) right center/cover no-repeat;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 1.2rem;
  }

  #about-us {
    flex-direction: column;
    gap: 20px;
  }

  .about-us-content h2::before,
  .our-facility h2::before {
    margin: 0 auto 15px;
  }

  .facilities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 10px;
  }

  .calendar-controls {
    padding: 12px 18px;
    margin-bottom: 20px;
  }

  .year-btn {
    padding: 7px 13px;
    font-size: 0.85rem;
  }

  .today-btn {
    padding: 9px 18px;
    font-size: 0.85rem;
  }
  .calendar-booking-cta {
    display: block;
    text-align: center;
    margin-top: 25px;
  }

  .book-date-btn {
    text-decoration: none;
  }

  .book-date-btn:hover {
    text-decoration: none;
  }
  .book-date-btn {
    max-width: 300px;
    padding: 14px 20px;
    font-size: 16px;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .header-container {
    padding: 15px;
  }
  nav ul {
    gap: 20px;
  }
  #hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(resources/images/asset-1.webp) right center/cover no-repeat;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-top: 15px;
  }

  #about-us {
    flex-direction: column;
    gap: 20px;
  }
  .facilities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 10px;
  }
  .package-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .calendar-container {
    padding: 0 15px;
  }

  .calendar-container h2 {
    font-size: 2rem;
  }

  .month-year {
    font-size: 1.3rem;
  }

  .calendar-cell {
    min-height: 50px;
  }

  .day-number {
    font-size: 0.9rem;
  }

  .calendar-info {
    gap: 15px;
  }

  .calendar-controls {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 15px;
    margin-bottom: 20px;
  }

  .year-selector {
    justify-content: center;
  }

  .year-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .today-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .calendar-booking-cta {
    display: block;
    text-align: center;
    margin-top: 25px;
  }

  .book-date-btn {
    text-decoration: none;
  }

  .book-date-btn:hover {
    text-decoration: none;
  }
  .book-date-btn {
    max-width: 300px;
    padding: 14px 20px;
    font-size: 16px;
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .header-container {
    padding: 15px;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    flex-basis: 100%;
    order: 2;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    background-color: #1a1a1a;
    text-align: center;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
  }

  nav ul.show {
    max-height: 225px;
    padding: 10px 0;
    opacity: 1;
  }

  nav ul li {
    margin: 10px 0;
    display: block;
  }

  nav ul li a {
    display: block;
    padding: 10px 0;
    width: 100%;
  }

  #hero {
    height: 60vh;
    padding: 80px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(resources/images/asset-1.webp) right center/cover no-repeat;
  }

  .hero-content {
    padding: 0 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 5px;
  }

  .hero-content p {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 1rem;
    margin-top: 15px;
    line-height: 1.4;
    padding: 0 10px;
  }
  .btn-cta {
    width: 100%;
    max-width: 280px;
    padding: 12px 24px;
  }
  #about-us {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }

  .about-us-content h2,
  .our-facility h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .about-us-content h2::before,
  .our-facility h2::before {
    margin: 0 auto 15px;
  }

  .about-us-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .package-container {
    padding: 0 20px;
  }

  .package-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .package-card {
    padding: 20px 16px;
  }

  .package-card h3 {
    font-size: 1.6rem;
  }

  .package-card .price {
    font-size: 1.3rem;
  }

  .package-card ul li {
    font-size: 15px;
    padding: 8px 0;
  }

  .calendar-nav {
    padding: 8px 12px;
  }

  .nav-btn {
    font-size: 1.1rem;
    padding: 8px;
  }

  .month-year {
    font-size: 1.2rem;
  }

  .calendar-table {
    padding: 15px;
  }

  .calendar-cell {
    min-height: 45px;
  }

  .calendar-controls {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 12px 15px;
    margin-bottom: 20px;
  }

  .year-selector {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .year-btn {
    flex: 1;
    min-width: 60px;
    padding: 5px 10px;
    font-size: 0.75rem;
  }

  .today-btn {
    padding: 7px 14px;
    font-size: 0.75rem;
    gap: 6px;
  }

  .btn-detail {
    display: block;
    text-align: center;
    width: 100%;
    padding: 14px 20px;
  }
  .calendar-booking-cta {
    display: block;
    text-align: center;
    margin-top: 25px;
  }

  .book-date-btn {
    text-decoration: none;
  }

  .book-date-btn:hover {
    text-decoration: none;
  }
  .book-date-btn {
    max-width: 300px;
    padding: 14px 20px;
    font-size: 16px;
  }

  .event-types {
    flex-direction: column;
    gap: 1rem;
  }

  .event-types li {
    width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .footer-section {
    text-align: center;
  }
  .social-links {
    align-items: center;
  }
}

@media (max-width: 992px) {
  nav ul li a:hover {
    color: #fdcd3b;
  }
  .facilities-list li:hover {
    transform: none;
  }
  .package-card:hover {
    transform: none;
  }
  .nav-btn:hover {
    background: none;
    transform: none;
  }
  .year-btn:hover {
    background: transparent;
    color: #ccc;
  }
  .year-btn.active:hover {
    background: #fdcd3b;
    color: #1a1a1a;
    transform: scale(1.05);
  }
  .today-btn:hover {
    background: #28a745;
    transform: none;
  }
  .calendar-cell.weekend:not(.booked):hover .book-overlay {
    opacity: 0;
    visibility: hidden;
  }
  .btn-detail:hover {
    background-color: #fdcd3b;
  }
  .social-link:hover {
    color: #fff;
  }
  .map-link:hover {
    transform: none;
  }
  .event-types li:hover {
    transform: none;
  }
  .event-cta:hover {
    background-color: #25d366;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .calendar-body,
  .calendar-cell {
    animation: none !important;
    transition: none !important;
  }
}
