/* ================= HERO SECTION ================= */

.bss-hero {
    height: calc(100vh - 80px); /* subtract navbar height */
    background: linear-gradient(120deg, #050505, #0b0f0b);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Container */
.hero-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 24px; /* removed top padding */
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */
.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: slideLeft 1s ease forwards;
}

.hero-content h1 span {
    color: #6b8e23; /* Tactical green */
}

/* RIGHT IMAGE - FLOATING EFFECT */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    filter: drop-shadow(0 25px 45px rgba(0,0,0,0.9));
    animation: floatImage 4s ease-in-out infinite;
    transition: transform 0.4s ease;
}

/* Hover lift */
.hero-image img:hover {
    transform: scale(1.05);
}

/* Floating animation */
@keyframes floatImage {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .hero-image img {
        max-width: 360px;
        animation: none; /* disable floating on mobile for smoothness */
    }
}

#typing-text {
    color: #6b8e23;
    border-right: 2px solid #6b8e23;
    padding-right: 6px;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 50%, 100% {
        border-color: #6b8e23;
    }
    25%, 75% {
        border-color: transparent;
    }
}


.hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #cccccc;
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.7;
    animation: slideLeft 1.2s ease forwards;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 16px;
    animation: slideLeft 1.4s ease forwards;
}

.btn-primary {
    padding: 12px 28px;
    background: #6b8e23;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #8fbf2f;
}

.btn-secondary {
    padding: 12px 28px;
    border: 1px solid #6b8e23;
    color: #6b8e23;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #6b8e23;
    color: #000;
}

/* RIGHT IMAGE */
.hero-image {
    display: flex;
    justify-content: center;
    animation: fadeIn 1.4s ease forwards;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
}

/* ANIMATIONS */
@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .bss-hero {
        height: auto;
        padding: 80px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}
