body {
    padding: 0;
    margin: 0;
    background-color: black;
    color: white;
    display: flex;
}

p {
    font-family: "Gotu", sans-serif;
    font-size: 1.05rem;
}

nav {
    background-color: black;
    padding: 1% 1.8%;
    margin-top: 0px;
    display: flex;
    top: 0;
    left: 0;
    right: 0;

    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
    text-transform: uppercase;
    font-weight: 700;
    position: fixed;
    z-index: 1000;

    transition: all .05s;
}

nav a {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    padding: .5em 2em;
}

nav a:hover,nav a.active:hover {
    font-style: italic;
}

nav a.active {
    font-style: italic;
}

.menu-toggle {
    display: none; /* Initially hide for larger screens */
    cursor: pointer;
    padding: 3%;
    font-size: 1.5em;
}

@media (max-width: 700px) {
    nav a {
        font-size: 0.8em;
    }

    nav {
        padding: 1% 1%;
    }

    .menu-toggle {
        display: block; 
    }

    #nav-links {
        display: none; 
        
    }

    #nav-links.active {
        display: flex;
        flex-direction: column; 
    }

}


.content-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
}

.home-header-container {
    margin: auto;
    margin-top: 6%;
    display: flex;
    align-items: center;
}

.header-text {
    flex: 1;
    box-sizing: border-box;
    max-width: 80%;
}

.header-text h1 {
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
    text-transform: uppercase;
    margin: 0;
    font-size: 10vw;
    line-height: 80%;
    margin-top: -5px;
    margin-left: 8%;
}

.gif-section {
    flex: 1;
    box-sizing: border-box;
    display: flex; 
    justify-content: center; 
    align-items: center;
    max-width: 100%;
}

.gif-section img {
    max-width: 100%;
    height: 84vh;
    object-fit: contain;
}

.page-title {
    margin-top: 30%;
    max-width: 100%;
    padding-left: 8%;
}

.style-page-title {
    margin-top: 30%;
    max-width: 100%;
    padding-left: 8%;
}

.career-page-title {
    margin-top: 30%;
    max-width: 100%;
    padding-left: 8%;
}

#life {
    margin-top: 45%;
    max-width: 100%;
    padding-left: 15%;
}

.page-title-first {
    margin-top: 33%;
    padding-left: 11%;
}

#life h1, .page-title-first h1, .page-title  h1, .style-page-title h1, .career-page-title h1 {
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
    font-weight: 300;
    font-size: 8em;
    text-transform: uppercase;
    line-height: 12%;
    margin-top: 0; 
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 50px 50px 300px;
}

.page-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 100px 0px 300px;
}

.columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 3%;
    margin-bottom: 3%;
}

.column {
    width: 48%;
}

.column p {
    margin: 0px;
}

q {
    font-size: 2.7em; 
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
    font-weight: 200;
    margin: 0px;
    padding-right: 25px;
}

.text-container img {
    max-width: 100%;
    height: auto;
}

.speaker {
    padding: 5px 0;
    margin-top: 0;
}

.image-container {
    display: flex;
    justify-content: left;
    max-width: 100%;
}


.header {
    max-width: 100%;
}

.image-container #mother {
    max-height: 100%; 
    max-width: 60%; 
    object-fit: cover;
    align-self: flex-end;
}

.image-container #bottom {
    max-height: 100%; 
    max-width: 100%; 
    object-fit: cover;
    margin-top: 25px;
}

.image-container #top {
    max-height: 100%; 
    width: 100%; 
    object-fit: cover;
    margin-top: 0px;
}

.caption {
    font-size: 0.4em;
}

.horizontal-img-container {
    padding-left: 4.8%;
    max-width: 100%;
}   

.horizontal-img {
    width: 75%;
    object-fit: cover;
}

footer {
    color: white;
    margin-bottom: 5%;
    margin-top: 5%;
    padding-left: 62px; 
    overflow: hidden;
}

footer h3 {
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
    font-size: 2em;
    font-weight: 200;
    margin-bottom: 2px;
}

footer a {
    text-decoration: underline;
    color: white;
}

