/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: url('/home/franklin/Downloads/Webpages/Projects/Summer 24/Images_Storytelling/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

header {
    background: rgba(0, 0, 0, 0.7);
    color: gold;
    padding: 2px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .title {
    display: flex;
    align-items: center;
}

/* ========================================
   HEADER LOGO SIZE (Desktop)
   Current: 156px height (increased 20%)
   To adjust: Change height value
   ======================================== */
header .title img {
    height: 250px;
    width: auto;
    max-width: 600px;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: lighten;
    margin: 0;
    padding: 0;
    display: block;
}

header .title h2 {
    margin: 0;
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: gold;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffcc00;
}

main {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
}

section {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Optional: adjust height as needed */
}

.job {
    margin-bottom: 20px;
}

.job h4 {
    margin: 0 0 5px;
    font-size: 1.2em;
    color: #ffcc00;
}

.job span {
    display: block;
    margin-bottom: 10px;
    color: #ccc;
}

.job ul {
    list-style: disc inside;
    margin: 0;
    padding: 0;
}

.job ul li {
    margin-bottom: 10px;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.image-gallery img {
    max-width: 30%;
    margin: 10px;
    border: 2px solid gold;
    justify-content: center;
    position: center;
    height: 200px;
    object-fit: cover;
    align-items: center;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.15);
}

footer {
    text-align: center;
    padding: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    position: fixed;
    width: 100%;
    bottom: 0;
}
/* Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
}

/* Header Toggle Button - Hidden on Desktop */
.header-toggle {
    display: none;
}

/* Responsive Design for Header */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px 15px;
        gap: 8px;
        overflow: hidden;
        align-items: center;
        position: relative;
        transition: all 0.3s ease;
    }

    /* Header Toggle Button - Mobile Only */
    .header-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 20px;
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid gold;
        border-top: none;
        border-radius: 0 0 20px 20px;
        color: gold;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        z-index: 1001;
        transition: all 0.3s ease;
    }

    .header-toggle:hover {
        background: rgba(255, 215, 0, 0.2);
    }

    .header-toggle .toggle-icon {
        transition: transform 0.3s ease;
    }

    /* Collapsed Header State */
    header.collapsed {
        padding: 8px 15px;
    }

    header.collapsed .title {
        display: none;
    }

    header.collapsed nav ul {
        gap: 5px;
    }

    header.collapsed nav ul li {
        font-size: 0.8em;
    }

    header.collapsed .header-toggle .toggle-icon {
        transform: rotate(180deg);
    }

    header .title {
        width: 100%;
        justify-content: center;
        max-height: none;
        transition: all 0.3s ease;
    }

    /* ========================================
       HEADER LOGO SIZE (Mobile)
       Current: 250px height (matches desktop)
       To adjust: Change height value
       ======================================== */
    header .title img {
        height: 250px !important;
        max-width: 600px !important;
        width: auto !important;
        object-fit: contain;
    }

    nav {
        width: 100%;
    }

    nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    nav ul li {
        margin: 0;
        font-size: 0.85em;
    }
}




