@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #1a1a2e;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-items: start;
    gap: 20px;
    padding: 12px 0;
    z-index: 1;
}

.site-nav .nav-brand {
    font-weight: bold;
    color: #00d4ff;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: default;
}

.site-nav .nav-brand:hover {
    transform: scale(1.05) rotate(-1deg);
    color: #e94560;
}

.site-nav .nav-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 36px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

.site-nav .nav-toggle span {
    display: block;
    height: 3px;
    background: #00d4ff;
    margin: 4px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-nav .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-nav .nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.site-nav .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav .nav-links {
    list-style: none;
    display: grid;
    grid-auto-flow: column;
    gap: 18px;
    align-items: center;
}

.site-nav .nav-links li {
    position: relative;
}

.site-nav .nav-link {
    color: #e0e0e0;
    text-decoration: none;
    padding: 6px 4px;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.site-nav .nav-link::after {
    content: '';
    height: 3px;
    width: 0%;
    position: absolute;
    left: 0;
    bottom: -6px;
    background: linear-gradient(90deg, #00d4ff, #e94560);
    transition: width 0.28s cubic-bezier(.2,.9,.2,1);
    border-radius: 2px;
}

.site-nav .nav-link:hover {
    color: #00d4ff;
    transform: translateY(-2px);
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after {
    width: 100%;
}

.site-nav .nav-link.active {
    color: #e94560;
}

@media (max-width: 800px) {
    .site-nav .nav-toggle { display: block; }
    .site-nav .nav-links { display: none; position: absolute; right: 20px; top: 56px; background: #16213e; padding: 12px; border: 1px solid #0f3460; grid-auto-flow: row; gap: 8px; border-radius: 6px; }
    .site-nav .nav-links.show { display: grid; }
}

.site-nav .nav-links li:active .nav-link { transform: translateY(0); }

main {
    padding: 20px 0;
}

.hero {
    text-align: center;
    padding: 40px;
    background-color: #16213e;
    border: 2px solid #0f3460;
    margin-bottom: 40px;
    transition: all 0.5s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero:hover {
    background-color: #1a2c52;
    border-color: #00d4ff;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #00d4ff;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.hero:hover h1 {
    color: #e94560;
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
}

.hero h2 {
    font-size: 1.5rem;
    color: #e94560;
    margin-bottom: 10px;
    transition: transform 0.4s ease;
}

.hero:hover h2 {
    transform: skewX(-5deg);
}

.hero p {
    font-size: 1rem;
    color: #e0e0e0;
    transition: letter-spacing 0.4s ease;
}

.hero:hover p {
    letter-spacing: 2px;
}

.constellation-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background-color: #16213e;
    border: 2px solid #0f3460;
    padding: 20px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), 
                background-color 0.4s ease,
                border-color 0.4s ease;
}

.info-card:hover {
    transform: rotate(2deg) translateY(-10px);
    background-color: #1a2c52;
    border-color: #00d4ff;
}

.info-card h3 {
    color: #00d4ff;
    font-size: 1.3rem;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.info-card:hover h3 {
    transform: scaleX(1.1);
}

.info-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

.gallery {
    margin-bottom: 40px;
}

.gallery h2 {
    text-align: center;
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 30px;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.gallery h2:hover {
    transform: rotateY(10deg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.image-slot {
    background-color: #16213e;
    border: 2px solid #0f3460;
    overflow: hidden;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
}

.image-slot:hover {
    border-color: #00d4ff;
    transform: perspective(1000px) rotateY(5deg) rotateX(-5deg);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.placeholder {
    width: 100%;
    height: 200px;
    background-color: #0f3460;
    display: grid;
    place-items: center;
    font-size: 1rem;
    color: #00d4ff;
}

.image-slot img {
    width: 100%;
    object-fit: cover;
    display: none;
    height: fit-content;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.image-slot:hover img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1.2);
}

.image-slot img[src]:not([src=""]) {
    display: block;
}

.image-slot img[src]:not([src=""]) ~ .placeholder {
    display: none;
}

.image-caption {
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
    color: #e0e0e0;
    background-color: #16213e;
}

.constellation-visual {
    text-align: center;
    margin-bottom: 40px;
}

.constellation-visual h2 {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.constellation-visual h2:hover {
    transform: rotateX(10deg);
}

.constellation-svg {
    max-width: 500px;
    height: auto;
    width: 100%;
    margin: 0 auto;
    background-color: #0f3460;
    border: 2px solid #0f3460;
    padding: 20px;
    transition: transform 0.6s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.constellation-svg:hover {
    transform: rotateZ(5deg) scale(1.05);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
}

.constellation-svg circle {
    transition: r 0.3s ease, fill 0.3s ease;
}

.constellation-svg:hover circle {
    r: 8;
}

.constellation-svg line {
    transition: stroke-width 0.3s ease, stroke 0.3s ease;
}

.constellation-svg:hover line {
    stroke-width: 2.5;
    stroke: #00d4ff;
}

.media-section {
    background-color: #16213e;
    border: 2px solid #0f3460;
    padding: 30px;
    margin-bottom: 40px;
    transition: all 0.5s ease;
}

.media-section:hover {
    background-color: #1a2c52;
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.media-section h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #00d4ff;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.media-section:hover h2 {
    transform: skewY(3deg);
}

.media-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.video-container {
    background-color: #0f3460;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-container:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    border: 2px solid #00d4ff;
}

.video-container h3 {
    color: #e94560;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.video-container:hover h3 {
    color: #00d4ff;
}

.video-player {
    width: 100%;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.video-container:hover .video-player {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.audio-section {
    background-color: #0f3460;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.5s ease;
}

.audio-section:hover {
    background-color: #1a2c52;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
}

.audio-section h3 {
    color: #00d4ff;
    margin-bottom: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.audio-section:hover h3 {
    transform: scale(1.1);
}

.audio-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.audio-player {
    background-color: #16213e;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #0f3460;
    transition: all 0.4s ease;
}

.audio-player:hover {
    border-color: #e94560;
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.2);
}

.audio-player p {
    color: #e94560;
    margin-bottom: 10px;
    font-weight: bold;
    transition: letter-spacing 0.3s ease;
}

.audio-player:hover p {
    letter-spacing: 1px;
}

.audio-clip {
    width: 100%;
    transition: filter 0.3s ease;
}

.audio-player:hover .audio-clip {
    filter: brightness(1.2);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.constellation-svg {
    animation: float 3s ease-in-out infinite;
}

.contact-section {
    background-color: #16213e;
    border: 2px solid #0f3460;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 8px;
}

.contact-section h2 {
    color: #00d4ff;
    text-align: center;
    margin-bottom: 18px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form .full {
    grid-column: 1 / -1;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #e0e0e0;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #0f3460;
    background-color: #0f2540;
    color: #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    border-color: #00d4ff;
    box-shadow: 0 6px 18px rgba(0,212,255,0.08);
    transform: translateY(-2px);
}

.contact-actions {
    display: grid;
    grid-auto-flow: column;
    gap: 12px;
    align-items: center;
}

.btn {
    background: linear-gradient(90deg,#00d4ff,#e94560);
    color: #0a0e27;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,212,255,0.12); }

.form-note { color: #cfcfcf; font-size: 0.9rem; }

@media (max-width: 800px) {
    .contact-form { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2rem;
    }

    .constellation-info {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .media-container {
        grid-template-columns: 1fr;
    }

    .audio-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .image-slot:hover {
        transform: perspective(1000px) rotateY(2deg) rotateX(-2deg);
    }
}

.site-footer {
    background: linear-gradient(90deg, #0f2540, #0a1630);
    color: #cfdff6;
    padding: 24px 20px;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.site-footer .footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 20px;
    align-items: start;
}

.site-footer p { margin: 6px 0; color: #cfdff6; }

.site-footer .social-links a {
    color: #00d4ff;
    text-decoration: none;
    margin-right: 12px;
    transition: color 0.2s ease, transform 0.15s ease;
}

.site-footer .social-links a:hover {
    color: #e94560;
    transform: translateY(-3px);
}

@media (max-width: 800px) {
    .site-footer .footer-inner { grid-template-columns: 1fr; align-items: flex-start; }
}

.logo-image{
    width: 100px;
    height: auto;
} 

video{
    width: 100%;
    height: auto;
}
*{
    border-radius: 10px;
}