/* Global Styles */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html{
scroll-behavior: smooth;
}

body{
    background-color: #eb380d;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

main{
    margin: 0 auto; 
}

section {
    width: 100%;
    padding: 60px 0;
    position: relative;
    margin: 0;
}

img {
    max-width: 100%; 
    height: auto;
    display: block;
    border: none;
}

p{
    font-size: 110%;
}
/* Nav Styles */
#hamburger-menu{
    background-color: #fcb72c;
    padding: 1%;
    border-radius: 50%;
    position: fixed;
    top: 40px;
    right: 40px;
    cursor: pointer;
    z-index: 1002;
}
.navbar {
    display: none; 
    position: fixed;
    top: 0;
    right: -250px; 
    width: 250px;
    height: 100%;
    background-color: #315400;
    padding: 20px;
    z-index: 1001;
    transition: right 0.3s ease;
}

.navbar.open{
    right: 0;
    display: block !important;
}

#overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1000;
    display: none; /* hidden by default */
}

#overlay.open{
    display: block;
}

.navbar ul{
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 20%;
}
  
.navbar li {
    margin-bottom: 20px;
}
  
.navbar a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 40px;
    display: block; /* Makes entire area clickable, usability */
    padding: 5px 0; 
}
.navbar a:hover{
    color: #EB4254;
}
/* Home Styles */
#home-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #eb380d;
}

#home-page img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    /* Add a few pixels of the same color at the bottom of the image to help remove thin line breaking up the flow of home logo*/
    border-bottom: 3px solid #eb380d;
}

#camera-img{
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

#line-fix {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px; /* Height of the line to cover */
    background-color: #eb380d;
    z-index: 2;
}

#quote {
    margin: 10%;
    margin-bottom: 5%;
    display: inline-block;
    text-align: center;
    font-size: clamp(2rem, 8vw, 6rem); /* large & responsive */
    line-height: 1.2;
    color: #ffc0cb;
    font-family: 'Barriecito', cursive;
    text-align: center;
    overflow: visible;
}
  
/* About Me Styles */
#Hi:hover{
    font-size: 130%;
    color: #fcb72c;
}
#about-me{
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #eb380d, #ffc0cb);
    padding: 100px 20px;
    margin: 0;
}

#about-me img{
    max-width: 35%;
    height: auto;
    margin: 0% 5%;
}

#about-me p{
    margin: 5%;
    margin-left: 2%;
}

.about-me-copy1{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.about-me-copy2{
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
}

.about-me-works{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5%;
    margin-bottom: 0%;
}
.about-me-works h2{
    font-size: 200%;
    font-family: 'Beth Ellen';
    margin-bottom: 2%;
}
.about-me-works-sections{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2%;
}
.about-me-work-body{
    display: flex;
    flex-direction: column;
    text-align: center;
}
.about-button{
    width:100px;
    height: 30px;
    background-color: #315400;
    color: white;
}
.about-button:hover{
    background-color: #fcb72c;   
    color: #eb380d;
}
/* Art Styles */
#art{
    background: linear-gradient(to bottom, #ffc0cb, #770038);
}
#art h1{
    font-family: 'Beth Ellen';  
    font-size: 500%;
    text-align: center;
    color: #eb4254;
}
.art-gallery {
    column-count: 3;
    column-gap: 2%;
}
  
.art-gallery img {
    width: 100%;
    display: block;
    margin-bottom: 5%;
    cursor: pointer;
}

/* wasn't sure how to do this, had to get help from AI (shown in chat conversation */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(0, 0, 0, 0.8); /* Dark but also see-through background */
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000; /* Put it on top of everything else */
    padding: 20px;
    text-align: center;
}
  
.lightbox-img {
    max-width: 90%;
    max-height: 80vh;
}
  
.caption {
    color: white;
    margin-top: 12px;
    font-size: 1rem;
}
  
.close-btn {
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}
/* Fiber Art Styles */
#fiber-art{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #770038, #eb4254);    

}
#fiber-art h1{
    font-family: 'Beth Ellen';
    font-size: 500%;
    color: white;
}
.schoodie-container{
    margin: 2% 5%;
    display: flex;
    flex-direction: row;
}
.schoodie-container img{
    max-width: 60%;
    height: auto;
}
.schoodie-copy h2{
    font-size: 250%;
    font-family: 'Beth Ellen';
}
.schoodie-copy{
    flex-direction: column;
    color: white;
    margin: 5%;
}
.schoodie-copy img{
    max-width: 80%;
    height: auto;
    margin-top: 5%;
}

