﻿.hero-slide {
    position: relative;
}

/* LEFT DARK OVERLAY */
.hero-slide::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.4),
        transparent
    );
    z-index: 1;
}

/* TEXT AREA */
.hero-content {
    position: absolute;
    left: 6%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    max-width: 500px;
}

/* TEXT STYLING */
.hero-content .sc-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content .sc-paragraph-lead {
    font-size: 18px;
    margin: 15px 0 25px;
}

/* BUTTON */
.btn-gold {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 12px 28px;
}

.btn-gold:hover {
    background: #c29b2f;
}

@media (max-width: 768px) {

    .hero-slide::before {
        width: 100%;
        background: rgba(0,0,0,0.6);
    }

    .hero-content {
        left: 5%;
        right: 5%;
        text-align: center;
        max-width: 100%;
    }

    .hero-content .sc-title {
        font-size: 26px;
    }

    .hero-content .sc-paragraph-lead {
        font-size: 14px;
    }
}