/* GENERAL */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
}

/* HEADER */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: black;
  color: gold;
}

.logo {
  height: 50px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: gold;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: white;
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: #f9f9f9;
}

.hero-text h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: gold;
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: black;
  color: gold;
  border: 1px solid gold;
}

/* MEDIA GRID (Images + Videos) */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px auto;
  max-width: 1100px;
  padding: 0 20px;
}

.media-card {
  background: #fff;
  border: 2px solid gold;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  padding: 10px;
}

.media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Make all images and videos inside media-card fill the card */
.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the container without distortion */
  display: block;
}

}
/* Make videos fill the media-card like images */
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the card without distortion */
  display: block;
}

/* Ensure overlay appears over video */
.media-card .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.8rem;
  background: rgba(0,0,0,0.6);
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
}


/* FORMS (Booking & Contact) */
form {
  max-width: 600px;
  margin: 30px auto;
  background: #fff;
  padding: 20px;
  border: 2px solid gold;
  border-radius: 12px;
}

form label {
  display: block;
  font-weight: bold;
  color: gold;
  margin-top: 10px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid gold;
  border-radius: 8px;
  background: white;
  color: black;
}

form button {
  margin-top: 15px;
  background: gold;
  color: black;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background: black;
  color: gold;
  border: 1px solid gold;
}

/* FOOTER */
footer {
  background: black;
  color: gold;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.footer-info p {
  margin: 5px 0;
}

.socials {
  margin-top: 10px;
}

.socials a {
  margin: 0 10px;
  font-size: 20px;
  color: gold;
  transition: color 0.3s;
}

.socials a:hover {
  color: white;
}
