body {
    margin: 0;
    background-color: #111;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.banner {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 20px;
}

.overlay h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.overlay p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.email-btn {
    display: inline-block;
    background-color: #DAA520;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    top: 0;
}

.email-btn:hover {
    background-color: #FFD700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .overlay h1 {
        font-size: 2.2rem;
    }

    .overlay p {
        font-size: 1.1rem;
    }

    .email-btn {
        padding: 8px 16px;
    }
}