/* GLOBAL STYLES */
* {
    box-sizing:border-box;
}

body{
    background-image:url('../img/background.jpg');
    background:cover;
    background-size:cover;
    color:white;
    overflow-y: auto;
    margin:0;
}

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

a{
    text-decoration:none;
    color:white;
}

/* NAV BAR */
.mobile-nav{
    display:none;
}

.nav-wrapper{
    background-color:#082c3d;
    padding:25px;
    position:sticky;
    top:0;
}

.desktop-nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border: 1px solid white;
    padding:10px 20px;
}

.desktop-nav img{
    width:40px;
}

.desktop-nav a{
    color:white;
    font-size:25px;
    font-family:"Hanken Grotesk", sans-serif;
    font-weight:lighter;
}

.desktop-nav a:hover{
    font-size:26px;
    transition:0.2s;
}

/* HOMEPAGE STYLES */
.page-title{
    text-align:center;
    font-family:"Sora", sans-serif;
    font-size:6em;
    letter-spacing:2px;
    text-shadow: 1px 1px 20px black;
    padding:10px;
}

.record-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:60px;
}

.record-buttons img{
    width:200px;
    margin:15px;
}

.container{
    text-align:center;
    font-family:"Hanken Grotesk", sans-serif;
    font-size:20px;
    text-shadow: 1px 1px 10px black;
}

.container p{
    opacity:0;
}

.container:hover p{
    opacity:1;
    transition:0.3s;
}

.container:hover img {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#nowPlaying {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    padding: 10px 20px;
    border-radius: 20px;
    font-family: "Roboto Mono", monospace;
    font-size: 14px;
    letter-spacing: 2px;
}

#trackName {
    font-weight: bold;
}

/* ABOUT PAGE STYLES */
.about-info{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:10px 200px 50px 200px;
}

.about-photo{
    width:auto;
    height:325px;
    margin-left:50px;
    margin-right:50px;
}

.about-text{
    background: rgba(0,0,0,0.7);
    border-radius:30px;
    padding:40px;
    font-family:"Hanken Grotesk", sans-serif;
    font-size:18px;
    line-height:1.6;
    margin-left:50px;
    margin-right:50px;
}

.contact-info{
    font-family:"Hanken Grotesk", sans-serif;
    background: rgba(0,0,0,0.7);
    margin-top:100px;
    padding:50px;
    text-align:center;
}

.contact-info a:hover{
    text-decoration:underline;
    transition:0.3s;
}

/* HUMAN SKILLS PAGE STYLES */
.skill-container{
    display:flex;
    justify-content:space-between;
    padding:20px;
    margin: 30px 200px 30px 200px;
}

.skills-image{
    width:300px;
}

.skills-text{
    background: rgba(0,0,0,0.7);
    border-radius:30px;
    padding:25px;
    width:850px;
}

.skills-text h4{
    font-size:20px;
    font-family:"Sora", sans-serif;
}

.skills-text p{
    font-family:"Hanken Grotesk", sans-serif;
}

/* AI SKILLS PAGE STYLES */
.ai-text{
    background: rgba(0,0,0,0.7);
    border-radius:30px;
    margin:50px 200px 50px 200px;
    padding:40px;
    font-family:"Hanken Grotesk", sans-serif;
}

.ai-samples{
    display:flex;
    margin:50px;
}

.sample-container{
    background: rgba(0,0,0,0.7);
    border-radius:30px;
    margin:25px;
    width:600px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:40px;
}

.sample-container embed, iframe{
    width:100%;
    height:400px;
}

.sample-container h4{
    text-align:center;
    font-size:20px;
    font-family:"Sora", sans-serif;
}

.sample-container p{
    padding-bottom:20px;
    font-family:"Hanken Grotesk", sans-serif;
}

/* SIDENAV */
    .sidenav {
        height:100%;
        width:0;
        position:fixed;
        z-index:1;
        top:0;
        left:0;
        background: rgba(0,0,0,0.7);
        overflow-x:hidden;
        transition:0.5s;
        padding-top:60px;
}

    .sidenav a {
        padding:8px 8px 8px 32px;
        text-decoration:none;
        font-family:"Hanken Grotesk", sans-serif;
        font-size:25px;
        color:white;
        display:block;
        transition:0.3s;
    }

    .sidenav a:hover {
        text-decoration:underline;
        font-size:26px;
        transition:0.3s;
    }

    .sidenav .closebtn {
        position:absolute;
        top:0;
        right:25px;
        font-size:36px;
        margin-left:50px;
    }


/* MOBILE STYLES */
@media screen and (max-width:1081px){
    body{
    background-image:url('../img/background_mobile.jpg');
    }
   /* NAV BAR */
    .desktop-nav{
        display:none;
   }
   .mobile-nav{
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:20px;
        border:1px solid white;
   }

   .mobile-nav .logo{
        width:40px;
   }

    i{
        color:white;
        size:100px;
        margin-right:10px;
    }

    /* HOMEPAGE STYLES */
    .page-title{
        font-size:45px;
        margin-top:160px;
    }

    .record-buttons img{
        width:80px;
    }

    /* ABOUT PAGE STYLES */
    .about-info{
        display:flex;
        flex-direction:column;
        align-items:center;
        padding:10px;
    }

    .about-photo{
        width:300px;
        height:auto;
    }

    .about-text{
        font-size:15px;
    }

    .contact-info a{
        text-decoration:underline;
    }
    
    /* HUMAN SKILLS PAGE */
    .skill-container{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        margin: 20px auto;
        width:100%;
        max-width:400px;
    }

    .skills-image{
        width:400px;
    }

    .skills-text{
        width:100%;
        max-width:400px;
        padding:20px;
        margin:10px auto;
    }

    /* AI SKILLS PAGE */
    .ai-text{
        margin:50px;
        padding:40px;
        width:auto;
    }

    .ai-samples{
        display:flex;
        flex-direction:column;
        align-items:center;
        margin:10px;
    }

    .sample-container{
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left:50px;
        margin-right:50px;
        padding:40px;
        width:auto;
    }
}