@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=Inter:wght@400;500;600&display=swap');


* {
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.7;
    background-color: #0a0a0a;
    color: #e0e0e0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cinzel", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

:root {
    --primary-color: #f4f4f4;
    --accent-color: #ffb347;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-glow: #ffb347;
    --shadow-dark: 0 2px 20px rgba(255, 179, 71, 0.1);
    --shadow-glow: 0 4px 40px rgba(255, 179, 71, 0.2);
    --transition: all 0.3s ease;
}


#light-up-the-dark {
    background: radial-gradient(ellipse at 70% 50%, rgba(255, 179, 71, 0.08) 0%, rgba(255, 179, 71, 0.02) 40%, var(--darker-bg) 70%, var(--dark-bg) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#light-up-the-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0,0,0,0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0,0,0,0.6) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0,0,0,0.7) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

#light-up-the-dark .container {
    position: relative;
    z-index: 2;
}

#light-up-the-dark .p-5 {
    padding: 3rem !important;
    position: relative;
    z-index: 2;
}

#light-up-the-dark h2 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 179, 71, 0.3);
    letter-spacing: 1px;
}

#light-up-the-dark p {
    font-size: 1.25rem;
    color: #c0c0c0;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 0 0 5px rgba(255, 179, 71, 0.1);
}

.airship-container {
    position: relative;
    overflow: visible;
}

.airship-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 140%;
    background: radial-gradient(ellipse 70% 60%, rgba(255, 179, 71, 0.25) 0%, rgba(255, 179, 71, 0.15) 25%, rgba(255, 179, 71, 0.08) 45%, rgba(255, 179, 71, 0.03) 65%, transparent 85%);
    border-radius: 50%;
    z-index: 1;
    animation: airshipGlow 7s ease-in-out infinite alternate;
}

.airship-container::after {
    content: '';
    position: absolute;
    top: 70%;
    left: 45%;
    transform: translate(-50%, -50%) rotate(-15deg);
    width: 200%;
    height: 160%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 179, 71, 0.08) 49%, rgba(255, 179, 71, 0.12) 50%, rgba(255, 179, 71, 0.08) 51%, transparent 52%),
        linear-gradient(-30deg, transparent 48%, rgba(255, 179, 71, 0.06) 49%, rgba(255, 179, 71, 0.1) 50%, rgba(255, 179, 71, 0.06) 51%, transparent 52%),
        linear-gradient(75deg, transparent 48%, rgba(255, 179, 71, 0.05) 49%, rgba(255, 179, 71, 0.08) 50%, rgba(255, 179, 71, 0.05) 51%, transparent 52%);
    z-index: 1;
    opacity: 0.7;
    animation: lightRaysVertical 4s ease-in-out infinite;
}

@keyframes airshipGlow {
    0% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes lightRaysVertical {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) translateY(0px) rotate(-15deg) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) translateY(-10px) rotate(-15deg) scale(1.02);
    }
}

@keyframes airshipFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

#light-up-the-dark img {
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    height: auto;
    animation: airshipFloat 4s ease-in-out infinite;
    transition: var(--transition);
    position: relative;
    z-index: 3;
    filter: brightness(1.05) contrast(1.08) saturate(1.1);
}

#light-up-the-dark img:hover {
    animation-play-state: paused;
    transform: translateY(-15px);
    filter: brightness(1.1) contrast(1.15) saturate(1.15);
}


.container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}


footer {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, #1a1a1a 100%);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 179, 71, 0.1);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 179, 71, 0.4), transparent);
}

footer img {
    transition: var(--transition);
}

footer img:hover {
    transform: scale(1.05);
}

footer a {
    color: var(--primary-color);
    transition: var(--transition);
}

footer a:hover {
    transform: translateY(-2px);
    color: var(--accent-color) !important;
}

/* Media queries */
@media (max-width: 1200px) {
    #light-up-the-dark .p-5 {
        padding: 2rem !important;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    #light-up-the-dark .p-5 {
        padding: 1.5rem !important;
    }

    .display-4 {
        font-size: 2rem;
    }

    footer .col-lg-3 {
        text-align: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    #light-up-the-dark {
        text-align: center;
    }

    #light-up-the-dark .p-5 {
        padding: 1rem !important;
    }

    #light-up-the-dark .row {
        flex-direction: column-reverse;
    }

    .display-4 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    #light-up-the-dark p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    footer {
        padding: 2rem 1rem;
        text-align: center;
    }

    footer .col-lg-3 {
        margin-bottom: 2rem;
    }

    footer .col-lg-3:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 1.5rem;
    }

    #light-up-the-dark p {
        font-size: 0.95rem;
    }

    footer .col-lg-3 p {
        font-size: 0.9rem;
    }

    footer .small {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    #light-up-the-dark .p-5 {
        padding: 0.5rem !important;
    }
    
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    iframe {
        height: 130px;
        margin: 0;
    }
}

.press-kit-link a {
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    color: #e6e6e6;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 2px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.press-kit-link a:hover {
    color: #ffffff;
    border-color: #ffffff;
}
