/* Axima Press Kit Styles */

/* Press Navbar */
.press-navbar {
    position: fixed;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Press Header */
.press-header {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.press-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.press-header .container {
    position: relative;
    z-index: 2;
}

.press-header h1 {
    font-size: 4rem;
    color: var(--light-text);
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.press-header h1 span {
    background: linear-gradient(to right, var(--pastel-red), var(--pastel-orange), var(--pastel-yellow), var(--pastel-green), var(--pastel-blue), var(--pastel-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.press-header p {
    font-size: 1.3rem;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Fact Sheet */
.factsheet {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.factsheet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.factsheet-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.factsheet-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.factsheet-item h3 {
    color: var(--pastel-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.factsheet-item p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.factsheet-item a {
    color: var(--pastel-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
}

.factsheet-item a:hover {
    color: var(--pastel-orange);
}

.social-links-press {
    display: flex;
    gap: 20px;
}

.social-links-press a {
    color: var(--light-text);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-links-press a:hover {
    color: var(--pastel-yellow);
    transform: translateY(-3px);
}

/* Description Section */
.description {
    padding: 100px 0;
    background: var(--bg-darker);
    position: relative;
}

.description-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-top: 50px;
}

.description-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--pastel-blue);
    font-weight: 600;
}

.description-content p {
    color: var(--light-text);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.description-content ul {
    margin: 25px 0;
    padding-left: 20px;
    list-style-type: none;
}

.description-content ul li {
    color: var(--light-text);
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.description-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--pastel-yellow);
    font-size: 1.5rem;
    line-height: 1;
}

/* Media Section */
.media {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.media-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: center;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    font-size: 1rem;
}

.filter-btn:hover, .filter-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.media-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
}

.media-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.media-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.media-info {
    padding: 20px;
}

.media-info h4 {
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.download-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Hide media items when filtered */
.media-item {
    display: none;
}

.media-item.show {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .media-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

/* Team Section */
.team {
    padding: 100px 0;
    background: var(--bg-darker);
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.team-member:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--light-text);
    font-weight: 600;
}

.team-role {
    font-size: 1.1rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--pastel-red), var(--pastel-orange), var(--pastel-yellow), var(--pastel-green), var(--pastel-blue), var(--pastel-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 500;
}

.team-member p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.studio-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.studio-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--pastel-blue);
    font-weight: 600;
}

.studio-info p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.studio-info p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .team-member {
        padding: 25px;
    }
    
    .studio-info {
        padding: 30px 20px;
        margin: 30px 20px 0;
    }
    
    .studio-info h3 {
        font-size: 1.5rem;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f8f8;
}

.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content > p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-info {
    text-align: center;
    margin-top: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--light-text);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    color: var(--pastel-blue);
}

.social-link i {
    font-size: 24px;
}

.social-link span {
    font-size: 0.9rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    filter: none;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-top: 20px;
}

.contact-info a {
    color: var(--pastel-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--pastel-purple);
}

@media (max-width: 768px) {
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .social-links {
        gap: 20px;
    }
    
    .social-link i,
    .social-icon {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
}

.press-request {
    margin-top: 50px;
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.press-request h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.press-request p {
    margin-bottom: 20px;
}

/* Game Design Document Section */
.gdd {
    padding: 100px 0;
    background: var(--bg-darker);
    position: relative;
}

.gdd-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-top: 50px;
    text-align: center;
}

.gdd-content > p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gdd-download {
    margin-top: 20px;
}

.gdd-download .download-btn {
    font-size: 1.1rem;
    padding: 15px 35px;
}

.gdd-download .download-btn i {
    font-size: 1.3rem;
}

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.roadmap-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-top: 50px;
}

.roadmap-content > p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.roadmap-timeline {
    position: relative;
    padding: 20px 0;
}

.roadmap-note {
    text-align: center;
    color: var(--pastel-yellow);
    font-style: italic;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .press-header {
        padding: 150px 0 80px;
    }
    
    .press-header h1 {
        font-size: 3rem;
    }
    
    .press-header p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .factsheet-grid {
        grid-template-columns: 1fr;
    }
    
    .media-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .description-content,
    .gdd-content {
        padding: 30px 20px;
    }
    
    .gdd-content > p {
        font-size: 1rem;
    }
}

/* Dark mode optimization */
@media (prefers-color-scheme: dark) {
    .factsheet-item,
    .description-content,
    .media-item {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .download-link {
        background: rgba(255, 255, 255, 0.02);
    }
} 