/* Enhanced Footer Styles */
footer {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    background-color: transparent;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    box-shadow: 0 0 15px var(--neon-blue);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.social-link-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.social-label {
    font-family: 'Permanent Marker', cursive;
    color: var(--neon-blue);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-shadow: 0 0 5px var(--neon-blue);
}

.social-link {
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    background-color: rgba(45, 45, 45, 0.7);
    transition: all 0.4s ease;
    font-family: 'Indie Flower', cursive;
    font-size: 1.2rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-blue), transparent, var(--neon-blue));
    z-index: -1;
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link:hover {
    background-color: rgba(45, 45, 45, 0.9);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 176, 255, 0.4);
}

.social-link:hover::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

.copyright {
    font-size: 1.1rem;
    color: #999;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
    text-align: center;
    font-family: 'Caveat', cursive;
    letter-spacing: 1px;
}

.footer-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(10, 26, 42, 0.8), transparent);
    z-index: 1;
}

.footer-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(40px);
    z-index: 0;
}

.footer-accent:nth-child(1) {
    bottom: -100px;
    left: 15%;
    animation: pulse 8s infinite alternate;
}

.footer-accent:nth-child(2) {
    bottom: -50px;
    right: 20%;
    width: 150px;
    height: 150px;
    animation: pulse 6s infinite alternate-reverse;
}

@keyframes pulse {
    0% {
        opacity: 0.05;
        transform: scale(1);
    }
    100% {
        opacity: 0.15;
        transform: scale(1.2);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Enhanced Gallery Section */
.gallery {
    padding: 4rem 0;
    position: relative;
    background-color: transparent;
}

.gallery::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(10, 26, 42, 0.3));
    z-index: 1;
    pointer-events: none;
}

.gallery-grid {
    position: relative;
    z-index: 2;
}

.gallery-accent {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
    opacity: 0.08;
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}

.gallery-accent:nth-child(1) {
    bottom: 10%;
    left: -5%;
    animation: float 15s infinite alternate;
}

.gallery-accent:nth-child(2) {
    top: 20%;
    right: -5%;
    width: 250px;
    height: 250px;
    animation: float 12s infinite alternate-reverse;
}

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

/* Explore Button Styles */
.explore-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    background-color: rgba(45, 45, 45, 0.7);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 176, 255, 0.3);
}

.explore-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-orange), transparent, var(--neon-orange));
    z-index: -1;
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.explore-button:hover {
    background-color: rgba(45, 45, 45, 0.9);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
}

.explore-button:hover::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}
