/* Base styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
}

.contact-info {
    font-family: 'Libre Franklin', sans-serif;
    padding: 20px;
    text-align: center;
    color: #3e3e3e;
    background-color: #f9f9f9;
}


.contact-info h1 {
    color: #855E42;
}

.contact-methods p {
    margin: 10px 0;
    font-size: 16px;
    color: #4a4a4a;
}

p{
    font-size: 20px;
}

a {
    color: #0077cc;
    text-decoration: none;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #202020;
    color: white;
}

.image-overlay, #lodge-pic {
    width: 100%;
    height: auto;
    position: relative;
    object-fit: cover;
    overflow: hidden;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
}

#accommodation-header {
    font-family: "Libre Franklin";
    color: rgb(152, 134, 81);
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
}

.sphe-pic {
    width: 100%;
    max-width: 150px;
    margin-top: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.sphe-pic:hover {
    transform: scale(1.1);
}

/* Responsive adjustments with media queries */
@media (max-width: 768px) {
    .contact-info, .contact-methods p {
        padding: 10px;
        font-size: 14px;
    }

    .overlay-text {
        font-size: 16px; /* Adjust font size for smaller devices */
    }

    #accommodation-header {
        font-size: 24px; /* Smaller header on small screens */
    }

    .topnav {
        flex-direction: column;
        align-items: center;
    }

    #nav-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contact-info p {
        padding: 5px;
    }

    .sphe-pic {
        width: 80%;
        max-width: 100px; /* Smaller image on very small screens */
    }
}