/* Digital Media Styles */
#digital-media{
    background: linear-gradient(to bottom, #eb4254, #eb380d);
    display: flex;
    flex-direction: column;    
}
#digital-media h1{
    font-family: 'Beth Ellen';
    font-size: 500%;
    text-align: center;
    line-height: 140%;
    color: #ffe057;
}
.web-dev{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.web-dev-header h2{
    font-family: 'Barriecito';
    font-size: 350%;
    line-height: 90%;
    text-align: center;
    margin-top: 3%;
    color: #ffe057;
}
.web-dev-header p{
    margin: 2% 5%;
    text-align: center;
    color: #ffe057;
}
.web-dev-container{
    display: flex;
    flex-direction: row;
    gap: 5%;
    margin: 2% 5%;
}
.web-dev-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2%;
    text-align: center;
    background-color: #315400;
    color: #ffc0cb;
}
.web-dev-box h3{
    font-size: 150%;
}
.web-dev-box p{
    margin: 5% 0%;
}
.web-dev-button{
    width:100px;
    height: 30px;
    background-color: #770038;
    color: white;
}
.web-dev-button:hover{
    background-color: #fcb72c;   
    color: #eb380d;
}
.graphic-design-container{
    display: flex;
    flex-direction: column;
    gap: 2%;
    padding: 1%;
}
.graphic-design-head h2{
    font-family: 'Barriecito';
    font-size: 350%;
    text-align: center;
    color: #ffe057;
}
.graphic-design-head h3{
    font-size: 250%;
    text-align: center;
    color: #ffe057;
}
.graphic-design-head p{
    margin: 2% 5%;
    color: #ffe057;
}
.graphic-design-project{
    display: flex;
    flex-direction: row;
    gap: 2%;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 3%;
}
.project-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.view-pfd-btn{
    width:100px;
    height: 30px;
    background-color: #ffc0cb;
    color: black;
}
.view-pdf-btn:hover{
    background-color: #fcb72c;   
    color: #eb380d;
}
.video-storytelling-container{
    display: flex;
    flex-direction: column;
}

.ad-lob-imgs, .project-image {
    width: 600px;
    height: auto;
    position: relative;
}

.slider-image {
    width: 100%;
    display: none;
}

.slider-image.active {
    display: block;
}
  
.slider-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #fcb72c;
    color: #eb380d;
    padding: 1%;
    border-radius: 20%;
    cursor: pointer;
}
  
.project-info {
    flex: 1;
    max-width: 600px;
}
  
.project-info h3 {
    margin-top: 0;
    font-size: 1.5rem;
}
  
.view-pdf-btn {
    display: inline-block;
    margin-top: 1%;
    padding: 0.5rem 1rem;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}
.video-storytelling-container h2{
    font-family: 'Barriecito';
    font-size: 350%;
    text-align: center;
    color: #ffe057;
}
.video-body{
    justify-content: center;
    align-items: center;
    text-align: center;
}
.video-body p{
    margin: 3%;
    color: #ffe057;
}

/* Footer Styles */
footer{
    display: flex;
    align-items: center;
    justify-content: space-evenly; 
    margin: 3%;
}

.social-icons a {
    color: black;
    font-size: 150%;
    margin: 0 1rem;
    transition: color 0.3s;
    text-decoration: none;
}
  
.social-icons a:hover {
    color: #ffe057; 
}
@media (max-width: 768px) {
    #camera-img{
        margin-bottom: 0;
    }
    .about-me-copy1, .about-me-copy2{
        flex-direction: column;
    }

    #about-me img{
        max-width: 80%;
        height: auto;
    }
    #home-page img {
        width: 110vw;
        height: auto;
        object-fit: cover;
        transform: scale(1.1);
        margin-top: 10vh;
    }
    #quote{
        margin-bottom: 0;
        padding-bottom: 0;
    }
    #line-fix {
        position: absolute;
        top: 355px;
        left: 0;
        width: 100%;
        height: 5px; /* Height of the line to cover */
        background-color: #eb380d;
        z-index: 2;
    }
    body {
        overflow-x: hidden;
    }
    .about-me-works-sections{
        flex-direction: column;
    }
    .about-button{
        margin-bottom: 5%;
    }
    .art-gallery {
      column-count: 1;
    }
    .schoodie-container{
        flex-direction: column;
    }
    .schoodie-container img{
        width: 100%;
        height: auto;
        display: block;
        margin: 5% auto;
    }
    .web-dev-container{
        flex-direction: column;
        margin: 5%;
    }
    #digital-media p{
        margin: 10%;
    }
    .ad-lob-imgs{
        max-width: 80%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    .project-image{
        max-width: 80%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    .graphic-design-project h3{
        font-size: 300;
    }
    .project-info{
        gap: 0;
    }
    iframe{
        max-width: 80%;
        height: 260px !important;
        display: block;
        margin: 0 auto;
    }
    footer{
        flex-direction: column;
        gap: 10px;
    }
}

