/* ---------- Base Styles ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  color: #000;
  background-color: #FFF;
  line-height: 1.5;
}
h1, h2, h3 {
  margin-bottom: 16px;
}
p {
  margin-bottom: 16px;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  margin-left: 20px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 10px;
}

/* ---------- Container/Section ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* ---------- Header ---------- */
header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 5%;
  background-color: #000000;
  z-index: 100;
}
header img {
  height: 80px;
  width: auto;
}
header h2 {
  color: #FFF;
  font-size: 1.5rem;
  margin-bottom: 0;
}

/* ---------- Video Hero Section ---------- */
.video-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  z-index: -1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.video-hero h1 {
  font-size: 7rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
}

.video-hero h2 {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.video-hero .cta-button {
  font-size: 1.5rem;
  padding: 16px 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-hero .cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* ---------- Section Titles ---------- */
.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #000000;
  text-align: center;
}

/* ---------- Content Sections ---------- */
section {
  padding: 60px 5%;
}
section:nth-child(odd) {
  background-color: #f8f8f8;
}
section p {
  max-width: 800px;
  margin: 0 auto 20px;
}
section ul {
  max-width: 800px;
  margin: 0 auto 20px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-5px);
}
.testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  float: left;
  margin-right: 15px;
  object-fit: cover;
  border: 2px solid #000000;
}
.testimonial p {
  margin-bottom: 12px;
  font-style: italic;
}
.testimonial .name-location {
  font-weight: bold;
  margin-bottom: 8px;
  color: #000000;
}

/* ---------- Reserve CTA Section ---------- */
.reserve-cta {
  text-align: center;
  background-color: #000000 !important;
  color: #FFF;
  padding: 60px 5%;
}
.reserve-cta .section-title {
  color: #FFF;
}
.reserve-cta .cta-button {
  margin-top: 20px;
}

/* ---------- Footer & Cookie Notice ---------- */
footer {
  text-align: center;
  padding: 30px 5%;
  background-color: #333;
  color: #FFF;
}
#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.85);
  color: #FFF;
  padding: 15px;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}
#cookie-notice button {
  margin-top: 10px;
  background-color: #000000;
  color: #FFF;
  border: none;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}
#cookie-notice button:hover {
  background-color: #333333;
}

/* ---------- Buttons ---------- */
.cta-button {
  background-color: #000;
  color: #FFF;
  font-weight: bold;
  padding: 16px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
} 