/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  background-color: transparent;
}

/* Fixed Video Background */
.hero-video {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  z-index: 0;
  background: black;
}

#bg-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 1;
}

/* Fixed Transparent Navbar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  background: transparent;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 600;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffcc00;
}

/* Hamburger Menu Placeholder */
.menu-toggle {
  display: none;
}

/* General Section Layout */
section {
  padding: 120px 20px;
  background: transparent;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  position: relative;
  z-index: 2;
}

/* Hero Section */
header#home {
  padding: 120px 20px 80px;
  background: transparent;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  position: relative;
  z-index: 2;
}

.overlay {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
}

.overlay h1 img {
  max-width: 100%;
  height: auto;
}

.overlay p {
  margin: 20px 0;
  font-size: 1.5rem;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 10px 20px;
  border: 1px solid white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Section Layouts */
.about-content,
.event-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
  animation: fadeIn 1s ease-in-out;
}

.about-text,
.event-details {
  flex: 1 1 50%;
}

.about-media,
.event-flyer {
  flex: 1 1 50%;
  max-width: 100%;
}

.event-flyer {
  max-width: 100%;
  border-radius: 8px;
}

/* Contact Section */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin-top: 20px;
}

input,
textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-family: inherit;
}

.social-actions {
  margin-top: 40px;
}

.social-links {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.social-links a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ffcc00;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 20px;
  color: #ccc;
  z-index: 2;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
