/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Orbitron';
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* =====================
   HEADER / NAV
   ===================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    transition: background 0.3s ease;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: clamp(22px, 4vw, 35px);
    font-weight: bold;
    letter-spacing: 2px;
    color: #e7b21f;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.menu ul li a {
    text-decoration: none;
    color: #e7b21f;
    font-weight: bold;
    transition: 0.3s;
}

.menu ul li a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(28px, 5vw, 60px);
    margin-bottom: 15px;
    text-shadow: 0 0 15px #e7b21f, 0 0 30px #78b4ff;
}

.sub-hero {
    font-size: clamp(18px, 4vw, 32px);
    margin-bottom: 30px;
    color: #ddd;
}

/* CTA BUTTON */
.cta-button {
    display: inline-block;
    padding: 15px 36px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    background: #e7b21f;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(231,178,31,0.6),
                0 0 25px rgba(120,180,255,0.4);
    transition: 0.3s ease;
}

.cta-button:hover {
    background: #ffd700;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(255,215,0,0.8),
                0 0 35px rgba(120,180,255,0.6);
}

/* =====================
   ABOUT SECTION
   ===================== */
.about-section {
    padding: 100px 8%;
}

.about-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease;
}

.about-wrapper.show {
    opacity: 1;
    transform: translateY(0);
}

.about-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 6px;
}

.about-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content h2 {
    font-size: clamp(26px, 4vw, 40px);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 15px;
}

.about-content ul {
    margin-left: 18px;
    margin-bottom: 15px;
}

.about-content ul li {
    margin-bottom: 10px;
}

.highlight {
    font-weight: 600;
    color: #f5c76b;
}

@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* =====================
   FOOTER
   ===================== */
footer {
    padding: 80px 20px 30px;
    text-align: center;
}

.footer-contact h3 {
    font-size: clamp(22px, 4vw, 36px);
    margin-bottom: 15px;
    text-shadow: 0 0 15px #e7b21f, 0 0 30px #78b4ff;
}

.footer-contact p {
    font-size: 16px;
    color: #ddd;
}

.footer-bottom {
    margin-top: 30px;
    font-size: 13px;
    opacity: 0.7;
}