footer p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 0.75em;
}

.sean {
    text-align: left;
}


.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    min-width: 160px;
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 8% 15%;
    text-decoration: none;
    display: block;
    font-size: 0.9em;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 1100px) {
    q {
        font-size: 2.5em; 
    }
    
}

@media screen and (max-width: 1000px) {
    .text-container, .page-text-container {
        align-items: center;
        margin: auto;
    }

    .text-container {
        padding: 0% 20%;
    }

    .home-header-container {
        margin-top: 15%;
        align-items: center;
        justify-content: center;
        max-width: 100%;
    }

    .header-text {
        box-sizing: border-box;
        text-align: center;
        margin: auto;
    }

    .header-text h1 {
        margin-left: 0;
    }

    .page-text-container {
        padding: 0% 20%;
    }

    .columns {
        flex-direction: column; 
        align-items: center;
    }

    .column {
        width: 100%; 
        margin-bottom: 20px;
    }

    .horizontal-img-container {
        padding: 0 20%;
    }   

    .horizontal-img {
        max-width: 100%;
        width: auto;
    }

    .content-container {
        max-width: 100%;
    }

    .gif-section img {
        height: 400px;
    }

    footer{
        padding: 0 20%;
    }
}

@media screen and (max-width: 900px) {
    .header-text h1 {
        line-height: 82%;
    }
}

@media (max-width: 700px) {
    .home-header-container {
        flex-direction: column; 
        align-items: center;
        position: relative;
    }

    .header-text {
        max-width: none; 
        margin: 0; 
        padding: 0; 
        text-align: center; 
    }

    .header-text h1 {
        margin-left: 0; 
        font-size: 8em;
        line-height: 80%;
    }

    .gif-section img {
        max-width: 100%;
        height: 600px;
    }

    .page-title {
        margin-top: 28%;
    }

    .career-page-title {
        margin-top: 30%;
    }

    .style-page-title {
        margin-top: 45%;
    }
}

@media screen and (max-width: 780px) {

    .page-title h1, .page-title-first h1, .style-page-title h1, .career-page-title h1, #life h1 {
        font-size: 6em;
    }

    p {
        font-size: 0.9em;
    }

    q {
        font-size: 2em; 
    }

    .caption {
        font-size: 0.2em;
    }

    footer h3 {
        font-size: 1.5em;
    }

    footer p {
        font-size: 0.6em;
    }
    
}


@media screen and (max-width: 600px) {

    .header-text h1 {
        font-size: 6em;
        margin-left: 0; 
        margin-bottom: 20px;
        line-height: 60%;
    }

    .home-header-container {
        flex-direction: column; 
        align-items: center;
        position: relative;
    }

    .header-text {
        max-width: none; 
        margin: 0; 
        margin-top: 5%;
        padding: 0; 
        text-align: center; 
    }

    /* .gif-section img {
        max-width: 600px;
        height: 530px;
    } */


    .page-title h1, .page-title-first h1, .style-page-title h1, .career-page-title h1, #life h1 {
        font-size: 4em;
    }

    .page-title-first {
        margin-top: 45%;
    }

    .dropdown-content a {
        font-size: 0.75em;
    }

    .dropdown-content {
        min-width: 100px;
    }

    .page-text-container {
        padding: 0% 15%;
    }

    .horizontal-img-container {
        padding: 0% 15%;
    }

}

@media (max-width: 500px) {

    q {
        font-size: 1.8em; 
    }

    .caption {
        font-size: 5px;
    }

    footer h3 {
        font-size: 1em;
    }

    footer p {
        font-size: 0.3em;
    }

    .header-text h1 {
        margin-left: 0; 
        line-height: 65%;
        font-size: 5.5em;
    }

    .gif-section img {
        max-height: 380px;
    }

    .style-page-title, .career-page-title {
        margin-top: 48%;
    }
}

@media (max-width: 380px) {

    .header-text h1 {
        margin-left: 0; 
        font-size: 5em;
        line-height: 60%;
    }

    .gif-section img {
        max-height: 300px;
    }

}



