/* Common Styles for Kevin Parissien & The Honeymoon Suites Fan Site */

/* Base Styles */
body {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    color: white;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

/* Glamrock Text Animation */
.glam-text {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Navigation Buttons */
.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(233, 69, 96, 0.9);
    border: 2px solid #e94560;
    border-radius: 50px;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: rgba(233, 69, 96, 1);
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.nav-button-right {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    border-radius: 50px;
    padding: 15px 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: bold;
}

.nav-button-right:hover {
    transform: scale(1.1);
    text-decoration: none;
}

/* Card Styles */
.retro-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border: 2px solid #e94560;
    box-shadow: 0 8px 32px rgba(233, 69, 96, 0.3);
}

.album-showcase, .gallery-section, .test-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-bottom: 3rem;
    overflow: hidden;
}

/* Photo Cards */
.photo-card {
    background: rgba(233, 69, 96, 0.1);
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.photo-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #e94560;
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.3);
}

/* Vintage Styling */
.vintage-frame {
    border: 8px solid #d4af37;
    border-radius: 10px;
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.3);
}

.golden-frame {
    border: 8px solid #d4af37;
    border-radius: 15px;
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.3);
}

.polaroid {
    background: white;
    padding: 15px 15px 50px 15px;
    transform: rotate(-2deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.polaroid:nth-child(even) {
    transform: rotate(2deg);
}

/* Floating Elements */
.floating-icon {
    position: absolute;
    animation: float 3s ease-in-out infinite;
    opacity: 0.7;
}

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

/* Badges */
.hit-badge {
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #1a1a2e;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Neon Effects */
.neon-glow {
    text-shadow: 0 0 10px #e94560, 0 0 20px #e94560, 0 0 30px #e94560;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .back-button, .nav-button-right {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .floating-icon {
        display: none;
    }
    
    .photo-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
}