/* -------------------- GENERAL STYLES -------------------- */
body {
  margin: 1rem;
  font-family: 'Arial', sans-serif;
  background-color: #111;
  color: #eee;
}

a {
  text-decoration: none;
  color: inherit;
}

h1 {
  font-size: 35px;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}


/* -------------------- HEADER & NAVIGATION -------------------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #070707;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header img {
  max-height: 75px;
  padding: 1rem;
}

nav a {
  margin: 0 1rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background 0.3s;
}

nav a:hover {
  background-color: #333;
}

/* -------------------- MAIN CONTENT -------------------- */
main {
  padding: 2rem;
}

/* -------------------- HOME PAGE GRID: 3:1 LAYOUT -------------------- */
.home-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 2rem;
  margin: 1.5rem
}

.home-videos-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.home-video-row {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.video-card {
  background-color: #222;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
  max-width: 100%; /* allows scaling */
}

.video-card:hover {
  transform: translateY(-5px) scale(1.02);
  background-color: #333;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-description {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 0.3rem;
}

.video-card p {
  font-size: larger;
  margin: 1rem;
}

/* -------------------- VIDEO GRID -------------------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1rem;
}
.video-description{
  margin: 1.5rem;
  padding: .5rem;
}

.video-card h3 {
  margin: 1rem;
  font-size: larger;
}
/* -------------------- UPDATES / BLOG -------------------- */
.home-updates-section {
  background-color: #222;
  padding: 1rem;
  border-radius: 10px;
}

.updates {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.update-item {
  padding: 0.5rem;
  border-bottom: 1px solid #333;
}

.update-item:last-child {
  border-bottom: none;
}

.update-item:hover {
  background-color: #333;
  cursor: pointer;
  transition: background 0.3s;
}

/* -------------------- BOOKING -------------------- */
.booking-container {
  width: 100%;
  max-width: 900px;
  margin: 1rem auto;
  padding: 20px;
  background: rgb(216, 216, 216);
  border-radius: 1rem;
}

/* -------------------- ABOUT PAGE -------------------- */
.about-section {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  margin: 1rem;
}

.about-section img {
  width: 300px;
  height: 300px;
  background-color: #333;
  border-radius: 10px;
  object-fit: cover;
}

.about-text {
  flex: 1;
  min-width: 250px;
  margin: 1rem;
}

/* -------------------- FOOTER -------------------- */
footer {
  padding: 1rem;
  background-color: #000;
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 2rem;
  font-size: 40px;
}

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

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

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-section img {
    margin-bottom: 1rem;
  }
}
