/* Reset Styles - NO CHANGES HERE */
body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* Navigation Bar - NO CHANGES HERE */
nav { 
  background-color: #ffb686;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Logo Styling - NO CHANGES HERE */
.logo {
  height: 50px;
}

/* Nav Center - NO CHANGES HERE */
.nav-center {
  display: flex;
  align-items: center;
  /* Keep logo/home aligned to the left */
  justify-content: flex-start;
}

.home-link {
  text-decoration: none;
  color: #5d4037;
  font-weight: bold;
  font-size: 1.2rem;
  margin-left: 10px;
}

/* Navigation Links (Desktop) - NO CHANGES HERE */
nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  /*  Important:  Remove the automatic margin  */
  margin-left: 0; /* Reset */
  margin-right: 110px;  /* Space to the right */
  /* Move the whole nav UL to the far right */
  margin-left: 50px;
}

nav ul li {
  margin-left: 20px; /* Consistent spacing between links */
}

nav ul li a {
  text-decoration: none;
  color: #5d4037;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

nav ul li a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Hamburger Menu (Mobile) - NO CHANGES HERE */
.hamburger {
  display: none;  /* Hidden by default on larger screens */
  cursor: pointer;
  padding: 10px;
  font-size: 1.5rem;
  color: #5d4037;
}

.hamburger:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.menu {
  display: none;  /* Hide the menu by default on mobile */
  position: absolute;
  top: 100%; /* Position below the navbar */
  left: 0;
  width: 100%;
  background-color: #fad2a5;
  text-align: center;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 999; /* Ensure it's above other content */
}

.menu.active {
  display: block; /* Show menu when active */
}

.menu li {
  margin: 10px 0;
}

.menu li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #5d4037;
  font-weight: bold;
}

.menu li a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Responsive Navigation - NO CHANGES HERE */
@media (max-width: 768px) {
  nav ul {
    display: none;  /* Hide the desktop menu */
  }

  .hamburger {
    display: block;  /* Show the hamburger menu */
  }

  /* Styling the nav-center on mobile */
  nav {
    flex-direction: row; /* Keep logo and hamburger in a row */
    align-items: center;
  }

  .nav-center {
    flex: 1;         /* Allow logo to take remaining space */
    display: flex;
    flex-direction: row; /* Keep logo and home link in a row */
    align-items: center;
    justify-content: flex-start; /* Align to the left */
  }

  .home-link {
    margin-left: 10px;  /* Add spacing between logo and home link */
  }

  /* Push the hamburger to the right */
  .hamburger {
    margin-left: auto;
  }
}

/* Video Background - NO CHANGES HERE */
.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Overlay Content - NO CHANGES HERE */
.overlay {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.3); /* Keep the background */
  padding: 5px 5px;      /* Reduced padding */
  border-radius: 10px;
  /* max-width: 90%;        REMOVED the max-width */
  width: fit-content; /* NEW: Fit content to the text */
}

.overlay h5 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.btn {
  background-color: #e68a5d;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-block;
}

.btn:hover {
  background-color: #d47557;
}

/* Floating Petals - NO CHANGES HERE */
.petal {
  position: absolute;
  top: 0;
  width: 30px;
  height: auto;
  pointer-events: none;
  animation: fall linear infinite;
  opacity: 0.5;
  z-index: 9999;
}

/* Floating Effect - NO CHANGES HERE */
@keyframes fall {
  from {
    transform: translateY(0px) rotate(0deg);
  }

  to {
    transform: translateY(100vh) rotate(360deg);
  }
}

/* Responsive Video Section - NO CHANGES HERE */
@media (max-width: 768px) {
  .overlay h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 25px;
  }
}

@media (max-width: 576px) {
  .overlay h1 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 10px 20px;
  }
}

/* About Us Section - NO CHANGES HERE */
/* About Us Section - MODIFIED - Focus on Height */
/* About Us Section - MODIFIED */
/* About Us Section - MODIFIED */
/* About Us Section - MODIFIED */
.about-us {
  background: #fcf7f1;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  text-align: left;
  box-sizing: border-box; /* Ensures padding is included in the element's total width */
}

.about-content h2 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  color: #4b2e1e;
  margin-bottom: 15px;
}

