/*
========================================
Iron Pinbreaker Theme
Hero Styles
========================================
*/
.hero {
    min-height: 80vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #222;
    background: #b71c1c;
    color: #fff;
    padding: 120px 20px;
    text-align: center;
}

.hero-overlay {
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 15px rgba(0,0,0,.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-text {
    max-width: 650px;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}