:root {
    --primary: #00d2ff;
    --dark: #0a0a0a;
    --light: #ffffff;
    --gray: #888;
}


* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background: var(--dark); 
    color: var(--light); 
    overflow: hidden; 
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 8%; 
    z-index: 3000;
    background: linear-gradient(to bottom, rgba(10,10,10,0.7), transparent);
    backdrop-filter: blur(8px); 
}

.logo { 
    font-size: 1.5rem; 
    font-weight: 800; 
    letter-spacing: 2px; 
}

.logo span { color: var(--primary); }

.nav-links a {
    color: var(--light);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    transition: 0.3s;
}

.nav-links a:hover { 
    opacity: 1; 
    color: var(--primary); 
}

.hero { 
    display: flex; 
    height: 100vh; 
    width: 100vw;
    align-items: stretch; 
    overflow: hidden;
}

.hero-image { 
    width: 65%; 
    height: 100%; 
    position: relative; 
    flex-shrink: 0; 
    margin-right: -5%; 
}

.hero-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: 50% 20%; 
}

.image-overlay { 
    position: absolute; 
    top: 0; 
    left: 0;
    width: 101%; 
    height: 100%; 
    z-index: 2;
    background: linear-gradient(
        to right, 
        transparent 0%, 
        transparent 40%,           
        rgba(10, 10, 10, 0.8) 75%,  
        var(--dark) 100%          
    ),
    linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, transparent 15%); 
}

.hero-text { 
    width: 40%; 
    padding: 80px 5% 0 8%;
    z-index: 5;
    background: transparent; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge { 
    color: var(--primary); 
    text-transform: uppercase; 
    font-size: 0.8rem; 
    letter-spacing: 4px; 
    margin-bottom: 20px; 
    font-weight: 800;
}

.hero-text h1 { 
    font-size: clamp(2rem, 5vw, 4rem); 
    line-height: 1.1; 
    margin-bottom: 25px; 
    font-weight: 800;
    white-space: normal; 
    overflow-wrap: break-word; 
}

.hero-text h1 span { 
    -webkit-text-stroke: 1px var(--light); 
    color: transparent; 
    display: block; 
}

.hero-text p { 
    color: var(--gray); 
     width: 100%; 
    margin-bottom: 40px; 
    line-height: 1.4; 
    font-size: 1.1rem; 
}


.btn-primary {
    padding: 18px 45px; 
    background: var(--primary); 
    color: var(--dark);
    border: none; 
    font-weight: 800; 
    border-radius: 4px; 
    cursor: pointer;
    font-size: 1rem;
    width: fit-content;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.btn-primary:hover { 
    transform: scale(1.05); 
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.4); 
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column; 
        overflow-y: auto; 
        height: auto; 
        min-height: 100vh;
    }

    .hero-text {
        width: 100%;
        height: auto;
        padding: 100px 20px 40px 20px; 
        text-align: center;
        align-items: center;
        order: 1; 
    }

    .hero-image {
        width: 100%;
        height: 50vh; 
        order: 2; 
    }

    .image-overlay {
        background: linear-gradient(to bottom, var(--dark) 0%, transparent 20%);
    }

    .hero-text h1 {
        font-size: 2.5rem; 
    }

    .navbar {
        padding: 15px 5%; 
    }
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 20%;
    opacity: 0;
    animation: slideAnimation 18s infinite;
    transform: none !important; 
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 2s; }
.slide:nth-child(3) { animation-delay: 4s; }
.slide:nth-child(4) { animation-delay: 6s; }
.slide:nth-child(5) { animation-delay: 8s; }
.slide:nth-child(6) { animation-delay: 10s; }
.slide:nth-child(7) { animation-delay: 12s; }
.slide:nth-child(8) { animation-delay: 14s; }
.slide:nth-child(9) { animation-delay: 16s; }

@keyframes slideAnimation {
    0% { opacity: 0; }
    5% { opacity: 1; }
    11.11% { opacity: 1; }
    16% { opacity: 0; }
    100% { opacity: 0; }
}

.image-overlay {
    z-index: 2; 
}