/* font */
@font-face {
    font-family: frutiger;
    src: url(fontt/neuropol-x-cufonfonts-webfont/neuropol\ x\ free.woff);
}
:root{
    --red-gradient: linear-gradient(
        rgb(255, 229, 229) 0%,
        rgb(255, 102, 102) 50%,
        rgb(204, 0, 0) 53%,
        rgb(255, 229, 229) 100%
    );

    --orange-gradient: linear-gradient(
        rgb(255, 236, 204) 0%,
        rgb(255, 166, 77) 50%,
        rgb(204, 102, 0) 53%,
        rgb(255, 236, 204) 100%
    );

    --yellow-gradient: linear-gradient(
        rgb(255, 255, 204) 0%,
        rgb(255, 224, 102) 50%,
        rgb(204, 170, 0) 53%,
        rgb(255, 255, 204) 100%
    );

    --blue-gradient: linear-gradient(
        rgb(204, 238, 255) 0%,
        rgb(102, 179, 255) 50%,
        rgb(0, 92, 204) 53%,
        rgb(204, 238, 255) 100%
    );

    --indigo-gradient: linear-gradient(
        rgb(230, 224, 255) 0%,
        rgb(140, 118, 255) 50%,
        rgb(59, 42, 179) 53%,
        rgb(230, 224, 255) 100%
    );
}
/* overlay over the entire screen */
.overlay{
    background-image: url(photo/lines.png);
    background-repeat: repeat;
    background-attachment: scroll;
    pointer-events: none;
    opacity: 0.25;
    position: fixed;
    display: block;
    justify-content: center;
    align-items: center;
    inset: 0;
    z-index: 1;
} 
/*  */
body{
    background-image: url(photo/frutiger-aero-6.webp);
    background-position:fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.container{
    position: relative;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    height: 1111px;
    width: 1100px;
    margin: auto;
    justify-content: center;
    align-items: center;
    align-self: center;
    display: block;
    overflow: hidden;
}
h1{
    text-align: center;
    font-family: frutiger;
    font-size: 20px;
}
.banner{
    background-image: url(photo/visuals-Ku9hRU8PfeZlYlsk-TmKeTQ-t2480x520.jpg);
    background-size: 100% 100%;
    background-position: center;
    width: 1100px;
    height: 200px;
    border-radius: 10px;
    
}
.topbanner{
     /* original green stripe style kept for reference */
    background:linear-gradient(rgb(231, 253, 187) 0%,
    rgb(182, 233, 81) 50%, 
    rgb(122, 175, 18) 53%,
    rgb(231, 253, 187) 100%);
    height: 20px;
}
.bottombanner{
    /* original green stripe style kept for reference */
    background:linear-gradient(rgb(231, 253, 187) 0%,
    rgb(182, 233, 81) 50%, 
    rgb(122, 175, 18) 53%,
    rgb(231, 253, 187) 100%);
    height: 20px;
/*     
    background: linear-gradient(
        rgb(255, 0, 0) 0%,
        rgb(255, 127, 0) 16.66%,
        rgb(255, 255, 0) 33.33%,
        rgb(0, 255, 0) 50%,
        rgb(0, 0, 255) 66.66%,
        rgb(127, 0, 255) 100%
    ); */
    height: 20px;
}
nav{
    border:rgba(255, 255, 255, 0.25) ridge 2px;
    width: 13em;
    height: fit-content;
    border-radius: 20px;
    margin-left: 10px;
}
#nav-icon{
    width: 20px;
    height: 20px;
}
ul{
    list-style-type: none;
    display: flex;
    flex-direction: row;
}
#button{
    border-radius: 50px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 10px;
}
.home{
    background: var(--yellow-gradient);
}
.aboutme{
    background: var(--blue-gradient);
}
.project{
    background: linear-gradient(rgb(244, 214, 255) 0%,
    rgb(191, 123, 255) 50%, 
    rgb(118, 58, 184) 53%,
    rgb(244, 214, 255) 100%);;
}
.tv-shows{
    background: var(--orange-gradient);
}
.movies{
    background:var(--indigo-gradient);
}
.book-library{
    background: var(--red-gradient);
}
#button:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
#button:active{
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
a{
    color: white;
    text-decoration: none;
    margin-left: 3px;
}
.main{
    margin-left:15px;
    /* height: 9999px; */
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    /* max-height: 70vh; */
    padding: 5px;
    
}
.textbox{
    background-color: white;
    width: 400px;
    height: 300px;
    border-radius: 10px;
    overflow: scroll;
}  
.textborder{
    background: white;
    border: 2px ridge;
    border-radius: 10px;
}
.welcome-row{
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.welcome-block{
    display: flex;
    flex-direction: column;
}
/* clock section */
.clock-container{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 100%;
    margin-top: 12px;
    margin-left: 10px;
}
.timer-box{
    /* background: rgba(255, 255, 255, 0.45); */
    background:linear-gradient(rgb(244, 214, 255) 0%,
    rgb(191, 123, 255) 50%, 
    rgb(118, 58, 184) 53%,
    rgb(244, 214, 255) 100%);
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 8px 12px;
    min-width: 190px;
    text-align: center;
    font-family: frutiger;
    font-size: 16px;
    color: white;
}
/*  */
.itemcontrols{
    display: flex;
    flex-direction: row;
}
/* Welcome box css controls */
.welcome{
    background:linear-gradient(rgb(231, 253, 187) 0%,
    rgb(182, 233, 81) 50%, 
    rgb(122, 175, 18) 53%,
    rgb(231, 253, 187) 100%);
    height: 50px ;
    width: 399px;
    border-radius: 10px;
    margin-left:0.1em ;
    text-align: left;
    transform: translateY(-13px);
}
.welcometext{
    text-align: left;
    transform: translate(10px, 15px);
}
p{
    margin-left: 1em;
}
.welcomeimage{
    float: right;
    width: 80px;
    height: 80px;
    margin-right: 2.5em;
    transform-origin: center center;
    animation: tilt 3s ease-in-out infinite alternate;
}

@keyframes tilt {
    from {
        transform: rotate(-6deg);
    }
    to {
        transform: rotate(8deg);
    }
}
/*  */

/* Mini slider with the cool frutiger stuff */
.minisliderborder{
    border: dotted 1px;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    height: 50px;
    border-radius: 1em;
    width: 399px;
}
.green{
    border-radius: 1em;
    padding: 5px;
    background: linear-gradient(to left, #92e1ff, #0032db, #0689e4);
    display: inline-block;
    width: 399px;
    display: flex;
}
.slidercontent{
    background:white;
    border: dotted 1px rgba(0, 0, 0, 0.2);
    height: 40px;
    width: 390px;
    border-radius: calc(1em - 5px);
    display: flex;
    flex-direction: row;
    padding-right: 1em;
    overflow-x: hidden;
    margin: auto;
}
.slidercontent::-webkit-scrollbar{
    display: none;
}
.imagecarosel{
    display: flex;
    flex-direction: row;
    animation: spin 5s infinite linear; 
}
#sliderphoto{
    flex: 0 0 5em;
    width: 100px;
    height: 2em;
    margin: auto;
    background: transparent;
}
@keyframes spin {
    from {translate: 0;}
    to {translate: -100%;}
}
/* that took so long to figure out (an hour) */

/* Update logs wooooo */
#update-box{
    border: 2px ridge;
    border-radius: 10px;
    height: 200px;
    width: 399px;
    background-color: white;
    overflow: scroll;
}
.updatebanner{
    background-image: linear-gradient(rgb(225, 247, 247) 0%, 
    rgb(92, 211, 224) 50.52%,
    rgb(0, 161, 179) 53.119999%,
    rgb(178, 244, 247) 100%);
    height: 40px;
    width: 399px;
    margin-top: 0;
    transform: translateY(-13px);
}
.updlogtxt{
    text-align: left;
    margin-left: 5px;
    transform: translateY(15px);
}
.logtxt{
    margin: 0;
}
.updphoto{
    width: 20px;
    height: 20px;
    margin-right: 3px;
}
.updatetext{
    transform: translateX(-30px);
}
/* location box little pasazz */
.locationbr{
    margin-top: 0.5em;
    border-radius: 10px;
    height: 200px;
    width: 400px;
    
}

