/**
 * --------------------------------------------------------------
 * File: hero.css
 * Project: New Dawn Pro – Rise Edition v3.1.1
 * URL: https://newdawndigital.net
 * Author: The Rev. Dr. Rick G. Williams
 * Description: Unified styling for hero rotator, parallax, and overlay layers.
 * --------------------------------------------------------------
 * © 2025 The Rev. Dr. Rick G. Williams
 * ALL RIGHTS RESERVED
 */

/* Base container */
.new-dawn-hero-container,
.parallax-hero,
.smart-hero {
    position: relative;
    width: 100%;
    height: 420px; /* PRESERVE THEME'S ORIGINAL HEIGHT */
    overflow: hidden;
}

/* Slides */
.new-dawn-hero-slide,
.parallax-hero-image,
.smart-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}

.new-dawn-hero-slide.active {
    opacity: 1;
}

/* Overlay Layer */
.ndp-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Solid overlay */
.ndp-overlay-solid {
    background: var(--ndp-overlay-color, rgba(0,0,0,0.5));
}

/* Gradient overlay */
.ndp-overlay-gradient {
    background: linear-gradient(
        to bottom,
        var(--ndp-overlay-gradient-start, rgba(0,0,0,0.7)),
        var(--ndp-overlay-gradient-end, rgba(0,0,0,0.9))
    );
}

/* Overlay opacity (applied over both solid & gradient) */
.ndp-overlay-opacity {
    opacity: var(--ndp-overlay-opacity, 0.6);
}

/* TEXT LAYER */
.ndp-hero-text {
    position: absolute;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    z-index: 4;
    padding: 20px 25px;
    max-width: 80%;
}

/* Title */
.ndp-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Subtitle */
.ndp-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* ALIGNMENT VARIANTS */
.ndp-align-center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.ndp-align-top-left {
    top: 30px;
    left: 30px;
    text-align: left;
}

.ndp-align-bottom-left {
    bottom: 30px;
    left: 30px;
    text-align: left;
}

.ndp-align-bottom-center {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.ndp-align-bottom-right {
    bottom: 30px;
    right: 30px;
    text-align: right;
}

/**
 * --------------------------------------------------------------
 * END OF FILE: hero.css
 * New Dawn Pro – Rise Edition v3.1.1
 * URL: https://newdawndigital.net
 * --------------------------------------------------------------
 * © 2025 The Rev. Dr. Rick G. Williams
 * ALL RIGHTS RESERVED
 * EOF
 */