.about-content h4 {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: #4b2e1e;
  margin-bottom: 10px;
}

.gold-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #d6ae7b, #b2895a);
  margin: 15px 0 25px 0;
  border-radius: 2px;
}

.about-content p {
  font-size: 1rem;
  color: #3a2a1e;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  text-align: center;
  box-sizing: border-box; /* Ensures padding is included in the element's total width */
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-container {
      flex-direction: column;
      align-items: stretch;
  }

  .about-content {
      text-align: left;
      padding: 15px;
  }

  .about-image {
      text-align: center;
      padding: 15px;
  }

  .about-image img {
      max-width: 100%;
  }

  .about-content h2 {
      font-size: 1.8rem;
  }

  .about-content h4 {
      font-size: 1.2rem;
  }

  .about-content p {
      font-size: 0.9rem;
  }

  .gold-divider {
      margin: 15px 0 25px 0;
  }

  .about-content,
  .about-image {
      padding-left: 10px;
      padding-right: 10px;
  }

   /* Shift content to the left */
  .about-us {
      position: relative; /* Add position relative */
      left: -13px; /* Shift 10px to the left */
  }
}

@media (min-width: 769px) {
  .about-container {
      flex-direction: row-reverse;
  }

  .about-content {
      text-align: left;
  }
}
/* Parallax Section - MODIFIED */
.parallax {
  height: 95vh; /* Almost full-screen */
  background-image: url('assets/about_us.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /* Make sure it covers the entire area */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensures a minimum height even on small screens */
}

.parallax-overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-title {
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.7);
  animation: fadeInDown 1.2s ease-out forwards;
  text-align: center;
}

/* Adjust Parallax Height for smaller screens - MODIFIED */
@media (max-width: 768px) {
  .parallax {
    height: 85vh; /* Adjusted height */
  }
}

@media (max-width: 576px) {
  .parallax {
    height: 75vh; /* Further adjustment */
    min-height: 650px; /* Keep a reasonable height */
  }
}

/* Carousel Section - MODIFIED */
.carousel-section {
  background: #000;
  padding: 40px 0;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 85vh;  /*Almost full screen */
  object-fit: cover; /* Crucial for correct scaling */
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  filter: brightness(90%);
  min-height: 600px;
}

