/* General body styling */
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to right, turquoise, purple);
  background-size: cover;
  background-attachment: fixed;
  color: white;
}

/* Glass effect on divs and sections */
div, .navbar a, .container a {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 10px;
  margin: 15px auto;
  text-align: center;
}

/* Navbar styles */
.navbar {
  display: flex;
  justify-content: space-around;
  padding: 15px;
  font-size: 18px;
  background: rgba(90, 145, 182, 0.3);
  backdrop-filter: blur(5px);
}

.navbar a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.navbar a:hover {
  color: gold;
  text-shadow: 0 0 8px gold;
}

/* Video styling */
#myVideo {
  width: 100%;
  border-radius: 10px;
  margin-top: 20px;
}

/* Responsive image gallery */
.show img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  margin: 10px 0;
}

/* Section headings */
h1, h3, h5 {
  text-align: center;
}

/* Container with social icons */
.container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.container a {
  transition: all 0.3s ease;
}

/* Icon hover effect with golden balloon */
.container a:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px gold, 0 0 20px gold, 0 0 30px gold;
}

/* All rights reserved image styling */
.footer-image {
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  text-align: center;
}

/* Styling for the logo */
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.logo img {
  width: 150px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Gallery Layout */
.rang1 {
  padding: 20px;
  margin: 0 auto;
  max-width: 1200px;
}

.image-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap; /* Ensure the images wrap to the next row on smaller screens */
}

.gallery-image {
  transition: transform 0.5s ease, z-index 0s 0.5s;
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  max-height: 300px;
}

/* When an image is enlarged */
.gallery-image.enlarged {
  transform: scale(2);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(2);
  z-index: 1000;
  max-width: 90vw;
  max-height: 90vh;
}

.image-container {
  position: relative;
  width: calc(33.33% - 20px);
  margin: 10px;
}

.image-actions {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .image-actions {
  opacity: 1;
}

.download-btn, .whatsapp-btn, .favorite-btn {
  background-color: #40e0d0;
  border: none;
  color: white;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 5px;
  text-decoration: none;
}

.download-btn:hover, .whatsapp-btn:hover, .favorite-btn:hover {
  background-color: #ffd700;
  color: #333;
}

.whatsapp-btn {
  background-color: #25d366;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
}

.favorite-btn.liked .heart-icon {
  color: red;
}

/* Lightbox container for enlarged image */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(120, 185, 201, 0.084);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 60%;
  max-height: 60%;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 45px;
  right: 45px;
  font-size: 30px;
  color: rgb(127, 181, 214);
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

/* Responsive design for mobile, tablet, and desktop */
@media screen and (max-width: 1024px) {
  .navbar {
    flex-direction: column;
    font-size: 16px;
  }

  .image-container {
    width: calc(50% - 20px); /* Display two images per row on tablets */
  }

  .gallery-image {
    max-height: 250px;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    font-size: 14px;
    padding: 10px;
  }

  .image-container {
    width: 100%; /* Display one image per row on mobile */
  }

  .gallery-image {
    max-height: 200px;
  }

  .lightbox img {
    max-width: 80%; /* Adjust size on smaller screens */
    max-height: 80%;
  }

  .close-btn {
    top: 20px;
    right: 20px;
    font-size: 24px;
  }
}

@media screen and (max-width: 480px) {
  .navbar {
    font-size: 12px;
  }

  .gallery-image {
    max-height: 150px;
  }

  .lightbox img {
    max-width: 90%;
    max-height: 70%;
  }

  .close-btn {
    top: 15px;
    right: 15px;
    font-size: 22px;
  }
}

/******************************************************/
/* Container and content styling */
.container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.container a {
  text-decoration: none;
}

.container img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.container img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.content {
  margin: 20px 0;
}

/* Responsive design */
@media screen and (max-width: 1024px) {
  .container {
    gap: 10px;
  }
  
  .container img {
    max-width: 48%;
  }
}

@media screen and (max-width: 768px) {
  .container img {
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .container img {
    max-width: 100%;
  }
}
/***************************************************/
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px;
}

.container a {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container img {
  width: 300px;
  height: 300x;
  border-radius: 20%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .container {
    gap: 15px;
  }

  .container img {
    width: 300px;
    height: 300px;
  }
}

@media screen and (max-width: 480px) {
  .container {
    gap: 10px;
  }

  .container img {
    width: 300px;
    height: 300px;
  }
}


