/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Black+Ops+One&family=Orbitron:wght@400;700;900&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Anton', 'Black Ops One', 'Orbitron', sans-serif;
    background: #1a1a1a;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    font-weight: 900;
    letter-spacing: 1px;
}

/* Collage Background */
.collage-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.collage-image {
    position: absolute;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(0.3) sepia(0.2);
}

.collage-image:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    background: rgba(26, 26, 26, 0.3);
}

/* Header */
.header {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid #8b4513;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('20250903_1833_New York Graffiti_simple_compose_01k48ys0f3ex594tnbft7cq2ta.png');
    background-size: 200px 200px;
    background-repeat: repeat;
    opacity: 0.3;
    z-index: -1;
    animation: headerScroll 20s linear infinite;
}

@keyframes headerScroll {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}

.header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #d2691e;
    font-family: 'Black Ops One', 'Anton', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    transform: skew(-10deg);
    text-shadow: 
        0 0 20px rgba(210, 105, 30, 0.8),
        3px 3px 6px rgba(0, 0, 0, 0.9),
        -3px -3px 6px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(210, 105, 30, 0.6);
    position: relative;
    z-index: 1;
}

.social-links {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.x-link {
    display: inline-block;
    background: #8b4513;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid #d2691e;
}

.x-link:hover {
    background: #d2691e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.4);
}

/* Slideshow */
.slideshow-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.slideshow-wrapper {
    position: relative;
    height: 70vh;
    border: 2px solid #8b4513;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 30px rgba(139, 69, 19, 0.3);
    backdrop-filter: blur(5px);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slide img:hover {
    transform: scale(1.05);
}

.slide-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #8b4513;
    backdrop-filter: blur(5px);
}

.photo-number {
    display: block;
    font-size: 1.2rem;
    color: #d2691e;
    margin-bottom: 5px;
    font-weight: bold;
}

.slide-title {
    font-size: 1rem;
    color: white;
}

/* Navigation */
.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.nav-btn {
    background: #8b4513;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #d2691e;
}

.nav-btn:hover {
    background: #d2691e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.4);
}

.slide-counter {
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid #8b4513;
    font-size: 1.1rem;
    color: #d2691e;
    font-weight: bold;
    backdrop-filter: blur(5px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: rgba(26, 26, 26, 0.95);
    border-radius: 15px;
    border: 2px solid #8b4513;
    overflow: hidden;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #d2691e;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close:hover {
    color: white;
    background: #d2691e;
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.modal-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #8b4513;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.modal-btn {
    background: rgba(139, 69, 19, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-btn:hover {
    background: #d2691e;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .slideshow-wrapper {
        height: 50vh;
    }
    
    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .modal-nav {
        padding: 0 10px;
    }
    
    .modal-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
