@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800&family=Outfit:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    -webkit-touch-callout: none;
}

/* Main Page */
.main-page {
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.logo-container {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeIn 0.8s ease;
}

.logo-container img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.1));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tagline {
    font-size: 1.5rem;
    color: white;
    font-weight: 400;
    text-align: center;
    max-width: 700px;
    line-height: 1.7;
    letter-spacing: 0.3px;
}

.tagline strong {
    font-weight: 600;
}

.inline-btn {
    display: inline-block;
    padding: 6px 18px;
    margin: 0 3px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: inherit;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    vertical-align: baseline;
}

.inline-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.main-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 10px 28px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Media Page */
.media-page {
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.media-title {
    font-size: 3rem;
    color: white;
    font-weight: 700;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    animation: fadeIn 0.6s ease;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    max-width: 900px;
}

.project-btn {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 
                0 4px 16px rgba(0, 0, 0, 0.25),
                0 2px 8px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(0, 0, 0, 0.08) inset,
                0 -1px 0 1px rgba(255, 255, 255, 0.15) inset;
}

/* Diagonal shimmer effect */
.project-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.project-btn:hover::after {
    transform: translateX(100%);
}

/* Top light reflection - more subtle */
.project-btn::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 50%;
    opacity: 0.5;
}

.project-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.4), 
                0 8px 24px rgba(0, 0, 0, 0.3),
                0 4px 12px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(0, 0, 0, 0.1) inset,
                0 -1px 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* Individual button colors - DIFFERENTIATED WITH CONSISTENT SHADOWS */

