/* Press Page Styles - Matching Events Page Aesthetic */

/* Body background for press page */
body.press-page {
    color: #fff;
    position: relative;
    min-height: 100vh;
    background: #1a202c;
    background: linear-gradient(180deg, #0f1419 0%, #1a202c 50%, #0f1419 100%);
}

/* Press Header - Similar to Events Header */
.press-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 0;
    background: transparent;
    transition: all 0.3s ease;
}

.press-header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
}

.press-header .header-logo {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: left;
}

.press-header .header-logo a {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.press-header .header-logo a:hover {
    opacity: 0.8;
}

.press-header .header-logo .initials {
    display: none !important;
}

/* Press Hero Section */
.press-hero {
    padding: 180px 0 60px;
    background: transparent;
    text-align: center;
    position: relative;
    z-index: 10;
}

.press-hero .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.press-hero .hero-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.press-hero .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Press Articles Section */
.press-articles {
    padding: 40px 0 80px;
    background: transparent;
    position: relative;
    z-index: 10;
}

.press-articles .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Press Category Sections */
.press-category {
    margin-bottom: 80px;
}

.category-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.category-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

/* Individual Press Items */
.press-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-left: none;
    border-right: none;
    padding: 2rem 3rem;
    margin: 0;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 3rem;
    align-items: center;
    transition: all 0.3s ease;
    color: #fff;
}

.press-item:first-child {
    border-top: none;
}

.press-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Press Date */
.press-date {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

/* Press Content */
.press-content {
    display: grid;
    grid-template-columns: 300px 1fr auto;
    gap: 2rem;
    align-items: center;
}

.press-publication {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.press-title {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    font-style: italic;
    margin: 0;
    line-height: 1.4;
}

.press-link {
    background: transparent;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.press-link:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Unavailable links styling */
.press-link-unavailable {
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
    font-style: italic;
}

.press-link-unavailable:hover {
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
    transform: none;
}

/* Animation for press items */
.press-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.press-item:nth-child(1) { animation-delay: 0.1s; }
.press-item:nth-child(2) { animation-delay: 0.15s; }
.press-item:nth-child(3) { animation-delay: 0.2s; }
.press-item:nth-child(4) { animation-delay: 0.25s; }
.press-item:nth-child(5) { animation-delay: 0.3s; }
.press-item:nth-child(6) { animation-delay: 0.35s; }
.press-item:nth-child(7) { animation-delay: 0.4s; }
.press-item:nth-child(8) { animation-delay: 0.45s; }
.press-item:nth-child(9) { animation-delay: 0.5s; }
.press-item:nth-child(10) { animation-delay: 0.55s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Filter Buttons */
.press-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .press-content {
        grid-template-columns: 1fr auto;
        gap: 1.5rem;
    }
    
    .press-publication {
        margin-bottom: 0.3rem;
    }
}

@media (max-width: 768px) {
    .press-header .header-logo a {
        font-size: 2rem;
    }
    
    .press-hero {
        padding: 120px 0 40px;
    }
    
    .press-hero .hero-title {
        font-size: 2rem;
        letter-spacing: 0.2em;
    }
    
    .press-hero .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .press-articles .container,
    .press-hero .container {
        padding: 0 20px;
    }
    
    .press-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .press-date {
        text-align: left;
        margin-bottom: 0.5rem;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.8rem;
    }
    
    .press-content {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .press-publication {
        margin-bottom: 0.3rem;
    }
    
    .press-title {
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }
    
    .press-link {
        width: auto;
        display: inline-block;
    }
    
    .category-title {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }
    
    .press-filters {
        padding: 0 1rem;
    }
    
    .filter-btn {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
}

/* Footer specific to press page */
body.press-page .footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 20;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading state */
.press-loading {
    text-align: center;
    padding: 4rem 0;
    color: rgba(255, 255, 255, 0.6);
}

.press-loading::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% {
        content: '.';
    }
    40% {
        content: '..';
    }
    60%, 100% {
        content: '...';
    }
}