/* ===== HERO SECTION ===== */
.hero {
    height: 70vh;
     margin-top: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* BACKGROUND */
.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;

    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.75)),
        url("/images/image16.png") center 35% /cover no-repeat;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    color: white;
    padding: 20px;
}

/* TEXT */
.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content h1 span {
    color: #FF7043;
}

.hero-content p {
    font-size: 18px;
    color: #eee;
    margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* GLASS BUTTON */
.btn-glass {
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.6);
    color: white;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: 0.3s;
}

.btn-glass:hover {
    background: rgba(255,255,255,0.2);
}

/* ===== ANIMATION ===== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

   .hero {

       min-height: calc(100vh - 90px);

       height: auto;

       padding: 30px 20px 60px;
   }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn,
    .btn-glass {
        width: 100%;
    }

    .hero-bg {
        background-position: top center;
    }
}
body {
    padding-top: 80px;   /* match navbar height */
}

