/* style.css - Basic CSS for styling your website. */

html, body {
    height: 100%; /* Ensure html and body take full height */
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif; /* Using Inter as requested */
    background-color: #f4f4f4;
    color: #333;
}

/* New class to prevent body scrolling when mobile menu is open (still useful for fixed header/footer) */
body.no-scroll {
    overflow: hidden;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1px;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 100%; /* Ensures header spans full width */
    box-sizing: border-box; /* Include padding in width */
}

.sidebar {
    margin: 0;
    padding: 0;
    width: 200px;
    background-color: #f1f1f1;
    position: absolute;
    height: 100%;
    overflow: auto;
}

.sidebar a {
    display: block;
    color: black;
    padding: 16px;
    text-decoration: none;
}
 
.sidebar a.active {
    background-color: #04AA6D;
    color: white;
}

.sidebar a:hover:not(.active) {
    background-color: #555;
    color: white;
}

div.content {
    margin-left: 200px;
    padding: 1px 16px;
}

@media screen and (max-width: 700px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    .sidebar a {
        float: left;
    }
    div.content {
        margin-left: 0;
    }
}

@media screen and (max-width: 300px) {
    .sidebar a {
        text-align: center;
        float: none;
    }
}
/* Main Content Area */
div.content {
    padding: 1px 16px;
    min-height: calc(100vh - 100px);
    box-sizing: border-box;
    padding-top: 20px;
    background-color: #fbfeffb3;
}
main.content-area {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px; /* Existing padding for content sections */
    max-width: calc(100% - 40px); /* Adjust max-width within the content div */
    margin: 0 auto; /* Center content within its div */
}



h2 {
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 0px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
}

/* Form Styling (for Contact and Login) */
form {
    margin-top: 20px;
}

form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

form button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #0056b3;
}

/* Mobile Menu Toggle Button (Removed from HTML, but keeping CSS for reference if needed later) */
.menu-toggle {
    display: none; /* Always hidden now */
}

/* New style for hidden photo grid items - Added !important */
.photo-grid-item.hidden {
    display: none !important; 
}


