/* Press Page Styles */

/* Keyframe animations */
@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-press {
    0% {
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.1);
    }
    50% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    }
    100% {
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Animation classes */
.animate-fade-in {
    opacity: 0;
    animation: fade-in 0.8s ease-out forwards;
}

.animate-fade-in:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-in:nth-child(3) { animation-delay: 0.4s; }
.animate-fade-in:nth-child(4) { animation-delay: 0.6s; }

/* Hero Section */
.press-hero {
    background: gold;
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.press-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.3;
    animation: pulse-press 4s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    margin-top: 40px;
    font-family: 'Lora', serif;
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.4;
}

.press-tagline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 30px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.tagline-text {
    font-size: 1.125rem;
    font-weight: 500;
    font-style: italic;
}

/* Main Content */
.press-main {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f0fdfa, #ffffff);
}

.press-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Press Sections */
.press-section {
    margin-bottom: 5rem;
}

.section-title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, gold, rgb(155, 132, 0));
    border-radius: 2px;
}

.section-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569;
    text-align: center;
    margin-bottom: 2rem;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.news-item.featured-article {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f0fdfa, #ecfdf5);
    border-left: 4px solid gold;
}

.news-item.featured-article::before {
    content: 'FEATURED';
    position: absolute;
    top: 15px;
    right: 15px;
    background: gold;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.news-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-source {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.source-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-right: 12px;
    object-fit: cover;
}

.source-name {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

.news-title {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.news-link {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: gold;
}

.news-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.news-category {
    background:gold;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-date {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Media Kit Section */
.media-kit {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 4rem 0;
    border-radius: 20px;
}

.media-kit-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.media-kit-description {
    margin-bottom: 3rem;
}

.media-kit-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
    transition: all 0.3s ease;
}

.media-kit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.kit-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, gold, gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.kit-info {
    flex-grow: 1;
}

.kit-title {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.kit-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.kit-contents {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.content-tag {
    background: #f0fdfa;
    color: gold;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #a7f3d0;
}

.kit-action {
    flex-shrink: 0;
}

.media-kit-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, gold, gold);
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.media-kit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(185, 165, 16, 0.3);
}

/* Press Contact Section */
.press-contact {
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.contact-title {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.contact-details {
    text-align: left;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-label {
    font-weight: 600;
    color: #374151;
}

.contact-link {
    color: gold;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: gold;
    text-decoration: underline;
}

.contact-value {
    color: #64748b;
    font-weight: 500;
}

/* Footer Active Page Styling */
.footer-nav .active-page {
    color: gold;
    font-weight: 600;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
    
    .press-main {
        padding: 60px 15px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-item {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .media-kit-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .press-hero {
        padding: 100px 15px 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .news-item {
        padding: 1.25rem;
    }
    
    .media-kit-content {
        padding: 0 1rem;
    }
    
    .media-kit-card {
        padding: 1.5rem;
    }
    
    .kit-contents {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .press-hero {
        background: white !important;
        color: black !important;
        page-break-inside: avoid;
    }
    
    .news-item {
        page-break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ccc;
        margin-bottom: 1rem;
    }
    
    .news-link, .contact-link, .media-kit-button {
        color: black !important;
        text-decoration: underline;
    }
    
    .news-link::after, .contact-link::after, .media-kit-button::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .animate-fade-in {
        animation: none;
        opacity: 1;
    }
    
    .press-hero::before {
        animation: none;
    }
    
    .news-item, .media-kit-card, .media-kit-button {
        transition: none;
    }
}

/* Focus styles for better keyboard navigation */
.news-link:focus,
.contact-link:focus,
.media-kit-button:focus {
    outline: 2px solid gold;
    outline-offset: 2px;
    border-radius: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .news-item {
        border: 2px solid #000;
    }
    
    .section-title::after {
        background: #000;
    }
    
    .media-kit-card {
        border: 2px solid #000;
    }
}