body {
    font-family: 'Montserrat', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

main {
	background: url('valle.jpg');
	width: 100%;
	height: 100vh;
	background-position: center center;
    background-size: cover;
}

footer {
    position: absolute;
    bottom: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.content {
	width: 100%;
	text-align: center;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	max-width: 80%;
}

.content img { width: 470px; max-width: 100%; }

.content h1 {
    color: white;
    font-size: 21px;
}

.buttons-container {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    align-items: baseline;
    justify-content: center;
}

.button-group {
    display: flex;
    flex-direction: column;
    align-items: top;
    gap: 10px;
}

.button {
    max-height: 40px;
    padding: 12px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
    min-width: 110px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.button:hover {
    background-color: #69612E;
}

.eco-resort {
    background-color: #868277;
    color: white;
    cursor: none;
    pointer-events: none;
}

.disc-golf {
    background-color: #9e935e;
    color: white;
}

.coming-soon {
    color: white;
    font-size: 12px;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .buttons-container {
        gap: 20px;
    }
}

/* Responsive adjustments */
@media (max-width: 420px) {
    .buttons-container {
        gap: 15px;
    }
}