/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(5, 8, 17, 0.5) 0%, rgba(10, 14, 39, 0.5) 100%);
}

.gallery-section h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    border: 2px solid rgba(0, 212, 255, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.3);
    border-color: var(--neon-blue);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-card {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(5, 8, 17, 0.8) 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.1);
}

.gallery-card:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.gallery-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.gallery-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item:nth-child(1) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.2s;
}

.gallery-card:nth-child(3) {
    animation-delay: 0.3s;
}

.gallery-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Description Section */
.description-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.6) 0%, rgba(5, 8, 17, 0.6) 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.description-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
}

.description-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Artifacts Section */
.artifacts-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.6) 0%, rgba(5, 8, 17, 0.6) 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.artifacts-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.artifacts-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.artifact-item {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(5, 8, 17, 0.8) 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.1);
}

.artifact-item:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.artifact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.artifact-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Temples Section */
.temples-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(5, 8, 17, 0.5) 0%, rgba(10, 14, 39, 0.5) 100%);
}

.temples-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.temples-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.temple-item {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(5, 8, 17, 0.8) 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.1);
}

.temple-item:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.temple-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.temple-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.temple-item .btn {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-section h1 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .artifacts-content,
    .temples-content {
        grid-template-columns: 1fr;
    }
}

