* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #b9222e;
  --dark-bg: #0d0d0d;
  --darker-bg: #000;
  --card-bg: #161618;
  --text-primary: #fff;
  --text-secondary: #ccc;
  --border-color: rgba(255, 255, 255, 0.08);
  --transition: 0.3s ease;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
}

/* TYPOGRAPHY */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
h2 {
  font-size: 1.8rem;
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 8px;
  display: inline-block;
  margin-bottom: 2rem;
  text-align: center;
}
h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  width: fit-content;
}
p,
ul,
dl {
  margin-top: 0.5rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
ul {
  list-style: disc;
  padding-left: 20px;
}

dl dt {
  font-weight: 700;
  margin-top: 12px;
}

dl dd {
  margin-left: 20px;
  margin-bottom: 12px;
}

/* HEADER */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: var(--darker-bg);
  position: relative;
  top: 0;
  z-index: 1000;
}
header .hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  width: 25px;
  position: absolute;
  top: 50;
  right: 30px;
}
header .hamburger span {
  height: 2px;
  width: 100%;
  background: #fff;
  transition: all 0.3s ease;
}
header .hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  transition: all 0.3s ease;
}
header .hamburger.open span:nth-child(2) {
  opacity: 0;
}
header .hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  transition: all 0.3s ease;
}
header .logo img {
  height: 4.5rem;
}
header #menu {
  display: none;
}
header #menu.open {
  display: flex;
}
header #menu ul {
  list-style: none;
  position: absolute;
  padding: 10px 5px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  top: 100%;
  right: 0;
  background: var(--darker-bg);
  padding: 1rem 2rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
header #menu ul a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}
header #menu ul a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition);
}
header #menu ul a:hover::after {
  width: 100%;
}

/* BANNER */
.banner {
  position: relative;
  height: 50vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px);
  z-index: 1;
}
.banner h1 {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 2.5rem;
  text-transform: uppercase;
}

/* SECTIONS */
main > section {
  padding: 50px 30px;
  max-width: 1200px;
  margin: auto;
}

/* SCHEDULE */
.schedule-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  margin: 0;
}
.schedule-table .row {
  display: grid;
  grid-template-columns: 1fr;
  padding: 15px 0;
  margin: 0;
}
.day-col {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #bbb;
  color: var(--primary-color);
  text-transform: uppercase;
}
.activity-col {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  text-transform: uppercase;
}
.activity-col span {
  font-weight: 600;
  color: var(--text-primary);
  margin-right: 10px;
  text-transform: lowercase;
}

/* PRICING */
.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.info-card {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.info-card h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
}
.info-card p {
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.price-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  margin-bottom: 10px;
  min-height: 6rem;
}
.price-box .row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}
.price-box .price {
  font-weight: 700;
  color: var(--primary-color);
}
.info-card .cta {
  width: 100%;
  background: var(--primary-color);
  padding: 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition);
}
.info-card .cta:hover {
  background: #d02525;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(230, 57, 70, 0.3);
}

/* SLIDESHOW */
.slideshow {
  max-width: 100%;
  margin: auto;
  position: relative;
}
.slide img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  border-radius: 8px;
}
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 4px;
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}
.dots {
  text-align: center;
  margin-top: 10px;
}
.dot {
  height: 12px;
  width: 12px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
  cursor: pointer;
}
.dot.active {
  background: var(--primary-color);
}

/* LOCATION */
.location iframe {
  width: 100%;
  max-width: 1200px;
  height: 450px;
  border: none;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  margin: auto;
}

/* FOOTER */
footer {
  background: var(--darker-bg);
  color: var(--text-primary);
  padding: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
footer img {
  width: 12rem;
  height: auto;
}
footer .footer-fastlinks ul,
footer .footer-contact ul {
  list-style: none;
  padding: 0;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
}
footer .footer-contact a {
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 20px 5px;
}
footer .footer-fastlinks a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}
footer .footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

section h2 {
  text-align: center;
}

/* MEDIA QUERIES */

/* Tablet & Desktop */
@media (min-width: 600px) {
  .banner h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}

/* Small desktops ≥769px */
@media (min-width: 769px) {
  header #menu {
    display: flex;
  }
  header #menu ul {
    display: flex;
    flex-direction: row;
    position: static;
    gap: 1.5rem;
    background: none;
    padding: 0;
    list-style: none;
  }
  header #menu ul a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
  }
  header .hamburger {
    display: none;
  }
  .banner {
    height: 60vh;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .pricing-cards {
    flex-direction: row;
    justify-content: flex-start;
    gap: 2rem;
  }
  .banner h1 {
    font-size: 3rem;
  }
  .reviews-section h2 {
    font-size: 2rem;
  }
  .review-slide .info-card {
    padding: 20px;
    max-width: 90%;
  }
  .comment-box .stars {
    font-size: 1rem;
  }
  .review-text {
    font-size: 0.95rem;
  }
}

/* Large desktops ≥1025px */
@media (min-width: 1025px) {
  header {
    padding: 1.5rem 3rem;
  }
  .banner {
    height: 80vh;
  }
  .schedule-table .row {
    padding: 20px;
    gap: 10px;
  }
  .day-col {
    font-size: 1.4rem;
  }
  .activity-col {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  .pricing-cards {
    gap: 2.5rem;
  }
  .info-card {
    padding: 25px;
    width: 500px;
  }
  h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
  h3 {
    font-size: 1.6rem;
  }
  .slide img {
    height: 70vh;
  }
  .location iframe {
    height: 600px;
  }
}