.carousel-slide:hover img {
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.caption {
  position: absolute;
  bottom: 20px;
  left: 30px;
  font-size: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  border-left: 5px solid #fff;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.arrow {
  position: absolute;
  top: 50%;
  font-size: 2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 10;
  padding: 8px;
  transition: 0.3s;
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

/* Adjust Carousel Image height for smaller screens - MODIFIED */
@media (max-width: 768px) {
  .carousel-slide img {
    height: 75vh; /* Adjusted height for smaller screens */
  }
}

@media (max-width: 576px) {
  .carousel-slide img {
    height: 65vh; /* Further adjustment for smaller screens */
  }
}

/* Slideshow Section - NO CHANGES HERE */
/* Slideshow Section - MODIFIED */
.slideshow-section {
  position: relative;
  width: 100%;
  height: 90vh; /* Increased for a grand look.  Adjust as needed */
  overflow: hidden;
  margin-bottom: 20px; /* Add spacing below the section*/
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images fill the container */
  filter: brightness(0.85);
  transition: transform 0.8s ease;
}

.slide:hover img {
  filter: brightness(1.05) drop-shadow(0 0 15px #ffc107);
  transform: scale(1.02);
}

/* Modified Overlay Text (Desktop Styling) */
.overlay-text {
  position: absolute;
  bottom: 8%; /* Fine-tune placement */
  left: 5%;
  font-size: 1.5rem;  /* Adjusted font size */
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-left: 4px solid #ffd700;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  z-index: 3;   /* Make sure it's above the image */
}

.thumbnails {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid #d4af37; /* Golden Border for all */
  transition: 0.3s ease;
  opacity: 0.7;
}

.thumb:hover {
  border-color: #ffc107;
  opacity: 1;
  box-shadow: 0 0 10px #ffc107;
}

.thumb.active {
  border-color: #ffc107;
  opacity: 1;
  box-shadow: 0 0 10px #ffc107;
}

/* Responsive Adjustments - MODIFIED */
@media (max-width: 992px) {
  .overlay-text {
      font-size: 1.4rem;  /* Slightly smaller on tablets */
  }
}

@media (max-width: 768px) {
  .slideshow-section {
      height: 75vh; /* Adjusted height for smaller screens */
  }

  .overlay-text {
      font-size: 1.2rem;  /* Smaller on smaller tablets/large phones */
      bottom: 6%;  /* Adjust vertical position */
  }
  .thumb {
      width: 70px;
      height: 50px;
  }

}

@media (max-width: 576px) {
  .slideshow-section {
      height: 60vh; /* Further adjustment for smaller screens */
  }

  .overlay-text {
      font-size: 1rem;  /* Even smaller on phones */
      bottom: 4%;
      left: 3%;        /* Fine-tune position */
      padding: 6px 10px;
  }

  .thumb {
      width: 50px;
      height: 40px;
  }

  .thumbnails {
      bottom: 10px;
  }
}

@media (max-width: 400px) {
  .overlay-text {
    font-size: 0.85rem; /*Small phone adjustments*/
    bottom:3%;
  }

  .thumb {
    width: 40px;
    height: 30px;
  }
}
/* Modified Overlay Text - NO CHANGES HERE */
.overlay-text {
    position: absolute;
    /* Make sure it's above the image */
    z-index: 3;
    /* Fine-tune placement */
    bottom: 10%;
    left: 5%;
    /* Smaller, more readable font on smaller screens */
    font-size: 1.3rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-left: 4px solid #ffd700;
    font-weight: 600;
    /* Add a shadow for better readability */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    /* Ensure there's some space around the text */
    margin: 5px;
}

/* Adjust Slideshow height for smaller screens - NO CHANGES HERE */
@media (max-width: 768px) {
    .slideshow-section {
        height: 60vh; /* Adjusted height for smaller screens */
    }

    .overlay-text {
      display: none; /* DISAPPEAR ON MOBILE! */
  
    }
}

@media (max-width: 576px) {
    .slideshow-section {
        height: 50vh; /* Further adjustment for smaller screens */
    }

    .overlay-text {
        font-size: 0.9rem; /* Further adjusted font size */
        bottom: 5%;  /*Fine tune positioning*/
    }
}


/* Home Page Services Section */
.home-services {
  background: #ffcca2;
  padding: 100px 20px;
  text-align: center;
}

.section-heading {
  font-size: 3rem;
  color: #4b2e1e;
  font-family: 'Playfair Display', serif;
  margin-bottom: 60px;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.home-service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.home-service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 25px 20px;
}

.card-content h3 {
  font-size: 1.6rem;
  color: #8b5e3c;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 1rem;
  color: #5f4635;
  line-height: 1.6;
}

.royal-events-section {
  background: linear-gradient(to bottom, #fff6e9, #fdab85);
  padding: 100px 20px;
  text-align: center;
  border-top: 2px solid #ecd6b0;
  position: relative;
}

.royal-events-container {
  max-width: 1100px;
  margin: auto;
}

.royal-events-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #4b2e1e;
  margin-bottom: 20px;
}

.gold-divider-center {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #d6ae7b, #b2895a);
  margin: 0 auto 30px;
  border-radius: 5px;
}

.royal-events-subtext {
  font-size: 1.2rem;
  color: #5a3e36;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.royal-event-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  padding: 0 10px;
}

.event-item {
  background: #fffaf4;
  border: 1px solid #e8d2b0;
  border-left: 5px solid #d6ae7b;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  padding: 25px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: #6c4b32;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.event-item:hover {
  background: #fff2dd;
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}



/* Contact Us Section - NO CHANGES HERE */
.contact-us {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4c2b1c;
}

.section-header p {
  font-size: 1rem;
  margin-top: 8px;
  color: #6f5b4b;
}

.watermark {
  position: absolute;
  font-size: 60px;
  color: rgba(180, 150, 120, 0.15);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  pointer-events: none;
}

/* Responsive Watermark Font Size - NO CHANGES HERE */
@media (max-width: 768px) {
  .watermark {
    font-size: 40px; /* Adjusted font size */
  }
}

@media (max-width: 576px) {
  .watermark {
    font-size: 30px; /* Further adjustment */
  }
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 24px;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  background: white;
  color: #4c2b1c;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn.glow:hover {
  background: #d2b48c;
  color: white;
  box-shadow: 0 0 15px #d2b48c;
}

.tabs {
  text-align: center;
  margin: 30px 0 15px;
}

.tab-button {
  padding: 8px 16px;
  font-size: 14px;
  margin: 0 8px;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: bold;
}

.tab-button:hover,
.tab-button.active {
  border-bottom: 2px solid #b1885e;
  color: #b1885e;
}

.map-area {
  text-align: center;
  position: relative;
  overflow: hidden; /* ADDED: Prevents overflow */
}

.map-frame {
  display: none;
  width: 100%;
  max-width: 800px;
  height: 400px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: opacity 0.5s ease-in-out;
}

.map-frame.active {
  display: inline-block;
  animation: fadeIn 0.6s ease-in-out;
}

.map-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  color: rgba(200, 180, 160, 0.15);
  font-weight: bold;
  pointer-events: none;
  z-index: 2;
  user-select: none;
  white-space: nowrap; /* ADDED: Prevents text wrapping */
}

/* Responsive Map Watermark Font Size */
@media (max-width: 768px) {
  .map-watermark {
    font-size: 40px; /* Adjusted font size */
  }
}

@media (max-width: 576px) {
  .map-watermark {
    font-size: 30px; /* Further adjustment */
  }
}

/* Social Section - NO CHANGES HERE */
.social-section {
  background: linear-gradient(to right, #fff7ef, #fcebd4);
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #e8c6a0;
  position: relative;
}

.social-container {
  max-width: 800px;
  margin: auto;
}

.social-heading {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: #b88654;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.social-subtext {
  font-size: 1rem;
  color: #6e4e32;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 2rem;
}

.social-icons a {
  background: linear-gradient(to right, #b98d64, #dcbf9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.4s ease, filter 0.4s ease;
  position: relative;
}

.social-icons a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #d1a874;
  transition: width 0.4s ease, left 0.4s ease;
}

.social-icons a:hover::after {
  width: 80%;
  left: 10%;
}

.social-icons a:hover {
  transform: scale(1.3);
  filter: drop-shadow(0 0 10px #e1c8a3);
}

/* Footer Section - NO CHANGES HERE */
.site-footer {
  background: linear-gradient(135deg, #ff9456 0%, #FFBF86 100%);
  color: #e8d8c3;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1000px;
  margin: auto;
}

.footer-brand h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #080808;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #000000;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: #070400;
  margin: 0 12px;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #050505;
  transition: width 0.3s ease, left 0.3s ease;
}

.footer-links a:hover::after {
  width: 80%;
  left: 10%;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #0a0a0a;
  margin: 5px 0;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 150%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 157, 126, 0.1) 20%, transparent 70%);
  animation: floatPulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}

/* General Media Queries - NO CHANGES HERE */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }

  .social-icons {
    font-size: 1.8rem;
  }

  .parallax-title {
    font-size: 2.5rem;
  }

  .about-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .social-icons {
    font-size: 1.5rem;
    gap: 20px;
  }

  .parallax-title {
    font-size: 2rem;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.6rem;
  }

  .parallax-title {
    font-size: 1.6rem;
  }

  .social-heading {
    font-size: 1.6rem;
  }

  .social-subtext {
    font-size: 0.9rem;
  }

  .about-content h2 {
    font-size: 1.6rem;
  }
}

/* Animation Keyframes - NO CHANGES HERE */
@keyframes fadeInDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes floatPulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.2);
    opacity: 0.15;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive gallery caption - added section - NO CHANGES HERE*/

@media (max-width: 768px) {
  .caption {
    position: absolute;
    bottom: 5px; /* Reduced bottom spacing */
    left: 5px; /* Reduced left spacing */
    font-size: 1rem; /* Reduced font size for better fit */
    padding: 5px 10px; /* Reduced padding */
  }
}

@media (max-width: 576px) {
  .caption {
    position: absolute;
    bottom: 5px; /* Reduced bottom spacing */
    left: 5px; /* Reduced left spacing */
    font-size: 0.8rem;
  }
}

