/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    background-color: #0a0a0a;
    color: #f5f5f5;
    line-height: 1.6;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 2px solid #d4af37;
}

header h1 {
    font-size: 2.5rem;
    color: #d4af37;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

header p {
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
    font-size: 1.1rem;
}

/* Navigation */
nav {
    background-color: #111;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #333;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

nav a {
    color: #d4af37;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #333;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

nav a:hover,
nav a.active {
    background-color: #d4af37;
    color: #000;
    border-color: #d4af37;
}

/* Slideshow Container */
.slideshow-wrapper {
    background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #333;
}

.slideshow-title {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slideshow-container {
    width: 500px;
    height: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 4px solid #d4af37;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    background-color: #000;
}

.slide-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

#slide-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

#slide-image:hover {
    transform: scale(1.03);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #d4af37;
    padding: 1.5rem 1rem 1rem;
    font-size: 1rem;
    text-align: center;
}

.slideshow-hint {
    color: #888;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Fade Animation */
.fade {
    animation-name: fadeIn;
    animation-duration: 1s;
}

@keyframes fadeIn {
    from { opacity: 0.3; }
    to { opacity: 1; }
}

/* Main Content */
main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.page-sub {
    color: #888;
    text-align: center;
    margin-bottom: 2rem;
}

/* Album Grid */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    

 
    gap: 2rem;
    padding: 1rem;
}

.album-card {
    
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    ransition: all 0.3s ease;
}

.album-card:hover {
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.album-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background-color: #000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.album-card img:hover {
    transform: scale(1.02);
}

/* Footer */
footer {
    background-color: #111;
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid #333;
    color: #666;
}

/* Responsive Design */
@media (max-width: 400px) {
    header h1 {
        font-size: 1.8rem;
    }
    
    .slideshow-container {
        width: 95vw;
        height: 95vw;
        max-width: 300px;
        max-height: 300px;
    }
    
    nav {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    nav a {
        display: block;
    }
}
