﻿/* ---------------------------------------------------------------------
   Hero carousel — owl-carousel chrome and slide styling.
   The previous version referenced var(--brand) which was never defined;
   replaced with the brand Sapphire variable from Site.css.
   --------------------------------------------------------------------- */

.hero-slider .owl-prev,
.hero-slider .owl-next {
    background-color: rgba(255, 255, 255, 0.3) !important;
    width: 60px !important;
    height: 60px !important;
    display: block;
    display: grid;
    place-items: center;
    color: #fff !important;
    border-radius: 100px;
    line-height: 0;
    border-radius: 100px !important;
    position: absolute;
    top: 50%;
    font-weight: 600 !important;
    font-size: 12px !important;
    transition: all 0.4s ease;
    margin-top: -30px !important;
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover {
    background-color: var(--cca-blue) !important; /* was var(--brand) — undefined */
}

.owl-dot.active span {
    background-color: var(--cca-blue) !important; /* was var(--brand) — undefined */
}


/* ---------------------------------------------------------------------
   Slide layout
   --------------------------------------------------------------------- */
.slide {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Slide overlay tinted with Midnight instead of pure black so the
   gradient doesn't drag the warm photography toward gray. */
.slide1 {
    background: linear-gradient(rgba(16, 41, 64, 0.45), rgba(16, 41, 64, 0.45)), url(../img/banners/Banner_ASN_Assumption.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide2 {
    background: linear-gradient(rgba(16, 41, 64, 0.45), rgba(16, 41, 64, 0.45)), url(../img/banners/Banner_Headstones.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide3 {
    background: linear-gradient(rgba(16, 41, 64, 0.45), rgba(16, 41, 64, 0.45)), url(../img/banners/flowers-background-pink-and-white.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide4 {
    background: linear-gradient(rgba(16, 41, 64, 0.45), rgba(16, 41, 64, 0.45)), url('../img/banners/Banner_Headstones.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide5 {
    background: linear-gradient(rgba(16, 41, 64, 0.45), rgba(16, 41, 64, 0.45)), url('../img/banners/Heart-Shaped-Monument-1600.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide6 {
    background: linear-gradient(rgba(16, 41, 64, 0.45), rgba(16, 41, 64, 0.45)), url('../img/banners/Banner_Calvary_Cleveland_Headstones.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* ---------------------------------------------------------------------
   Slide typography
   The old rule forced uppercase on every display-3. Brand guidance is
   the opposite — mixed case across all headlines. Removed and replaced
   with affirmative slide-headline styling.
   --------------------------------------------------------------------- */

.slide h1,
.slide .display-1,
.slide .display-2,
.slide .display-3,
.slide .display-4 {
    color: #fff;
    font-family: 'Spectral', Georgia, serif;
    font-weight: 500;
    
    letter-spacing: -0.01em;
    text-transform: none; /* explicit override in case any parent forces uppercase */
    line-height: 1.1;
}

/* Slide eyebrow — the small Inter label sitting above the headline.
   Restated here to scope a slightly different sizing for the carousel
   context (the base .hero-eyebrow class lives in Site.css). */
.slide .hero-eyebrow {
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: none;
    margin: 0 0 0.75rem;
}
