﻿/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FULL PAGE BACKGROUND OR FULL-WIDTH SECTIONS */
body {
    background: #F6FDF6; /* soft green */
    font-family: 'Segoe UI', sans-serif;
    width: 100%;
    overflow-x: hidden;
}

/* REMOVE FIXED WIDTH SO IMAGE CAN COVER FULL PAGE */
.body-wrapper {
    width: 100%;
    max-width: 100%; /* REMOVED 1250px LIMIT */
    margin: 0;
    padding: 25px 0;
}

/* FULL-SCREEN HERO IMAGE */
.hero-section {
    width: 100%;
    height: 100vh; /* full desktop height */
    position: relative;
    overflow: hidden;
}

/* SLIDES CONTAINER */
.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* full width */
    height: 100%;
}

/* INDIVIDUAL SLIDE */
.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover !important; /* FULL IMAGE COVER */
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: absolute;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

    /* ACTIVE SLIDE */
    .hero-slide.active {
        opacity: 1;
    }

/* OPTIONAL CONTENT OVER IMAGE */
.hero-content {
    position: absolute;
    bottom: 70px;
    left: 60px;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

    .hero-content h1 {
        font-size: 48px;
        font-weight: 800;
    }

    .hero-content p {
        font-size: 22px;
        margin-top: 10px;
    }
