/**
 * Press Page Styles
 * Professional media center and press kit styling
 */

/* Press Hero Section */
.press-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-navy) 100%);
    color: white;
    padding: 120px 0 80px;
    overflow: hidden;
    position: relative;
}

.press-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.press-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.press-hero__text {
    max-width: none;
}

.press-hero__badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.press-hero__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.press-hero__subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-weight: 500;
}

.press-hero__description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
}

.press-hero__image {
    position: relative;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.6s ease;
}

.press-hero__image:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.02);
}

.press-hero__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Press Resources Grid */
.press-resources {
    padding: 100px 0;
    background: #f8fafc;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.press-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

.press-card__icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: block;
}

.press-card__title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.press-card__description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Company Information */
.press-company {
    padding: 100px 0;
    background: white;
}

.press-company__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.press-company__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.press-company__info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 30px 0 15px 0;
}

.press-company__info h3:first-child {
    margin-top: 0;
}

.press-company__info p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.press-company__stats h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.press-stats {
    display: grid;
    gap: 20px;
}

.press-stat {
    text-align: center;
    padding: 24px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.press-stat:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.press-stat__number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.press-stat__label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Media Contact */
.press-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-navy) 100%);
    color: white;
    text-align: center;
}

.press-contact__content {
    max-width: 600px;
    margin: 0 auto;
}

.press-contact__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.press-contact__subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.press-contact__info {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.press-contact__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
}

.press-contact__item:last-child {
    border-bottom: none;
}

.press-contact__item strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.press-contact__item a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.press-contact__item a:hover {
    color: #93c5fd;
}

.press-contact__actions {
    display: flex;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .press-hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .press-hero__title {
        font-size: 2.5rem;
    }
    
    .press-hero__image {
        transform: none;
        order: -1;
    }
    
    .press-hero__image:hover {
        transform: scale(1.02);
    }
    
    .press-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .press-card {
        padding: 32px 24px;
    }
    
    .press-company__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .press-contact__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        text-align: left;
    }
}
