.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neon-purple);
    text-shadow: 0 0 20px rgba(199, 125, 255, 0.6), 0 0 40px rgba(157, 78, 221, 0.4);
    font-weight: bold;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold-color);
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.gallery-section {
    padding: 4rem 0;
    padding-top: 6rem;
    background: var(--bg-section);
    border-top: 2px solid var(--neon-purple);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gallery-card {
    background: var(--bg-section);
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(199, 125, 255, 0.2);
    border: 2px solid var(--neon-purple);
    transition: all 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(199, 125, 255, 0.4);
    border-color: var(--neon-pink);
}

.gallery-card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(199, 125, 255, 0.5);
    padding: 1.5rem 2rem 0 2rem;
}

.gallery-card p {
    line-height: 1.8;
    color: var(--text-light);
    padding: 0 2rem 2rem 2rem;
}

.gallery-description {
    padding: 4rem 0;
    background: var(--bg-dark);
    border-top: 2px solid var(--neon-purple);
}

.gallery-description h2 {
    color: var(--neon-purple);
    text-shadow: 0 0 15px rgba(199, 125, 255, 0.5);
}

.gallery-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-in 0.9s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 300px;
    }
}

