/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Open+Sans&display=swap');

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color:lightseagreen;
  color:blue;
  line-height: 1.6;
}

/* Typography */
h1, h2 {
  font-family: 'Playfair Display', serif;
}

/* Header & Navigation */
header {
  background-color:lightseagreen; /* pastel purple */
  color:#fff;
  padding: 1rem;
  text-align: center;
}

nav {
  margin-top: 0.5rem;
  position: relative;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  color: #fff;
  background-color: #333;
  text-align: right;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  border-bottom: 1px solid #444;
}

.nav-links li a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  color: #fff;
}

.nav-links li a:hover {
  background-color: #444;
}

/* Hero Section with Background Video */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  z-index: -1;
}

.hero-content {
  z-index: 1;
  padding: 2rem;
  max-width: 90%;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #ff9671;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #ff7f50;
  transform: scale(1.05);
}

/* Image & Video Gallery */
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 2rem 1rem;
  background-color: #f9f9f9;
}

.image-gallery img,
.image-gallery video {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.image-gallery .hover-img:hover {
  transform: scale(1.05);
  filter: brightness(90%);
}

.video {
  width: 100%;
  max-width: 600px;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #fcefee;
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

/* Responsive Styles */
@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #222;
    width: 100%;
  }

  .nav-links.show {
    display: flex;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    background: none;
  }

  .nav-links li {
    border: none;
  }

  .nav-links li a {
    padding: 0.5rem 1rem;
  }

  .menu-toggle {
    display: none;
  }
}
