/*Main Style - All pages*/
@import url('https://fonts.googleapis.com/css2?family=Caladea:ital,wght@0,400;0,700;1,400;1,700&family=Fredoka:wght@300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body{
    display:flex;
    position:relative;
}

    /*Navigation Sidebar*/
    @media screen and (max-width: 450px) {
        .sidebar{
            display:none;
        }

        main{
            position:static;
        }
    }
    
    .sidebar{
        display:flex;
        flex-direction: column;
        background-color:#020147;
        height: 100rem;
        width: 200px;
        margin:-10px 50px -10px -10px;
        position: fixed;
    }

    nav{
        display:flex;
        flex-direction: column;
        margin: 40px;
    }

    nav a{
        text-decoration: none;
        color:white;
        padding: 5px;
    }

    .logo{
        width: 150px;
        align-self: center;
        margin-top: 25px;
    }

    /*Main Content*/
    

    main{
        position:absolute;
        left: 200px;
        margin: -10px;
        padding: 6vh 5vw;
        width: calc(90vw - 200px); /* Fill the space from the left edge of the sidebar to the right edge of the viewport */
    }

    #luxe-main{
        font-family:'Raleway', serif;
        font-weight: 400;
        background-color:#231f20;
        color: white;
    }

    #luxe-main h1, #luxe-main h2{
        font-weight: 700;
    }

    #economycarrentals{
        font-family:'Inter', sans-serif;
        font-weight: 400;
        background-color: #eeeeee;
    }

    #economycarrentals h1, #economycarrentals h2{
        font-weight: 800;
    }
    
    #adventurestory{
        font-family:'Fredoka', sans-serif;
        font-weight: 400;
    }

    h1{
        color:#1E37CC;
        font-size: 3rem;
        text-wrap:wrap;
        margin: 0px 0px 25px 0px;
    }

    h2{
        font-size: 2em;
        font-style: italic;
        margin-top: -25px;
    }

    h3{
        font-size:1.3em;
        margin: 0px 0px 10px 0px;
    }

    h4{
        font-size: 1em;
        margin:0px 0px 10px 0px;
    }

    h5{
        font-size: 1em;
        font-style: italic;
        margin:0px;
        text-wrap:wrap;
        color: lightgray;
    }

    .button{
        border-radius: 20px;
        border-color: black;
        background-color: black;
        color:white;
        padding: 10px 25px;
        margin: 20px 0px;
    }

    a .button{
        text-decoration:none;
    }

    #orange-button-section{
        justify-content:center;
    }

    #orange-buttons {
        width: 65%;
        display:flex;
        justify-content:space-between;
    }

    .section-style-main {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5% 5%;
        border-top: 1px solid lightgray;
        border-bottom: 1px solid lightgray;
    }

    .section-style-2 {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        padding: 5% 5%;
        border-top: 1px solid lightgray;
        border-bottom: 1px solid lightgray;
    }

    .section-style-2 div{
        display:flex;
        justify-content: flex-end;
    }

    .section-style-1{ /* for the tan little box sections*/
        background-color:#f1dec7;
        padding: 25px 25px 25px 25px;
        margin: 15px 30px 15px 0px;
        min-width: 300px;
        max-width: 30vw;
    }

    .adjust-left{
        min-width: 20%;
        
    }


/*Homepage*/
#intro{
    display:flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

#name-large{
    font-size:5rem;
    padding-bottom: 25px;
}

#profile-photo{
    width: 275px;
}



/*Portfolio*/
#container-portfolio{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
}

#container-portfolio a{
    text-decoration:none;
}

.portfolio-display{
    display:flex;
    flex-direction: column;
    width:200px;
    background-color:black;
    color:white;
    margin: 20px;
}

.portfolio-display-label{
    padding: 20px;
}

#luxe-restaurant{
    position:relative;
}

#economy-car{
    position:relative;
}

#adventure-story{
    position:relative;
}

.thumbnail{
    height: 200px;
    width: 200px;
    object-fit: contain;
}

