/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=DANSON+MEDIUM:wght@500&display=swap');
@import url('https://fonts.cdnfonts.com/css/komika-axis');
@import url('https://fonts.cdnfonts.com/css/geneva01');
@import url('https://fonts.cdnfonts.com/css/lt-bump');
@import url('https://fonts.cdnfonts.com/css/lt-neo-rounded');

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


/* Body Styles */
body {
  font-size: 16px;
  background: url('') no-repeat center center fixed;
  background-size: cover;
  background-color: #000;
  color: #fff;
  font-family: 'DANSON MEDIUM', sans-serif;
  font-weight: 500;
}

/* Background Video */
video#background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Content Section */
section.content {
  padding: 40px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo Styles */
.logo {
  float: left;
}

.left-section {
  float: left;
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 40px rgb(235, 242, 243);
  margin-right: 15spx;

}

.logo-image:hover {
  box-shadow: 0 0 40px rgb(255, 255, 255);
}

/* Logo Text */
.logo-container a {
  font-weight: bold;
  font-size: 30px;
  color: #fff;
  text-decoration: none;

  border-radius: 10px; /* Adjust the radius value as needed */
  padding: 5px 10px; /* Adding padding for space inside the border */
}

/* Right Section Styles */
.right-section {
  float: right;
  display: flex;
  align-items: center;
    border: 2px solid#f7fcff28; /* Adding a border */
    border-radius: 10.5px;

}

.right-section a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-family: 'DANSON MEDIUM', sans-serif;
  font-size: 18px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  transition: color 0.3s, font-size 0.3s; /* Include font-size in transition */
  position: relative;
}



/* Active state styles */
.right-section a.active {
  font-weight: bold;
  color: #ffffff;
  animation: grow 0.3s ease; /* Animate the size change */
}

@keyframes grow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); /* Increase size at midpoint */
  }
  100% {
    transform: scale(1);
  }
}

/* Different sizes for buttons based on the active page */
/* Example: Increase the font size for the active Home button */
.home-page .home-button.active {
  font-size: 20px;
}

/* You can similarly adjust sizes for other pages */
.gallery-page .gallery-button.active {
  font-size: 22px;
}

.contact-page .contact-button.active {
  font-size: 24px;
}



/* Navigation Styles */
nav {
  background-color: rgba(0, 0, 0, 0.712);
  padding: 30px;
  color: #fff;
  font-size: 20px;
  text-align: right;
  height: 70px;
  box-shadow: 0 1px 55px rgba(255, 255, 255, 0.137);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navigation Links */
nav a {
  padding: 10px;
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-family: 'LT Bump', sans-serif;
  font-weight: 500;
  text-shadow: 0 0 25px rgb(255, 255, 255);
  font-size: 20px;
}

nav a.active-home {
  font-weight: bold;
  font-size: 26px;
}

nav a.active-gallery {
  font-weight: bold;
  font-size: 24px;
}

.nav-icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

/* Content Section (Button Styles) */
section.content {
  padding: 70px;
  text-align: center;
  font-weight: 500;
}

h1 {
  font-size: 6vw;
  margin-bottom: 20px;
  font-family: 'Geneva01', sans-serif;
}

p {
  font-size: 2vw;
  margin-bottom: 10px;
  font-family: 'Geneva01', sans-serif;
  font-weight: 500;
}

.btn {
  display: inline-block;
  box-shadow: 0 0 20px rgba(168, 238, 255, 0.6);
  background-color: rgb(35, 174, 216);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  margin: 10px;
  transition: background-color .3s, color .3s, box-shadow .3s;
  font-family: 'Komika Axis', sans-serif;
  font-weight: 500;
  transition: transform 0.8s, filter 0.1s;
}

.btn:hover {
  transform: scale(1.1);
  background-color: #fff;
  color: #2beefc;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Gallery Section */
section.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 10px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  filter: blur(1px);
  transition: transform 0.8s, filter 0.5s;
  z-index: 1;
  border-radius: 10px;
}

.gallery-image:hover {
  transform: scale(1.1);
  filter: none;
  position: relative;
  z-index: 2;
  border-radius: 10px;
}

/* Modal Overlay */
#modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

#modal-image {
  display: block;
  max-width: 70%;
  max-height: 70%;
  border-radius: 10.5px;
}

#close-btn {
  position: absolute;
  top: 117px;
  right: 52px;
  font-size: 70px;
  color: #ffffff;
  cursor: pointer;
  text-shadow: 0 0 10px rgba(182, 247, 255, 0.8);
}

#next-btn,
#prev-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 100px;
  color: #ffffff;
  cursor: pointer;
  z-index: 1;
  padding: 0px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}

#next-btn {
  right: 20px;
}

#prev-btn {
  left: 20px;
}


.contact-text {
  font-size: 34px; 
  text-shadow: 0 0 40px rgb(177, 235, 255);
}


.contact-box {
  display: inline-block;
  background-color: rgb(35, 174, 216);
  color: #fff;
  padding: 15px 39px;
  border-radius: 10px;
  text-decoration: none;
  margin: 10px;
  transition: background-color .3s, color .3s, box-shadow .3s;
  box-shadow: 0 0 15px rgb(1, 147, 192);
  font-family: 'LT Bump', sans-serif;
  font-family: 'LT Bump Condensed', sans-serif;
  transition: transform 0.8s, filter 0.1s;

}

.contact-box:hover {
  transform: scale(1.1);
  background-color: #fff;
  color: #2beefc;
  box-shadow: 0 0 20px rgb(255, 255, 255);
  text-shadow: 0 0 10px rgb(255, 255, 255);
}


*{

  padding: 0;
  margin: 0;
}
body {
  font-size: 16px;
  background: url('BG/DG.jpg') no-repeat center center fixed;
  background-size: cover;
  background-color: #fff; /* Your light mode background color */
  color: #ffffff; /* Your light mode text color */
  font-family: 'Your-Light-Font', sans-serif;
  font-weight: 400;
  height: 100vh;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none; /* Add this line to disable pointer events on the particles container */
}
/* Your existing CSS styles */

/* Additional styles for dark mode */
body.dark-mode {
  background: url('BG/NG.jpg') no-repeat center center fixed;
  background-size: cover;
  background-color: #011e25; /* Your dark mode background color */
  color: #fff; /* Your dark mode text color */
  font-family: 'Your-Dark-Font', sans-serif;
  font-weight: 400;
}

/* Dark mode toggle styles */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
  margin-right: 10px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffffab;
  border-radius: 34px;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background-color: #fafafa;
  border-radius: 50%;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #3f3f3f;
}

input:checked + .slider:before {
  transform: translateX(16px);
}

/* Button styles for dark mode */
.dark-mode-btn {
  background-image: url('');

}
