/* Basic Reset */
body {
    margin: 0;
    font-family: sans-serif;
    line-height: 1.6;
}

/* Banner Container */
/*
.top-banner {
    position: relative;
    width: 100%;
    height: 250px; /* Height of your decorative banner *//*
    background-color: #333;
}

.top-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills space without stretching */
    /* This centers the image. You can use 'top', 'bottom', 
       or percentages like '50% 20%' to focus on a specific spot *//*
    object-position: center center;
}
*/

/*
top-banner {
    width: 100%;
    height: 120px; 
    background-color: #000000; /* Change this to match the edge color of your photo *//*
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.top-banner img {
    max-height: 100%;
    width: auto; /* Image stays its natural shape *//*
    object-fit: contain;
}

*/

/* Default Mobile View (Tall and square-ish) */
/*
.top-banner {
    width: 100%;
    height: 300px; /* Tall enough for mobile *//*
    position: relative;
    overflow: hidden;
}

/* Desktop View (Wide and Slim) *//*
@media (min-width: 900px) {
    .top-banner {
        height: 120px; /* Slimmer profile for desktop *//*
    }
}

.top-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center; /* Keeps the middle of your image visible *//*
}
*/



.top-banner {
    width: 100%;
    height: 238px;
    /*height: 205px;*/
    background-color: #f0f0f0; /* Pick a color that matches your image background */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}


.top-banner img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* THIS IS THE KEY: it never crops */
}


/* The Menu Trigger Button */
/*
.menu-button {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 12px 24px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
*/

.menu-button {
    position: fixed; /* Changed from absolute to fixed */
    top: 10px;
    right: 15px;
    z-index: 1001; /* Make sure it stays above everything */
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* The Popup Overlay */
.overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95); /* Dark background */
}

/* Centering the buttons in the popup */
.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.overlay-content a {
    text-decoration: none;
    font-size: 16px;
    color: white;
    padding: 5px 30px;
    margin: 5px; /*Distance between buttons*/
    border: 1px solid #555;
    width: 120px;
    text-align: center;
    border-radius: 10px;
    transition: background 0.2s;
}

.overlay-content a:hover {
    background: #444;
}

/* Close Button */
.close-button {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 50px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

/* Main Content Area */
.content {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.center-text {
    text-align: center;
}
