@import url('https://fonts.googleapis.com/css2?family=Cinzel&family=Playfair+Display&display=swap');

#page-loader {
  position: fixed;
  z-index: 9999;
  background: linear-gradient(135deg, #0e0e0e, #1b1b1b);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: 'Cinzel', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
}

.ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 8px solid transparent;
  border-top: 8px solid gold;
  border-left: 8px solid #d4af37;
  animation: spin 1.8s linear infinite;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.2);
  margin-bottom: 30px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.name {
  font-size: 2.8rem;
  color: gold;
  letter-spacing: 2px;
  animation: shimmer 2s ease-in-out infinite alternate;
  text-align: center;
}

@keyframes shimmer {
  from { text-shadow: 0 0 10px #ffd700, 0 0 20px gold; }
  to   { text-shadow: 0 0 20px #fff, 0 0 40px gold, 0 0 50px #ffcc00; }
}

.message {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #cccccc;
  margin-top: 10px;
  animation: fadeIn 2s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.bokeh {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, rgba(255,215,0,0) 80%);
  animation: floatUp 10s linear infinite;
  opacity: 0.4;
}

@keyframes floatUp {
  from { transform: translateY(100vh); }
  to { transform: translateY(-10vh); }
}

.circle:nth-child(1) { left: 10%; width: 80px; height: 80px; animation-delay: 0s; }
.circle:nth-child(2) { left: 25%; width: 40px; height: 40px; animation-delay: 2s; }
.circle:nth-child(3) { left: 60%; width: 60px; height: 60px; animation-delay: 4s; }
.circle:nth-child(4) { left: 80%; width: 30px; height: 30px; animation-delay: 1s; }
.circle:nth-child(5) { left: 50%; width: 50px; height: 50px; animation-delay: 3s; }

@media screen and (max-width: 600px) {
  .ring {
    width: 90px;
    height: 90px;
  }

  .name {
    font-size: 2rem;
  }

  .message {
    font-size: 1rem;
  }
}


/* Base Styling */
body, html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  color: white;
}

body::selection {
  background: #000;
  color: #ffffff;
}

/* Navbar */
.navbar {
  background-color: transparent;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  transition: transform 0.4s ease-in-out, background-color 0.3s ease-in-out;
}

.navbar.scrolled {
  background-color: black;
  box-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

/* Brand name */
.navbar .brand-name {
  font-size: 2.2rem;
  color: #e5b415;
  letter-spacing: 1.3px;
  transition: color 0.3s ease;
  white-space: nowrap;
  font-weight: 500;
  font-family: 'Italianno', cursive;
}

.navbar.scrolled .brand-name {
  color: #d4af37;
}

/* Logo */
.logo {
  height: 50px;
  margin-top: -10px;
  width: auto;
  transition: height 0.3s ease;
}

/* NavLinks - Desktop */
/* Hide Navbar on scroll down */
.navbar.hide-navbar {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link {
  color: white;
  margin: 0 4px;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  position: relative;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, box-shadow 0.3s ease;
  font-family: sans-serif;
}

.navbar-nav .nav-link:hover {
  color: white;
  box-shadow: 0 0 12px 3px rgba(255, 255, 255, 0.7);
  background-color: rgba(255,255,255,0.05);
  text-decoration: none;
}


.navbar-nav .nav-link:hover::after {
  left: 0;
  width: 100%;
}

/* Active navlink style */
.navbar-nav .nav-link.active {
  color: #d4af37;
  box-shadow: 0 0 10px 3px rgba(212, 175, 55, 0.8);
  background-color: rgba(212, 175, 55, 0.15);
}

/* Active hover stays glowing */
.navbar-nav .nav-link.active:hover {
  box-shadow: 0 0 15px 5px rgba(212, 175, 55, 1);
  background-color: rgba(212, 175, 55, 0.3);
}

/* Mobile Nav Styling */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 50vw;
  max-width: 320px;
  height: 100vh;
  background-color: black;
  padding: 3rem 2rem 2rem 2rem;
  transition: left 0.4s ease-in-out;
  z-index: 10500;
  overflow-y: auto;
}

.mobile-nav.open {
  left: 0;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 2.4rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}

/* Mobile Nav Links */
.mobile-nav .nav-link {
  font-size: 20px;
  color: #d4af37;
  margin-bottom: 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  transition: color 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
}

.mobile-nav .nav-link:hover {
  color: white;
  box-shadow: 0 0 12px 3px rgba(255, 255, 255, 0.7);
  background-color: rgba(255,255,255,0.05);
}

/* Active link in mobile nav */
.mobile-nav .nav-link.active {
  color: white;
  box-shadow: 0 0 10px 3px rgba(212, 175, 55, 0.8);
  background-color: rgba(212, 175, 55, 0.15);
}


/* Hero Section */
.hero-section {
  position: relative;
  color: white;
  background-image: url('Images/Dummy-img-1.webp');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 70vh;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 0;
}
.hero-section .hero-content {
  text-align: center;
}

.hero-section .display-4 {
  font-size: 3.5rem;
  font-family: 'Cinzel', serif;
}

.hero-section .lead {
  font-size: 1.3rem;
  font-family: 'Cinzel', cursive;
}


/* Footer Styles */
.footer-section {
  background: linear-gradient(to right, #1c1c1c, #333333);
  color: white;
  padding: 30px 0;
}

.footer-title {
  color: #d4af37;
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-align: center;
}

.footer-about p,
.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  color: white;
  font-size: 1rem;
}

.footer-links ul li a:hover {
  color: #d4af37;
}

.footer-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 10px;
}

.footer-contact div {
  font-size: 0.9rem;
  margin-bottom: 12px;
  text-align: center;
}

.social-media-links a {
  text-decoration: none;
  color: white;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: arial;
}

.social-media-links a:hover {
  color: #d4af37;
}

.social-img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.footer-line {
  border: 1px solid #555;
  width: 80%;
  margin: 20px auto;
  background-color: #d4af37;
}

.mb-4 {
  margin-bottom: 20px !important;
}

.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 0rem !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .logo {
    height: 50px;
  }
  .navbar-toggler {
    font-size: 1.8rem;
    color: #d4af37;
  }
  .navbar-nav .nav-link {
    font-size: 1rem;
  }
  .hero-content .display-4 {
    font-size: 3.5rem;
  }
  .hero-content p {
    width: 80vw;
  }
}

@media (max-width: 540px) {
  .logo {
    height: 40px;
  }
  .navbar .brand-name {
    font-size: 28px;
  }
  .logo {
    margin-top: -10px;
    margin-left: -30px;
  }
  .navbar-toggler {
    font-size: 1.6rem;
    margin-right: -20px;
  }
  .hero-content .display-4 {
    font-size: 2.3rem;
  }
  .hero-content p {
    font-size: 0.9rem;
    width: 80vw;
  }
  .g-5, .gx-5 {
    --bs-gutter-x: 0rem;
}
}
/* WhatsApp Floating Button */
.whatsapp-float-btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 999;
  text-decoration: none;
  color: white;
  font-size: 16px;
  width: 55px; /* Increase width to fit icon perfectly */
  height: 55px; /* Match height to make the button round */
  animation: glow 1.5s infinite; /* Continuous glowing effect */
}

/* WhatsApp Icon */
.whatsapp-float-btn img {
  width: 65px;  /* Size of the icon */
  height: 65px; /* Ensure the icon fits perfectly inside the button */
}

/* Glowing Animation */
@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.744);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.765); /* Glowing effect */
  }
  100% {
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
  }
}