/* Home Page Specific Styles */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  background: linear-gradient(135deg, 
    #050a30 0%, 
    #0a1a4a 25%, 
    #1a237e 50%, 
    #0d2b5c 75%, 
    #050a30 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../../images/background.jpg') center/cover no-repeat;
  filter: brightness(0.2) contrast(1.2);
  z-index: -1;
  opacity: 0.2;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--white);
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 100px;
}

.welcome-container {
  position: relative;
  margin-bottom: 60px;
  text-align: center;
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.peacock-feather {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  animation: float 3s ease-in-out infinite;
  position: relative;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
  transition: transform 0.3s ease;
}

.peacock-feather:hover {
  transform: scale(1.1) rotate(5deg);
}

.peacock-feather::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  animation: glow 3s ease-in-out infinite;
  z-index: -1;
}

.swagatam {
  font-family: 'Great Vibes', cursive;
  font-size: 5rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
               0 0 20px rgba(255, 255, 255, 0.5),
               0 0 30px rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
  transform: rotate(-3deg);
  animation: welcomeFloat 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.swagatam:hover {
  transform: rotate(-1deg) scale(1.05);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
               0 0 30px rgba(255, 255, 255, 0.7),
               0 0 40px rgba(255, 255, 255, 0.5);
}

.swagatam::before {
  content: '🌺';
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  animation: twinkle 2s ease-in-out infinite;
}

.swagatam::after {
  content: '🌺';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  animation: twinkle 2s ease-in-out infinite;
}

.temple-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
               0 0 20px rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  position: relative;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  width: 100%;
  text-align: center;
  font-weight: 600;
  letter-spacing: 3px;
  display: inline-block;
  transition: all 0.3s ease;
}

.temple-name:hover {
  letter-spacing: 4px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
               0 0 30px rgba(255, 255, 255, 0.7);
}

.temple-name::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.8) 50%, 
    transparent 100%);
}

.tagline {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 800px;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #e6885a;
  padding: 15px 25px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
              inset 0 0 20px rgba(255, 255, 255, 0.4);
}

.tagline:hover {
  transform: scale(1.02);
  background: #e6885a;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4),
              inset 0 0 30px rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.6);
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  animation: bounce 2s infinite;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
  z-index: 2;
}

.scroll-down:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%) scale(1.1);
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
  }
  50% {
    transform: translateY(-20px);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9));
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes welcomeFloat {
  0%, 100% {
    transform: rotate(-3deg) translateY(0);
  }
  50% {
    transform: rotate(-3deg) translateY(-10px);
  }
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.5;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
}

@keyframes rainbowFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .welcome-container {
    padding: 15px;
    margin: 0 10px;
  }
  
  .peacock-feather {
    width: 120px;
    height: 120px;
  }
  
  .swagatam {
    font-size: 4rem;
    letter-spacing: 1px;
  }
  
  .swagatam::before,
  .swagatam::after {
    font-size: 2rem;
  }
  
  .temple-name {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  
  .tagline {
    font-size: 1rem;
    padding: 8px 15px;
  }
  
  .scroll-down {
    font-size: 1.5rem;
    padding: 8px 15px;
  }
}

.nav-acharya-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.nav-links a:hover .nav-acharya-img {
  transform: scale(1.1);
  filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.to-saka {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #fff;
  margin-top: -0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.to-saka:hover {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
              0 0 30px rgba(255, 255, 255, 0.7);
} 