/* ALBEOLAMBDA - Gallery Page CSS */

body {
    margin: 0;
    padding: 0;
    background: #f0f8ff;
    font-family: 'Designer', sans-serif;
    color: lightsteelblue;
    background-image: url(https://file.garden/Zje4ZW9-iWrofMUK/madonna%20laida.png);
    background-repeat: no-repeat;
    background-size: 4000px, 1000px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

#header {
    padding: 20px;
    width: 1000px;
    height: 90px;
    margin: auto;
    position: relative;
    text-align: left;
}

#logo h1 {
    color: royalblue;
    font-size: 3.5em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#logo h2 {
    color: #e6f2ff;
    font-size: 1.5em;
    margin: 5px 0 0 0;
    font-weight: normal;
}

#menu {
    box-sizing: border-box;
    margin-top: 0px;
    margin-bottom: 0px;
    width: 1000px;
    height: auto;
    text-align: right;
    margin-left: auto;
    margin-right: auto;
}

#menu a {
    display: inline-block;
    padding: 7px 20px;
    margin: 1px;
    background-image: url(https://file.garden/Zje4ZW9-iWrofMUK/aero%20square%20buttons.png);
    background-size: 450px, 20px;
    background-repeat: no-repeat;
    background-position: center;
    color: lightgray;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: rgba(53, 78, 225, 0.8) 0 0 20px 3px;
    border-radius: 8px;
    font-size: 1.1em;
}

#menu a:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

hr {
    border: none;
    height: 0px;
    margin: 0;
}

#page {
    max-width: 1000px;
    margin: auto;
    padding: 30px;
    opacity: 100%;
}

#content {
    float: left;
    width: 100%;
    color: lightgray;
    border-radius: 15px;
    padding: 20px;
    box-shadow: rgba(53, 78, 225, 0.8) 0 0 90px 33px;
    margin-right: 20px;
    background-image: url(https://file.garden/Zje4ZW9-iWrofMUK/aero%20square%20for%20neocities.png);
    background-size: 5000px, 900px;
    background-repeat: no-repeat;
    background-position: center;
    backdrop-filter: blur(5px);
}

#content h2 {
    color: #e6f2ff;
    font-size: 2.2em;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    justify-items: center;
}

.gallery-grid img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.browse-section {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.browse-section h3 {
    color: #e6f2ff;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.archive-link {
    display: inline-block;
    padding: 3px 20px;
    background-image: url(https://file.garden/Zje4ZW9-iWrofMUK/aero%20square%20buttons.png);
    background-size: 450px, 20px;
    background-repeat: no-repeat;
    background-position: center;
    color: lightgray;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: rgba(53, 78, 225, 0.8) 0 0 20px 3px;
    font-size: 1.2em;
}

.archive-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    color: lightgray;
    font-size: 0.9em;
}

footer a {
    color: royalblue;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #header, #menu, #page {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    
    #logo h1 {
        font-size: 2.5em;
    }
    
    #menu a {
        display: block;
        margin: 5px auto;
        width: 80%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid img {
        width: 250px;
        height: 250px;
    }
}