﻿.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 6s ease-in-out;
}

    .hero-slide.active {
        opacity: 1;
        transform: scale(1);
        z-index: 2;
    }

.hero-content {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 3;
    animation: fadeUp 1.5s ease-in-out;
}

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 10px;
        color: #e65100; /* dark orange */
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        /* dark orange shadow for depth */
        text-shadow: 2px 2px 6px rgba(230, 81, 0, 0.5), 0px 0px 10px rgba(191, 54, 12, 0.4);
    }


    .hero-content .slogan {
        font-size: 1.5rem;
        margin-bottom: 20px;
        font-weight: 300;
    }
    .hero-content .slogan {
        font-size: 1.4rem;
        color: #333333; /* dark gray for contrast on white */
        margin-bottom: 20px;
        font-weight: 400;
    }
.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    background: #f57c00; /* orange */
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

    .hero-btn:hover {
        background: #e65100; /* darker orange */
        transform: translateY(-3px);
    }
/* Text animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-container {
    position: relative;
    width: 100%;
    height: 100vh; /* full screen */
    overflow: hidden;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomEffect 15s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* dark overlay */
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
    animation: fadeInUp 2s ease forwards;
}

    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: bold;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 20px;
        animation: glow 2s ease-in-out infinite alternate;
    }

    .hero-content .slogan {
        font-size: 1.5rem;
        margin-bottom: 30px;
        font-style: italic;
        color: #f1f1f1;
    }

.hero-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

    .hero-btn:hover {
        background: #218838;
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(0,0,0,0.6);
    }

/* 🔥 Animations */
@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #28a745, 0 0 20px #28a745;
    }

    to {
        text-shadow: 0 0 20px #28a745, 0 0 40px #28a745;
    }
}
