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

body {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #000;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

header .logo {
  font-size: 1.5rem;
  color: #fff;
  text-transform: uppercase;
}

header .logo span {
  color: #888;
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #aaa;
}

/* Layout */
.layout {
  display: flex;
 
  padding-top: 64px;
  
}

/* Left Menu */
.menu {
  width: 400px;
  background-color: #000;
  color: white;
  height: 100vh;
  position: sticky;
  top: 64px;
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
}


.menu ul {
  list-style: none;
}

.menu ul li {
  margin-bottom: 1rem;
}

.menu ul li a {
  color: white;
  text-decoration: none;
  padding: 0.5rem;
  display: block;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.menu ul li a:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Main Content */
.content {
  flex: 1;
  margin-left: 20px; /* Space for menu */
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto; /* Enable vertical scrolling */
  height: calc(100vh - 64px); /* Full height minus header */
  padding: 1rem;
  font-size: medium;
}

.gallery-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: 100%;
}
.gallery-section h1 {
  color: blueviolet;
  font-size: 2rem;
}
.gallery-section h3 {
  color: rgb(254, 253, 255);
  font-size: 2rem;
}
.gallery-image {
  max-width: 100%;
  max-height: 600px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}


.gallery-image:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(255, 255, 255, 0.3);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .menu {
    width: 250px; /* Adjust the width of the menu */
  }

  .content {
    margin-left: 100px; /* Adjust the margin for content */
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column; /* Stack header items */
    padding: 1rem;
  }

  .layout {
    flex-direction: column; /* Stack layout vertically */
  }

  .menu {
    width: 100%; /* Full width menu on smaller screens */
    height: auto; /* Adjust height */
    position: relative; /* Remove sticky positioning */
  }

  .content {
    margin-left: 0; /* Remove margin when menu is full width */
    padding: 0.5rem; /* Add padding for smaller screens */
  }
}

@media (max-width: 480px) {
  header .logo {
    font-size: 1.2rem; /* Smaller logo font size */
  }

  .menu ul li a {
    font-size: 1rem; /* Smaller link font size */
  }

  .gallery-image {
    max-height: 300px; /* Reduce max height for images on small screens */
  }
}
/* Video container styling */
.video-container {
  width: 100%;
  max-width: 900px; /* Adjust based on your design */
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* Aspect ratio 16:9 */
}

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