* {
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
}

.hero {
    position: relative;
    height: 50vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    width: 80%;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 0.5rem;
    font-size: 4.5rem;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    color: black;
    background-color: white;
}