@media screen and (min-width: 880px) {
    #luxe-restaurant{
        top: 100px;
    }
    
    #economy-car{
        top:500px;
    }
    
    #adventure-story{
        top: 200px;
    }
}

/*About*/
#container-about{
    display:flex;
    flex-wrap: wrap;

}

#box1-about{
    display:flex;
    flex-direction: column;
}

/*Contact*/
#contact-container{
    display:flex;
    flex-direction: column;
    align-items:flex-start;
}

#contact-container div{
    padding-bottom: 10px;
}

.contact-label{
    font-size:0.8em;
}

/*Porfolio Details - All*/

/*Portfolio Details - Luxe Restaurant*/
.luxe-img{
    object-fit: cover;
    max-width:80%;
    padding: 5% 5% 5% 0%;
}

#icon-section{
    flex-direction: column;
}

#icon-section p{
    text-align: center;
}

#moodboards-div{
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    padding-left: none;
}

.moodboard{
    max-width: 40%;
}

/*Portfolio Details - Economy Car Rentals*/


/*Portfolio Details - My Adventure Story*/
.story-img{
    object-fit: cover;
    max-width: 80%;
    height: auto;
}

    /*Intro section*/
    #img-series-1{
        display:flex;
        flex-wrap: nowrap;
        margin-right: 20%;
    }

    #img-series-1 .story-img{
        /*border: 1px black solid;*/

        transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25); /* Default drop shadow on hover */
    }

    #img-series-1 #story-img-2, #img-series-1 #story-img-3, #img-series-1 #story-img-4{
        margin-left:-70%;
    }

    #img-series-1 #story-img-1{
        z-index: 1;
    }

    #img-series-1 #story-img-2{
        z-index: 2;
    }

    #img-series-1 #story-img-3{
        z-index: 3;
    }

    #img-series-1 #story-img-4{
        z-index: 4;
    }

    #img-series-1 #story-img-1:hover,  #img-series-1 #story-img-2:hover, #img-series-1 #story-img-3:hover, #img-series-1 #story-img-4:hover{
        z-index: 5;

        transition: box-shadow 0.2s ease-in-out;

        transform: scale(1.02);
        filter: brightness(1.05);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Default drop shadow on hover */
    }


    /*3 GIF section*/
    #gif-section {
        display: flex;
        position: relative; /* Positioning necessary for arrows */
        padding: 5% 10% 1% 10%;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
    }

    .gif-left, .gif-group-right {
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .gif-left {
        flex-basis: 50%;
        text-align: center;
    }

    .gif-group-right {
        flex-basis: 50%;
        justify-content: space-between;
    }

    .gif-container {
        overflow: hidden;
    }

    .gif-left p {
        margin-top: 10px;
        margin-bottom: 10%;
        width: 80%;
        align-self: center;
    }

    .gif {
        margin-bottom: 10%;
        object-fit: cover;
        width: 80%;
        height: auto;
        transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    }

    .gif-container:hover {
        overflow: visible;
    }

    .gif:hover {
        transform: scale(1.2);
        filter: brightness(1.05);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25); /* Default drop shadow on hover */
    }

    /* Red drop shadow for pirates-win on hover */
    #pirates-win:hover .gif {
        box-shadow: 0px 4px 10px rgba(200, 0, 0, 0.5); /* Red shadow */
    }

    /* Green drop shadow for pirates-lose on hover */
    #pirates-lose:hover .gif {
        box-shadow: 0px 4px 10px rgba(0, 200, 0, 0.5); /* Green shadow */
    }

    /* Arrow class style */
    .arrows {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none; /* Prevent interaction with arrows */
        opacity: 1; /* Start fully visible */
        transition: opacity 0.2s ease-in-out; /* Add fade transition to arrows */
    }

    /* Media query to hide arrows on tablet and smaller screens */
    @media (max-width: 1024px) {
        .arrows {
            display: none; /* Hides the arrows */
        }
    }

    /*AR section*/

    #video-section{
        padding: 4% 5% 0 5%;
    }

    video {
    width: 60%;
    align-self: flex-end;
    /* Ensure the video displays the poster frame initially */
    background-color: white;
    }


