
/* ======= GLOBAL RESET ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #111;
  color: #fff;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 5px;
}

h1, h2, h3 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.section {
  padding: 4rem 2rem;
}

.section.alt {
  background-color: #222;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  background: #e63946;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #c71d2f;
}

/* ======= HERO ======= */
.hero {
  background: url('poster-bg.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #fff;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 3rem;
  border-radius: 10px;
  animation: fadeIn 1.5s ease;
}

/* ======= NAV ======= */
.navbar {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.5rem 0;
}

.navbar ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  flex-wrap: wrap;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #ffd700;
}

/* ======= GRID/CARDS ======= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: #1b1b1b;
  padding: 1rem;
  border: 1px solid #333;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

/* ======= GALLERY ======= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-thumb img {
  width: 100%;
  border: 2px solid #333;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-thumb img:hover {
  transform: scale(1.05);
}

/* ======= TESTIMONIALS ======= */
.testimonial {
  background: #1a1a1a;
  border-left: 5px solid #ffd700;
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  font-style: italic;
}

/* ======= MODAL ======= */
.modal-overlay,
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.modal-overlay.show,
.gallery-modal.show {
  display: flex;
}

.modal-box {
  background: #222;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.modal-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .modal-box {
    width: 95%;
    padding: 1rem;
  }
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem 1rem;
  z-index: 10;
}

#prevImage {
  left: 10px;
}

#nextImage {
  right: 10px;
}

.highlight-pricing {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
  background-color: transparent;
}

.highlight-box {
  background: linear-gradient(to bottom, #333, #222);
  border: 2px solid #ffd700;
  border-radius: 12px;
  padding: 1.5rem;
  width: 100%;
  max-width: 640px;
  margin: auto;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
  text-align: center;
}

.highlight-box h2.glow {
  font-size: 1.6rem;
  color: #ffd700;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #ffd700;
}

.pricing-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #f5f5f5;
}

@media (max-width: 768px) {
  .highlight-box {
    padding: 1.2rem;
  }

  .highlight-box h2.glow {
    font-size: 1.4rem;
  }

  .pricing-text {
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .highlight-box {
    padding: 1rem;
  }

  .highlight-box h2.glow {
    font-size: 1.3rem;
  }

  .pricing-text {
    font-size: 0.95rem;
  }
}

.modal-box {
  background: #222;
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.modal-box h2 {
  margin-top: 0;
  font-size: 1.5rem;
  text-align: center;
  color: #ffd700;
}

.modal-box form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-box input,
.modal-box button {
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.modal-box input {
  background-color: #333;
  color: #fff;
  border: 1px solid #555;
}

.modal-box input::placeholder {
  color: #aaa;
}

.modal-box button {
  background-color: #e63946;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal-box button:hover {
  background-color: #c71d2f;
}

@media (max-width: 480px) {
  .modal-box {
    padding: 1rem;
  }

  .modal-box h2 {
    font-size: 1.3rem;
  }

  .modal-box input,
  .modal-box button {
    font-size: 0.95rem;
    padding: 0.7rem;
  }
}

.camp-header {
  background: linear-gradient(to right, #111, #333);
  color: #ffd700;
  padding: 2rem 1rem;
  text-align: center;
  border-bottom: 2px solid #ffd700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.header-container h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px #ffd700;
}

.camp-dates {
  font-size: 1.2rem;
  color: #fff;
}