@charset "UTF-8";
/* CSS Global Document for site */
/* 1 Spetember 2026 0311 MST: made minor fixes to navbar, and image positioning
used Google Gemini for more allusive problems; Gemini helped resolve the navbar not foxong properly
and made style suggestions for the navbar appearance that I accepted and added*/
/* Navbar Container */ 
.navbar { 
    position:sticky; 
    top: 15px; 
    left: 25%;
    transform: translateX(-10%); 
    width: 90%;
    max-width: 1100px;
    height: auto;
    min-height: 60px;
    box-sizing: border-box;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5em;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    
    padding: 10px 25px;
    font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, sans-serif;
    font-size: 1.0em;
    color: rgba(255, 251, 251, 1.00);
    
    border-radius: 25px; 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    box-shadow: 4px 12px 36px rgba(31, 38, 15, 0.5); 
    
    z-index: 1000; 
    overflow: visible;
}

/* Links within the navbar */
.navbar a { 
    font-size: 16px; 
    color: #FCFDFB;
    font-family: Gotham, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-align: center; 
    padding: 10px 14px; 
    text-decoration: none; 
    border-radius: 25px;
    transition: color 0.3s ease, background 0.3s ease;
}

/* Dropdown Container */
.drop { 
    position: relative;
    display: inline-block;
    font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, sans-serif;
}

/* Dropdown Button */
.drop .dropbutton { 
    font-size: 16px; 
    border: none; 
    outline: none; 
    color: #FCFDFB; 
    background-color: transparent;
    padding: 10px 16px; 
    text-align: center;
    margin: 0; 
    border-radius: 25px;
    cursor: pointer;
}

/* Hover effects */
.navbar a:hover, 
.drop:hover .dropbutton { 
    color: #05c8ff; 
}

.dropbutton:hover, 
.dropbutton:focus {
    background: linear-gradient(155deg, #9d13ff, rgba(0, 0, 0, 0.8));
}

/* Dropdown Content */
.drop-content { 
    display: none; 
    font-size: 18px;
    font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, sans-serif;
    position: absolute; 
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(155deg, rgba(20, 20, 20, 0.95), rgba(0, 0, 0, 0.3));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    min-width: 160px; 
    border-radius: 15px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.4); 
    z-index: 1001; 
    text-align: center;
    overflow: hidden;
}

/* Links inside dropdown */
.drop-content a { 
    font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, sans-serif;
    color: #FCFDFB; 
    padding: 12px 16px;
    text-decoration: none; 
    display: block; 
    text-align: center;
    border-radius: 0;
}

/* Dropdown hover */
.drop-content a:hover { 
    background-color: #e6f6db;
    color: #111111;
} 

/* Show dropdown on hover */
.drop:hover .drop-content { 
    display: block; 
}

.show {
    display: block;
}

/* Input search field */
.navbar input[type="text"] {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3); 
    border-radius: 15px;
    font-size: 14px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.3);
    outline: none;
}

.navbar input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 0.8em;
        padding: 15px;
        top: 10px;
        width: 95%;
    }

    .drop-content {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 5px;
    }

    .navbar input[type="text"] {
        width: 100%;
        box-sizing: border-box;
    }
}
