
/* Immersive Gallery Styles */

/* Hero Section */
.hero-section-immersive {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-section-immersive .background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-section-immersive .hero-content {
    position: relative;
    z-index: 1;
}

.hero-section-immersive .hero-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 2px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-section-immersive .hero-tagline {
    font-size: 1.8rem;
    margin-top: 1rem;
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
}

/* Gallery Section */
.gallery-section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background-color: #0a0a0a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: #fff;
}

.gallery-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--glow-purple-rgb);
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    transition: background 0.3s ease;
}

.gallery-card:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.gallery-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-card-content {
    transform: translateY(0);
}

.gallery-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-card-description {
    font-size: 1rem;
    opacity: 0.8;
}
