
 /* General Layout */
body {
    margin: 0;
    font-family: Roboto, Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    overflow-y: scroll;
}

a {
    text-decoration: none;
    color: inherit;
}
a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.content {
    position: relative;
    display: fex;
    justify-content: center;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}

/* Menu */
.menu {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 16px;
    text-transform: uppercase;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed; /* Keeps the menu always visible */
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

/* Landing Section */
.landing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 3rem; /* Adds space for the fixed menu */
    text-align: center;
}
.main-image {
    width: 60%; /* Matches the width of the gallery container */
    max-width: 800px; /* Ensures it doesn’t grow too large on wide screens */
    height: auto;
    margin-bottom: 30px;
}
.album-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 60%; /* Sets the alignment width */
    max-width: 800px;
}
.album-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    background-color: #fff;
    border: 2px solid #333;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.gallery-item:hover {
    background-color: #e0e0e0;
    color: #000;
}

/* About Section */
.about-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    text-align: left;
}

.about-container h1 {
    font-size: 24px;
    margin-bottom: 10px;
}
.about-container p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}
.contact-container h1 {
    font-size: 24px;
    margin-bottom: 20px;
}
.contact-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-container input,
.contact-container textarea,
.contact-container button {
    padding: 10px;
    font-size: 14px;
    border: 2px solid #333;
    border-radius: 5px;
}
.contact-container button {
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    background-color: #fff;
}
.contact-container button:hover {
    background-color: #e0e0e0;
}


        /* Gallery Section */
        .gallery-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 20px;
        }
        .gallery-title {
            text-align: center;
            font-size: 24px;
            margin-bottom: 20px;
        }
        .thumbnail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }
        .thumbnail {
            position: relative;
            overflow: hidden;
            border: 2px solid #333;
            border-radius: 5px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .thumbnail:hover {
            transform: scale(1.05);
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        }
        .thumbnail img {
            width: 100%;
            height: auto;
            display: block;
        }
        .thumbnail-title {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background-color: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 5px 10px;
            font-size: 12px;
            text-transform: uppercase;
            border-radius: 3px;
        }