/* Button 1: Summer Tapes 2026 - Orange to Yellow (bright, warm) */
.project-btn:nth-child(1) {
    background: linear-gradient(135deg, #FF6F00 0%, #FDD835 100%);
    color: #1a1a1a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 
                0 4px 16px rgba(0, 0, 0, 0.25),
                0 2px 8px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(0, 0, 0, 0.08) inset,
                0 -1px 0 1px rgba(255, 255, 255, 0.15) inset;
}

.project-btn:nth-child(1):hover {
    background: linear-gradient(135deg, #FF8F00 0%, #FFEB3B 100%);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.4), 
                0 8px 24px rgba(0, 0, 0, 0.3),
                0 4px 12px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(0, 0, 0, 0.1) inset,
                0 -1px 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* Button 2: 05.07 2025 - Lime to Green (bright, fresh) */
.project-btn:nth-child(2) {
    background: linear-gradient(135deg, #CDDC39 0%, #4CAF50 100%);
    color: #1a1a1a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 
                0 4px 16px rgba(0, 0, 0, 0.25),
                0 2px 8px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(0, 0, 0, 0.08) inset,
                0 -1px 0 1px rgba(255, 255, 255, 0.15) inset;
}

.project-btn:nth-child(2):hover {
    background: linear-gradient(135deg, #D4E157 0%, #66BB6A 100%);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.4), 
                0 8px 24px rgba(0, 0, 0, 0.3),
                0 4px 12px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(0, 0, 0, 0.1) inset,
                0 -1px 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* Button 3: ADDICTION - Blue to Purple */
.project-btn:nth-child(3) {
    background: linear-gradient(135deg, #2196F3 0%, #9C27B0 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 
                0 4px 16px rgba(0, 0, 0, 0.25),
                0 2px 8px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(0, 0, 0, 0.08) inset,
                0 -1px 0 1px rgba(255, 255, 255, 0.15) inset;
}

.project-btn:nth-child(3):hover {
    background: linear-gradient(135deg, #42A5F5 0%, #AB47BC 100%);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.4), 
                0 8px 24px rgba(0, 0, 0, 0.3),
                0 4px 12px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(0, 0, 0, 0.1) inset,
                0 -1px 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* Button 4: TroubledYouth - Grey gradient */
.project-btn:nth-child(4) {
    background: linear-gradient(135deg, #9E9E9E 0%, #616161 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 
                0 4px 16px rgba(0, 0, 0, 0.25),
                0 2px 8px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(0, 0, 0, 0.08) inset,
                0 -1px 0 1px rgba(255, 255, 255, 0.15) inset;
}

.project-btn:nth-child(4):hover {
    background: linear-gradient(135deg, #BDBDBD 0%, #757575 100%);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.4), 
                0 8px 24px rgba(0, 0, 0, 0.3),
                0 4px 12px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(0, 0, 0, 0.1) inset,
                0 -1px 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* Button 5: Summer Tape 2023 - Deep Orange to Forest Green (darker, earthier) */
.project-btn:nth-child(5) {
    background: linear-gradient(135deg, #E65100 0%, #2E7D32 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 
                0 4px 16px rgba(0, 0, 0, 0.25),
                0 2px 8px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(0, 0, 0, 0.08) inset,
                0 -1px 0 1px rgba(255, 255, 255, 0.15) inset;
}

.project-btn:nth-child(5):hover {
    background: linear-gradient(135deg, #F57C00 0%, #388E3C 100%);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.4), 
                0 8px 24px rgba(0, 0, 0, 0.3),
                0 4px 12px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(0, 0, 0, 0.1) inset,
                0 -1px 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* Button 6: ŽÁDNÝ JISTOTY - Red to Black */
.project-btn:nth-child(6) {
    background: linear-gradient(135deg, #D32F2F 0%, #1a1a1a 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 
                0 4px 16px rgba(0, 0, 0, 0.25),
                0 2px 8px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(0, 0, 0, 0.08) inset,
                0 -1px 0 1px rgba(255, 255, 255, 0.15) inset;
}

.project-btn:nth-child(6):hover {
    background: linear-gradient(135deg, #E53935 0%, #2a2a2a 100%);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.4), 
                0 8px 24px rgba(0, 0, 0, 0.3),
                0 4px 12px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(0, 0, 0, 0.1) inset,
                0 -1px 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* Project Pages */
.project-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.project-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 1600px;
    width: 100%;
    gap: 120px;
    padding: 0 60px;
}

.project-title-vertical {
    font-size: 6rem;
    font-weight: 700;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: -3px;
    color: #000;
    flex-shrink: 0;
    line-height: 1;
}

.project-info {
    flex: 1;
    max-width: 500px;
}

.project-info h2 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.project-info p {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.5;
}

.project-info strong {
    font-weight: 700;
}

.project-info .btn {
    margin-top: 20px;
    display: inline-block;
    background: rgba(0, 0, 0, 0.7);
}

.project-info .btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Glass Navigation */
.glass-nav {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
}

.glass-btn {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Project Themes - EXACT from screenshots */
.project-summer-2026 {
    background: linear-gradient(135deg, #FF9800 0%, #8BC34A 100%);
}

.project-winter-2026 {
    background: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%);
}

.project-05-07-2025 {
    background: linear-gradient(135deg, #CDDC39 0%, #4CAF50 100%);
}

.project-addiction {
    background: linear-gradient(135deg, #2196F3 0%, #9C27B0 100%);
}

.project-troubled-youth {
    background: linear-gradient(135deg, #9E9E9E 0%, #616161 100%);
}

.project-summer-2023 {
    background: linear-gradient(135deg, #FF9800 0%, #4CAF50 100%);
}

.project-zadny-jistoty {
    background: linear-gradient(135deg, #D32F2F 0%, #1a1a1a 100%);
}

/* Video Page */
.video-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.video-title {
    font-size: 2.5rem;
    color: #000;
    font-weight: 700;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    margin-bottom: 35px;
    text-align: center;
}

.video-wrapper {
    width: 100%;
    max-width: 1100px;
    position: relative;
}

.video-glass-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .project-content {
        gap: 80px;
        padding: 0 40px;
    }
    
    .project-title-vertical {
        font-size: 5rem;
    }
}

@media (max-width: 992px) {
    .project-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    
    .project-title-vertical {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 3.5rem;
        text-align: center;
    }
    
    .project-info {
        text-align: center;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .logo-container img {
        max-width: 280px;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .main-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .media-title {
        font-size: 2.2rem;
    }
    
    .projects-grid {
        flex-direction: column;
        max-width: 280px;
    }
    
    .project-btn {
        width: 100%;
        text-align: center;
    }
    
    .project-title-vertical {
        font-size: 2.5rem;
    }
    
    .project-info h2 {
        font-size: 1.1rem;
    }
    
    .project-info p {
        font-size: 1.05rem;
    }
    
    .video-title {
        font-size: 1.8rem;
    }
    
    .video-glass-container {
        padding: 12px;
    }
    
    .glass-nav {
        top: 20px;
        left: 20px;
    }
    
    .glass-btn {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .project-page {
        padding: 30px 15px;
    }
    
    .project-content {
        gap: 25px;
    }
    
    .project-title-vertical {
        font-size: 2rem;
    }
    
    .media-title {
        font-size: 1.8rem;
    }
}
