* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

/* Background image */
.hero {
    background-image: url("background.jpg");
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Centered content */
.content {
    text-align: center;
    color: white;
}

/* Main title */
.content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 90px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Sub text */
.location {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

/* View Gallery button (outline style) */
.btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    letter-spacing: 4px;
    text-decoration: none;
    color: white;
    padding: 22px 70px;
    border: 1.5px solid white;
    background: transparent;
    transition: all 0.3s ease;
}

/* Hover effect */
.btn:hover {
    background: white;
    color: black;
}


