/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #d4af37;
  --secondary-color: #000000;
  --tertiary-color: #ffffff;
  --text-dark: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --border-radius: 8px;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--tertiary-color);
  /* padding-top: 80px; Increased from 70px for better spacing */
}

/* Enhanced Bootstrap navbar integration */
.custom-navbar {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%) !important;
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-fast);
  padding: 0.5rem 0;
}

.custom-navbar.scrolled {
  background: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(10px);
}

/* Logo Styles */
.navbar-brand {
  text-decoration: none !important;
  color: var(--tertiary-color) !important;
  transition: all var(--transition-fast);
}

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

/* Added brand image styling */
.brand-logo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-light);
}

.brand-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Hide text logo when image is present */
.logo-container:has(.brand-logo) .logo-icon {
  display: none;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #f4d03f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  color: var(--secondary-color);
  box-shadow: var(--shadow-light);
  transition: all var(--transition-fast);
}

.brand-text {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #f4d03f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-brand:hover .logo-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Custom Bootstrap toggler */
.custom-toggler {
  border: none !important;
  padding: 4px 8px;
  background: transparent !important;
  box-shadow: none !important;
}

.custom-toggler:focus {
  box-shadow: none !important;
}

.custom-toggler .navbar-toggler-icon {
  display: none;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: all var(--transition-fast);
  border-radius: 2px;
  display: block;
  margin: 4px 0;
}

.custom-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.custom-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.custom-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Enhanced Bootstrap nav links */
.navbar-nav .nav-link {
  color: var(--tertiary-color) !important;
  font-weight: 500;
  padding: 10px 15px !important;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: left var(--transition-medium);
}

.navbar-nav .nav-link:hover::before {
  left: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  background: rgba(212, 175, 55, 0.1) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link i {
  font-size: 16px;
}

/* Enhanced Bootstrap dropdown */
.custom-dropdown {
  background: var(--secondary-color) !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  border-radius: var(--border-radius) !important;
  box-shadow: var(--shadow-heavy) !important;
  margin-top: 10px !important;
}

.custom-dropdown .dropdown-item {
  color: var(--tertiary-color) !important;
  padding: 12px 20px !important;
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-dropdown .dropdown-item:hover,
.custom-dropdown .dropdown-item.active {
  background: rgba(212, 175, 55, 0.1) !important;
  color: var(--primary-color) !important;
  border-left-color: var(--primary-color);
  padding-left: 25px !important;
}

.dropdown-divider {
  border-color: rgba(212, 175, 55, 0.2) !important;
  margin: 10px 0 !important;
}

/* CTA Button */
.cta-button {
  background: linear-gradient(135deg, var(--primary-color) 0%, #f4d03f 100%) !important;
  color: var(--secondary-color) !important;
  text-decoration: none !important;
  padding: 12px 24px !important;
  border-radius: 25px !important;
  font-weight: bold;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left var(--transition-medium);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  color: var(--secondary-color) !important;
}

/* Footer Styles */
.custom-footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
  color: var(--tertiary-color);
  /* margin-top: 50px; */
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-section {
  animation: fadeInUp 0.6s ease forwards;
}

.footer-section:nth-child(1) {
  animation-delay: 0.1s;
}
.footer-section:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-section:nth-child(3) {
  animation-delay: 0.3s;
}
.footer-section:nth-child(4) {
  animation-delay: 0.4s;
}

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #f4d03f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  color: var(--secondary-color);
}

.footer-brand-text {
  font-size: 18px;
  font-weight: bold;
  background: linear-gradient(135deg, var(--primary-color) 0%, #f4d03f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: #cccccc;
  line-height: 1.6;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tertiary-color);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Footer Titles and Links */
.footer-title {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
  padding: 5px 0;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.footer-links a i {
  font-size: 12px;
  transition: transform var(--transition-fast);
}

.footer-links a:hover i {
  transform: translateX(5px);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 2px;
  min-width: 20px;
}

.contact-details {
  color: #cccccc;
  line-height: 1.5;
}

.contact-details strong {
  color: var(--tertiary-color);
  display: block;
  margin-bottom: 5px;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-details a:hover {
  color: #f4d03f;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 25px 0;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
  justify-content: end;
}

.footer-bottom-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

.copyright p {
  margin: 0;
  color: #cccccc;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #f4d03f 100%);
  color: var(--secondary-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-medium);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-fast);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced responsive design for Bootstrap */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--secondary-color);
    margin-top: 15px;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
  }

  .navbar-nav {
    gap: 0;
  }

  .navbar-nav .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 15px 20px !important;
    border-radius: 0 !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }

  .custom-dropdown {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    background: rgba(212, 175, 55, 0.05) !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 767.98px) {
  .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
  }
}

@media (max-width: 575.98px) {
  .brand-text {
    font-size: 16px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* Added seasonal effects CSS - commented out by default */

/* ===== REALISTIC SEASONAL EFFECTS (Uncomment to enable) ===== */

/* RAIN EFFECT - Uncomment to enable */

.seasonal-effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
}

.rain-effect {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 100%);
}

.rain-drop {
  position: absolute;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(173, 216, 230, 0.8), rgba(135, 206, 235, 0.6));
  border-radius: 0 0 50% 50%;
  animation: rainFall linear infinite;
  opacity: 0.8;
}

.rain-drop::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: -2px;
  width: 6px;
  height: 3px;
  background: radial-gradient(ellipse, rgba(173, 216, 230, 0.4), transparent);
  border-radius: 50%;
  animation: splash 0.3s ease-out infinite;
}

