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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4; /* Light gray background for the page */
}

header {
    background-color: #d32f2f;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffeb3b; /* Yellow hover effect */
}

.image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.responsive-image {
    width: 100%;
    height: auto;
    display: block;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
}

.overlay-title {
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

section {
    padding: 40px 20px;
    margin: 20px 0;
    text-align: center;
}

.about-me {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 20px auto;
}

.about-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.about-text {
    flex: 1;
}

.collage-container {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.collage-image {
    margin-top: 20px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.content p {
    font-size: 1.2rem;
    color: #666;
}

#booking {
    background-color: #eeeeee;
    padding: 40px 0;
}

#banner h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #d32f2f;
    color: white;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    display: none;
    z-index: 1000;
}

.back-to-top:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .about-me {
        flex-direction: column;
        align-items: center;
    }

    .about-image {
        margin-bottom: 20px;
        margin-right: 0;
    }

    .collage-image {
        width: 100px;
        height: 100px;
    }

    .content h2 {
        font-size: 1.5rem;
    }
}
