:root {
    --primary-green: #a7a17f;
    --dark-green: #5f5d45;
    --light-green: #C8C091;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: var(--primary-green);
    color: #fff;
}

.open-sans {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-weight: 400;
    font-variation-settings:
        "wdth" 100;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid var(--dark-green);
}

.contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

.social-media {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-media a {
    color: #fff;
    font-size: 1.75rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #E5E7EB
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2rem;
    margin: 2rem;
    height: 70vh;
}

.hero-img img {
    max-width: 30vw;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-text p {
    max-width: 40vw;
    text-align: center;
}

.booking-btn a {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.booking-btn a:hover {
    background-color: #ededed;
}

/* Benefits */
.benefits {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-green);
}

.benefits .booking-btn {
    margin-top: 2rem;
}

.benefit-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    max-width: 20vw;
}

.benefit-item i {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.benefit-item p {
    margin: 0;
    padding: 0;
}

.benefit-item-title {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Map */
.map {
    width: 100%;
    margin: 2rem 0rem;
    font-size: 1.25rem;
}

.map-container {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
}

.map-text {
    max-width: 30vw;
}

.map-container iframe {
    border-radius: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.map-iframe {
    width: 40vw;
    height: 60vh;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}

.gallery-booking {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}


.footer {
    margin-top: 10vh;
    padding: 2rem 4vw;
    border-top: 1px solid #E5E7EB;
    color: #fff;
    font-size: 1rem;
}

.footer p {
    margin-top: 0;
}

.footer-top {
    height: 2rem;
}

.footer-top,
.footer-bottom {
    display: flex;
    justify-content: space-between;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 500;
}

.footer-copy {
    margin: 0;
    padding: 0;
}

.footer-tagline {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-tagline p {
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
}

.address {
    margin: 0;
    padding: 0;
}

.contact-phone {
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: #E5E7EB;
    cursor: pointer;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}