
* { box-sizing: border-box; margin: 0; padding: 0; }


body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: calc(20vh + 150px); 
}

#video-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 20vh;
  z-index: 1000;
  background: #000;
  overflow: hidden;
}

#video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

header {
  background: #333;
  color: #fff;
  padding: 1em 0;
  text-align: center;
  position: fixed;
  top: 20vh;
  width: 100%;
  z-index: 999;
   justify-content: center;
  
}


nav {
  display: flex;
  justify-content: center;
  background: #444;
  position: fixed;
  top: calc(15vh + 125px);
  width: 100%;
  z-index: 998;
}

nav a {
	  color: white;
	  padding: 1em;
	  text-decoration: none;
	  transition: background 0.3s;
	}

	nav a:hover {
	  background: #555;
	  color: #00ffff;
	}


section {
  padding: 4em 2em;
  min-height: 100vh;
  position: relative;
  color: black;
  font-size: 1.2em;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

 .fade-bg {
  position: relative;
  display: flex;
  justify-content: flex-start; 
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  min-height: 100vh;
  padding: 0 5%;
  overflow: hidden;
}

.fade-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.3), rgba(0,0,0,0)); /* <-- fade to right */
  z-index: 0;
  pointer-events: none;
}

.fade-bg > .content-box {
  width: 60%;
  max-width: none;
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3); 
  padding: 30px;
  border-radius: 10px;
  margin-left: 0;
  margin-right: auto;
  font-size: 1em;
}

details { margin-top: 1em; }
summary { cursor: pointer; font-weight: bold; }

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 2em 1em;
  position: relative;
  z-index: 2;
}
.legal, .useful-links {
  margin-top: 1em;
  font-size: 0.9em;
}




.section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 25px; 
  margin-bottom: 18px; 
  border: 2px solid #000000;
}


.section .bg1,
.section .bg2 {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  background-size: cover;
	  background-position: center;
	  transition: opacity 1s ease-in-out;
	  opacity: 0;
	  z-index: 0; 
	  pointer-events: none; 
	}

	
	.section .bg1.visible,
	.section .bg2.visible {
	  opacity: 1;
	  z-index: 0; 
	}

	
	.content-box {
	  position: relative;
	  z-index: 2;
	  max-width: 1200px;
	margin: 0 auto;
	padding: 40px;
	  
	}


* {
  box-sizing: border-box;
}

.media-section {
  max-width: 100%;
  padding: 30px;
  background-color: #f9f9f9;
  overflow: hidden;
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 15px;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid #ccc;
  background: black;
  border-radius: 8px;
  overflow-y: auto;
  max-height: 80vh; 
}

.media-gallery img,
.media-gallery video {
  width: 100%;
  aspect-ratio: 16 / 9; 
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.media-gallery img:hover,
.media-gallery video:hover {
  transform: scale(1.05);
}


summary {
	  color: white;
	  font-weight: bold;
	  padding: 5px;
	  transition: background-color 0.3s, color 0.3s;
	}

	  summary:hover {
	  background-color: #555;
	  color: #00ffff; 
	  cursor: pointer;
	}

 .useful-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
  }

  .useful-links a:hover {
    color: #00ffff;
    text-decoration: underline;
  }


  .section-title {
    color: #ffffff;        
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5); 
    margin-bottom: 10px;
  }

  .section-description {
    color: #e0ffff;         
    font-size: 1.2em;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    line-height: 1.6;
    max-width: 800px;
    margin: auto;
  }

.see-through-box {
    background-color: rgba(255, 255, 255, 0.07); 
    backdrop-filter: blur(5px);                 
    -webkit-backdrop-filter: blur(10px);        
    border: 1px solid rgba(255, 255, 255, 0.2);   
    border-radius: 20px;
    padding: 30px;
    max-width: 900px;
    margin: 40px auto;
    color: #fff;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
  }

  .see-through-box h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #00ffff;
  }

  .see-through-box p {
    font-size: 1.2em;
    color: #e0f7fa;
    line-height: 1.6;
  }
  

#about {
  background-image: url('../vidho/queen.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


#gallery {
  background-image: url('../vidsu/WA0016.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#contact {
  background-image: url('../vidsu/WA0027.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.indented-list {
  margin-left: 2rem;
  padding-left: 1rem;
  list-style-type: disc; 
}
.main-footer {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
}
.legal {
  margin-top: 20px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: white;
  
}
nav {
  background-color: #222;
  padding: 10px;
}

.menu-button {
  display: none;
  background-color: #444;
  color: white;
  font-size: 18px;
  padding: 10px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  position: relative; /* or static */
  margin: 0;
}


.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 10px;
  display: inline-block;
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 1024px) {

  /* Hide the original desktop nav bar completely */
  nav {
    background: none;
    position: static;
  }

  /* Burger button fixed below header */
  .menu-button {
    display: block;
    position: fixed;
    top: calc(20vh + 110px); /* Adjust to header bottom */
    left: 0;
    width: 100%;
    z-index: 1000;

    background-color: #444;
    color: white;
    font-size: 18px;
    padding: 10px;
    border: none;
    text-align: left;
    cursor: pointer;
	
  }

  /* Dropdown menu (hidden by default) */
  .nav-links {
    position: fixed;
    top: calc(20vh + 110px + 42px); /* Below burger button */
    left: 0;
    width: 100%;
    background: #333;
    z-index: 999;

    flex-direction: column;
    overflow-y: auto;

    /* Smooth hide (no line) */
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  /* Show dropdown when toggled */
  .nav-links.show {
    max-height: 70vh; /* Slide open */
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    border-bottom: 1px solid #555;
    text-align: left;
    padding: 12px;
  }

  /* Add top padding so content isn't hidden behind fixed menu */
  body {
    padding-top: calc(22vh + 220px);
  }
  
  
   .media-gallery {
    grid-template-columns: 1fr;
    max-height: none; 
  }

  .media-gallery img,
  .media-gallery video {
    max-height: 300px; 
  }
  
   .fade-bg > .content-box {
    width: 90%;
    padding: 20px;
    font-size: 1em;
    margin: 0 auto;
  }
  
}

/* Fullscreen overlay hidden by default */
.orientation-warning {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: black;
  color: white;
  font-size: 2em;
  text-align: center;
  padding-top: 40vh;
  z-index: 9999;
}

@media screen and (max-width: 1024px) and (orientation: landscape) {
  .orientation-warning {
    display: block;
  }
  
   /* Hide the original desktop nav bar completely */
  nav {
    background: none;
    position: static;
  }
}