@keyframes rainFall {
  0% {
    transform: translateY(-100vh) translateX(0px);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) translateX(20px);
    opacity: 0;
  }
}

@keyframes splash {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.rain-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(173, 216, 230, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(135, 206, 235, 0.1) 0%, transparent 50%);
  animation: rainOverlay 8s ease-in-out infinite;
}

@keyframes rainOverlay {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}


/* WINTER EFFECT - Uncomment to enable */
/*
.winter-effect {
  background: linear-gradient(180deg, rgba(240,248,255,0.1) 0%, transparent 100%);
}

.snowflake {
  position: absolute;
  color: rgba(255, 255, 255, 0.9);
  animation: snowFall linear infinite;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  user-select: none;
}

.snowflake:nth-child(odd) {
  animation-duration: 12s;
  font-size: 0.8em;
}

.snowflake:nth-child(even) {
  animation-duration: 18s;
  font-size: 1.2em;
}

.snowflake:nth-child(3n) {
  animation-duration: 15s;
  font-size: 1em;
}

@keyframes snowFall {
  0% {
    transform: translateY(-100vh) translateX(0px) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(-75vh) translateX(20px) rotate(90deg);
  }
  50% {
    transform: translateY(-50vh) translateX(-10px) rotate(180deg);
  }
  75% {
    transform: translateY(-25vh) translateX(30px) rotate(270deg);
  }
  100% {
    transform: translateY(100vh) translateX(0px) rotate(360deg);
    opacity: 0;
  }
}

.frost-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(240, 248, 255, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: frostShimmer 10s ease-in-out infinite;
}

@keyframes frostShimmer {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.5; }
}
*/

/* SUMMER EFFECT - Uncomment to enable */
/*
.summer-effect {
  background: linear-gradient(180deg, rgba(255,223,0,0.05) 0%, transparent 100%);
}

.sun-ray {
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, 
    rgba(255, 223, 0, 0.6) 0%, 
    rgba(255, 165, 0, 0.4) 50%, 
    transparent 100%);
  animation: sunRays linear infinite;
  transform-origin: top center;
  box-shadow: 0 0 5px rgba(255, 223, 0, 0.3);
}

@keyframes sunRays {
  0% {
    opacity: 0.3;
    transform: rotate(-5deg) scaleY(0.8);
  }
  25% {
    opacity: 0.8;
    transform: rotate(2deg) scaleY(1.2);
  }
  50% {
    opacity: 0.6;
    transform: rotate(5deg) scaleY(1);
  }
  75% {
    opacity: 0.9;
    transform: rotate(-2deg) scaleY(1.1);
  }
  100% {
    opacity: 0.3;
    transform: rotate(-5deg) scaleY(0.8);
  }
}

.floating-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: radial-gradient(circle, rgba(255, 223, 0, 0.8), rgba(255, 165, 0, 0.4));
  border-radius: 50%;
  animation: floatParticle linear infinite;
  box-shadow: 0 0 8px rgba(255, 223, 0, 0.5);
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) translateX(0px) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) translateX(10px) scale(1);
  }
  50% {
    transform: translateY(50vh) translateX(-20px) scale(1.2);
  }
  90% {
    opacity: 1;
    transform: translateY(10vh) translateX(30px) scale(0.8);
  }
  100% {
    transform: translateY(-10vh) translateX(0px) scale(0);
    opacity: 0;
  }
}

.heat-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 40%, rgba(255, 223, 0, 0.1) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(255, 165, 0, 0.1) 50%, transparent 60%);
  animation: heatWave 6s ease-in-out infinite;
}

@keyframes heatWave {
  0%, 100% {
    transform: translateX(-100px);
    opacity: 0.3;
  }
  50% {
    transform: translateX(100px);
    opacity: 0.7;
  }
}
*/

/* ===== END REALISTIC SEASONAL EFFECTS ===== */
