.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Dark Overlay */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    font-family: "Playfair Display", serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero h1 span {
    color: #c71212;
}

.hero p {
    color: rgba(255, 255, 255, 0.8);
    margin: 20px 0 30px 0;
    font-size: 20px;
}

.hero .cta-btn {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #c71212;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.hero .cta-btn:hover {
    background: #c71212;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 18px;
        margin-bottom: 25px;
    }
    .hero .cta-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}
