/* styles.css */

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Container for centering */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Audio Controls */
#audio-controls {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.7);
  padding: 8px;
  border-radius: 50px;
  display: flex;
  gap: 10px;
  z-index: 999;
}

#audio-controls button {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* Popup */
#popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#popup-content {
  background: #222;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
}

.popup-button {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.enter { background: #007bff; color: #fff; }
.exit { background: #dc3545; color: #fff; }

/* Header 
header {
}
.logo img {
  height: 50px;
   display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0,0,0,0.8);
  position: sticky;
  top: 50;
  z-index: 99;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0px;
  align-items: 50%; center;
  top: 50;
  z-index: 99;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.hamburger {
  display: none;
}

/* Hero */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0,0,0,0.5);
  padding: 50px 20px;
}

.hero-text h1 {
  font-size: 3em;
  margin-bottom: 10px;
  background: linear-gradient(to right, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.btn {
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* Sections */
section {
  padding: 40px 0;
}

h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

/* Videos */
.content-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.video-item video {
  width: 100%;
  border-radius: 10px;
}

.video-item p {
  text-align: center;
}

/* Gallery */
.content-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.content-item img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
}

/* Lightbox */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#lightbox-img {
  max-width: 90%;
  max-height: 90%;
}

/* Contact */
#contact-form {
  max-width: 200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#contact-form input, #contact-form textarea {
  padding: 10px;
  background: #333;
  border: none;
  color: #fff;
}

#contact-form button {
  padding: 10px;
  background: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Footer */
footer {
  background: rgba(0,0,0,0.8);
  padding: 10px;
  text-align: center;
  margin-top: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    left: 0;
    background: rgba(0,0,0,0.8);
    width: 100%;
  }

  nav ul.active {
    display: flex;
  }

  .hamburger {
    display: block;
    font-size: 30px;
    cursor: pointer;
  }

  .hero-text h1 {
    font-size: 2em;
  }

  .hero-text p {
    font-size: 1.2em;
  }
}