* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222; /* Dark Text */
  background-color: #000; /* Black background */
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 65px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.08);
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #fff; /* White text */
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.cta-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #b8860b; /* Gold */
  color: white;
  border-radius: 25px;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #d4af37; /* Lighter Gold */
  transform: scale(1.05);
}

.nav-links a:hover {
  color: #b8860b; /* Gold */
  transform: scale(1.1);
}

/* Sections */
.section {
  padding: 110px 10% 80px;
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

/* -------------------- HOME SECTION -------------------- */

.home-section {
  position: relative;
  height: calc(100vh - 100px); /* decreased slightly to balance space */
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 100px; /* increased to move section further below navbar */
}

.home-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-image: url('Images/Img27_1.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(60%);
  z-index: -1;
}

.home-content {
  text-align: center;
  max-width: 800px;
  padding: 20px;
  z-index: 1;
  animation: fadeInUp 1.5s ease-in-out;
}

.home-content h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.home-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

.home-btn {
  padding: 12px 25px;
  background-color: #b8860b; /* Gold */
  color: #000; /* Black text */
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.home-btn:hover {
  background-color: #d4af37; /* Lighter Gold */
  color: #fff;
  transform: translateY(-3px);
}

/* -------------------- ABOUT SECTION -------------------- */

.about-section {
  padding: 100px 10%;
  background: linear-gradient(135deg, #222 0%, #333 100%); /* Dark Background */
  color: #fff; /* White Text */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease-in-out;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #b8860b; /* Gold */
  border-left: 5px solid #b8860b; /* Gold Border */
  padding-left: 15px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ddd; /* Light Gray */
}

.about-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* -------------------- VIDEOS SECTION -------------------- */

.videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 30px;
  justify-items: center;
}

.video-item {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.video-item:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 25px #b8860b;
}

#videos-header{
    color: #b8860b;
}

/* -------------------- GALLERY SECTION -------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.gallery img {
  width: 100%;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 25px #b8860b;
}

#gallery-header{
    color: #b8860b;
}


/* -------------------- FOOTER -------------------- */

footer {
  text-align: center;
  padding: 25px;
  background: #222; /* Dark background */
  color: #ddd; /* Light Gray Text */
}

/* -------------------- ANIMATIONS -------------------- */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -------------------- RESPONSIVE -------------------- */

@media (max-width: 768px) {
  .navbar {
    padding: 10px 25px;
  }

  .nav-links {
    gap: 15px;
  }

  .home-content h1 {
    font-size: 2.2em;
  }

  .home-content p {
    font-size: 1em;
  }

  .home-btn {
    padding: 10px 20px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    border-left: none;
    border-top: 5px solid #b8860b; /* Gold Border */
    padding-left: 0;
    padding-top: 10px;
  }
}


/* -------------------- CONTACT SECTION -------------------- */

.contact-section a {
  color: #ffffff; /* Gold */
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}


.contact-section {
  background: linear-gradient(135deg, #222, #333); /* Dark Gradient */
  padding: 100px 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 1s ease-in-out;
}

.contact-container {
  background: rgba(0, 0, 0, 0.85); /* Dark background */
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  padding: 50px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(184, 134, 11, 0.25); /* Gold Hover */
}

.contact-container h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: #ffb700; /* Gold */
  position: relative;
}

.contact-container h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #b8860b; /* Gold */
  margin: 15px auto 0;
  border-radius: 10px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

/* Force the contact-item text to be white by default */
.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 1.1rem;
  color: #ffffff !important; /* Ensure text is white by default */
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Force the icon color to be white by default */
.contact-item i {
  font-size: 1.6rem;
  color: #ffffff !important; /* Ensure icon is white by default */
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect: text and icon change to gold */
.contact-item:hover {
  color: #b8860b !important; /* Gold color on hover */
  transform: scale(1.05);
}

/* Hover effect for icon: icon color changes to gold */
.contact-item:hover i {
  color: #b8860b !important; /* Gold icon color on hover */
  transform: rotate(10deg) scale(1.1);
}



/* Button style (for future contact form or link) */
.contact-btn {
  margin-top: 0px;
  background: linear-gradient(135deg, #b8860b, #d4af37); /* Gold Gradient */
  color: #ffffff !important; /* always white text */
  padding: 14px 35px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
  display: inline-block;
}

.contact-btn:hover {
  background: linear-gradient(135deg, #d4af37, #b8860b); /* Lighter Gold */
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    padding: 35px 25px;
  }

  .contact-container h2 {
    font-size: 2rem;
  }

  .contact-item {
    font-size: 1rem;
  }
}

.social-icons {
  margin-top: 0px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #b8860b; /* Gold */
  transform: scale(1.2);
}