.location{
    background-image: linear-gradient(rgb(225, 247, 247) 0%, 
    rgb(92, 211, 224) 50.52%,
    rgb(0, 161, 179) 53.119999%,
    rgb(178, 244, 247) 100%);
    height: 50px;
    width: 410px;
    border-radius: 10px; 
    border: none;
    transform: translateY(-10px);

}
#locotxt{
    text-align: left;
    transform: translateY(20px);
    /* margin-left: 7px; */
}
.lobody{
    width: 370px;
    transform: translateY(-10px);
}

/* 
background:linear-gradient(rgb(244, 214, 255) 0%,
    rgb(191, 123, 255) 50%, 
    rgb(118, 58, 184) 53%,
    rgb(244, 214, 255) 100%);
     */
.right{
    display:grid;
    grid-template-columns: 1fr;
    row-gap: 0.25em;
    
}
.weatherForm{
    transform: translateY(-20px);
    margin-left: 50px;
    text-align: center;
    margin: 12px;
}
.card{
    margin-top: 12px;
    transform: translateY(-50px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    
    background-color: rgba(255, 255, 255, 0.5);
    width:400px ;
    height: 300px;
    margin-left: 11px;
    border: solid 2px black;
    border-radius: 5%;
    box-shadow: 5px 5px 5px rgb(127, 185, 255);
    overflow: hidden;
}
.cityInput {
    margin-top: 5px;
    margin-left: 5px;
    font-size: 15px;
    padding: 10px;
    border: 2px solid black; 
    border-radius: 2rem;
}
.weather-submit{
    padding: 10px;
    background-color: white;
    border: solid 2px black;
    border-radius: 2rem;
    cursor: pointer;
}
.weather-submit:hover{
    background-color: rgb(165, 207, 244);
    border: solid 2px black;
    border-radius: 2rem;
}
.cityDisplay{
    margin-top: 12%;
    margin-bottom: 0;
    font-weight: bold;
    font-size: 2rem;
}
.tempDisplay {
    font-size: 1rem;
    font-weight: bold;
}
.tempDisplay, .humidityDisplay, .descDisplay, .weatherEmoji, .errorDisplay{
    font-size: 1.5rem;
    margin: 5px 0;
}
.weatherEmoji{
    font-size: 3em;
    margin: auto;
}
.errorDisplay{ 
    margin-top: 0;
    font-size: 1.5rem;
} 

.waterbox{
    border: 2px ridge;
    border-radius: 10px;
    height: 200px;
    width: 399px;
    background-color: transparent;
    overflow: hidden;
    transform: translateY(-40px);
    margin-left: 10px;
    
}
.water-banner{
    background:linear-gradient(rgb(231, 253, 187) 0%,
    rgb(182, 233, 81) 50%, 
    rgb(122, 175, 18) 53%,
    rgb(231, 253, 187) 100%);
    height: 40px;
    width: 399px;
    margin-top: 0;
    transform: translateY(-13px);
    
}
#watertxt{
    text-align: left;
    margin-left: 12px;
    transform: translateY(15px);
}
.waterimg{
    width: max-content;
    height: 400px;
    margin: 0;
    padding: 0;
    transform: translateY(-15px);
    background-repeat: no-repeat;
    background-size: contain;
    
}
.dolphin{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}
.dolphin img{
    width: 180px;
    height: auto;
    
}