/* Import fonts */
@font-face {
    font-family: 'Conthrax';
    src: url('assets/fonts/conthrax-sb.otf') format('opentype');
}

@font-face {
    font-family: 'Jura';
    src: url('assets/fonts/Jura-VariableFont_wght.ttf') format('truetype');
}

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

/* Base */
body {
    font-family: 'Jura', sans-serif;
    background: #000000;
    color: #FFFFFF;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Hexagon Grid Background */
.hex-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000000;
    overflow: hidden;
}

.hex-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath fill='%23037C76' fill-opacity='0.25' d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/svg%3E");
    opacity: 0.8;
}

/* Main Container */
.presskit-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
.presskit-header {
    text-align: center;
    margin-bottom: 60px;
}

.animated-title {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 200px;
    margin-bottom: 20px;
    mix-blend-mode: screen;
    object-fit: contain;
}

.presskit-subtitle {
    font-size: 1.5rem;
    color: #00FFE0;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

/* Back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00FFE0;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 30px;
    transition: opacity 0.3s;
}

.back-link:hover {
    opacity: 0.7;
}

.back-link svg {
    width: 20px;
    height: 20px;
}

/* Download All Button */
.download-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #02081C;
    border: 2px solid rgba(0, 255, 224, 0.5);
    color: #FFFFFF;
    font-family: 'Conthrax', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.download-all::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        135deg,
        rgba(3, 124, 118, 0.15),
        rgba(250, 64, 142, 0.1),
        rgba(250, 217, 26, 0.1),
        rgba(3, 124, 118, 0.15)
    );
    animation: holographicShimmer 8s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes holographicShimmer {
    0% { transform: translate(0%, 0%); }
    50% { transform: translate(-33%, -33%); }
    100% { transform: translate(0%, 0%); }
}

.download-all:hover {
    transform: translateY(-2px);
    border-color: #00FFE0;
    box-shadow: 0 10px 30px rgba(0, 255, 224, 0.2);
}

.download-all svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

.download-all span,
.download-all {
    position: relative;
    z-index: 1;
}

/* Sections */
.presskit-section {
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Conthrax', sans-serif;
    font-size: 1.8rem;
    color: #00FFE0;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 255, 224, 0.3);
}

/* Card containers */
.card {
    background: #02081C;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 30px;
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.7);
}

/* Two-column layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

/* Factsheet */
.factsheet {
    display: grid;
    gap: 15px;
}

.fact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fact-label {
    font-family: 'Conthrax', sans-serif;
    font-size: 0.8rem;
    color: #FA408E;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.fact-value {
    color: #FFFFFF;
    font-size: 1rem;
}

.fact-value a {
    color: #00FFE0;
    text-decoration: none;
}

.fact-value a:hover {
    text-decoration: underline;
}

/* Description */
.description p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #E0E0E0;
}

.description p:last-child {
    margin-bottom: 0;
}

/* Features list */
.features-list {
    list-style: none;
    display: grid;
    gap: 15px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    color: #E0E0E0;
}

.features-list li::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: #FA408E;
    transform: rotate(45deg);
    margin-top: 8px;
}

/* Image Galleries */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    border-color: rgba(250, 64, 142, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    font-size: 0.85rem;
    color: #00FFE0;
}

/* Art Gallery - smaller items */
.art-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.art-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    background: #02081C;
    aspect-ratio: 1;
}

.art-item:hover {
    border-color: rgba(0, 255, 224, 0.5);
    transform: scale(1.05);
}

.art-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

/* Video Section */
.video-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.18);
    background: #000;
    z-index: 1;
}

.video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Logos Section */
.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.logo-item {
    background: #02081C;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.logo-item:hover {
    border-color: rgba(250, 64, 142, 0.5);
}

.logo-item img {
    max-width: 100%;
    max-height: 150px;
    margin-bottom: 15px;
}

.logo-item span {
    display: block;
    font-size: 0.85rem;
    color: #808080;
}

/* About Section */
.about-content {
    font-size: 1.05rem;
    color: #E0E0E0;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #00FFE0;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(0, 255, 224, 0.1);
    border-color: #00FFE0;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Contact */
.contact-email {
    font-family: 'Conthrax', sans-serif;
    font-size: 1.2rem;
    color: #00FFE0;
    text-decoration: none;
}

.contact-email:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    margin-top: 60px;
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(0, 255, 224, 0.2);
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #00FFE0;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
}

.footer .separator {
    color: #666;
}

.footer-copyright {
    color: #808080;
    font-size: 0.85rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: #FFFFFF;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #FA408E;
}

/* Mobile */
@media (max-width: 768px) {
    .presskit-container {
        padding: 20px 15px;
    }

    .presskit-title {
        font-size: 2rem;
    }

    .presskit-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card {
        padding: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .art-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logos-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
    }

    .social-link {
        justify-content: center;
    }

    .download-all {
        width: 100%;
        justify-content: center;
    }

    .video-container {
        max-width: 100%;
    }
}
