:root {
    --dark-blue: #081269;
    --purple: #e0bcff;
    --light-blue: #9ffcff;
    --bright-blue: #1a00ff;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    scrollbar-width: none;          
    -ms-overflow-style: none;    
    background-color: var(--dark-blue);   
}

html::-webkit-scrollbar, body::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

body {
    font-size: 18px;
    font-family: "Cousine", monospace;
    font-weight: 400;
    color: var(--light-blue);
    font-style: normal;
    text-align: center;
}

/* container flexbox */

.big-container {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    width: 100%;
    background-color: var(--dark-blue);
}

.left-side {
    display: flex;
    background-color: var(--bright-blue);
    min-height: 100vh;
    width: 40vw;  
    background-image: url("../img/dash.jpeg");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    position: fixed;
}


.right-side {
    margin-left: 40vw;
    display: flex;
    flex-direction: column;
    width: 60vw;
    padding: 10px;
    background-color: --var(--dark-blue); 
    overflow-y: auto;
}

/* ASCII Header Styling */

.ascii-header2 {
    display: flex;
    font-size: 1.5vw; 
    white-space: pre;
    text-align: center;
    overflow-x: hidden;
    overflow-y: hidden;
    max-width: 100%;
    color: var(--light-blue);
    padding: 0 20px;
}

.ascii-header a {
    text-decoration: none; 
    color: inherit; 
}

/* navigation styling */

nav {
    display: flex;
    width: 100%;
    flex-direction: column;
    background-color: var(--dark-blue);
    color: var(--light-blue);
    font-size: 22px;
    font-family: "Cousine", monospace;
    font-weight: 400;
    padding: 0 30px;
    margin-bottom: 20px;
}

nav ul {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    list-style: none; 
    padding: 0; 
    margin: 0; 
    display: flex;
    color: var(--light-blue);
}

nav a {
    color: var(--light-blue);
    text-decoration: none;
}

/* content styling */

#content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 auto;
    min-height: 0;
    padding: 30px;
    margin: 10px 0;
    width: 100%;
    border-radius: 0px;
    border: 1px solid var(--bright-blue);
}

#content h2 {
    font-size: 60px;
}


/*footer syling */

.footer p {
    font-size: 20px;
    margin: 0px;
    padding: 20px;
}


.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    color: var(--bright-blue);
    margin-top: auto;
}

.footer-icons {
    display: flex;
    flex-direction: row;
}


h1 {
    font-size: 35px;
    margin: 0px;
    text-align: left;
}

h2 {
    font-size: 40px;
    margin: 0px;
}

h3 {
    font-size: 30px;
    margin: 0px;
    margin: 0px 0px 20px 0px;
}

a {
    color: var(--white);
    text-decoration: none;
}



.contact-link {
    font-size: 20px;
    color: var(--light-blue);
}

/*media player*/

.mpc-player {
    width: 100%;
    border: 2px solid #999;
    background-color: #e5e5e5;
    font-family: Tahoma, sans-serif;
    font-size: 12px;
    box-shadow: 2px 2px 10px #888;
    margin: 20px auto;
  }
  
  .mpc-header {
    background-color: #0d2b5d;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 4px 8px;
    align-items: center;
  }
  
  .mpc-buttons button {
    background: #ccc;
    border: 1px solid #888;
    margin-left: 4px;
    width: 16px;
    height: 16px;
    font-size: 10px;
    cursor: pointer;
  }
  
  .mpc-body {
    padding: 10px;
    background-color: #f4f4f4;
  }

/* gallery w responsive grid*/

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 40px; 
    padding: 16px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease; 
}

.gallery-item img:hover {
    filter: invert(100%);
} 


.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  color: var(--light-blue);


}

.fa:hover {
  opacity: 0.7;
}


.about-img {
    max-width: 35%;
    height: auto;
    float: left;
    margin: 0 20px 20px 0;
}

.about {
    text-align: left;
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-blue);
}


@media (max-width: 853px) {
    .left-side {
        display: none !important;
        position: static !important;
        width: 0 !important;
    }

    .right-side {
        margin-left: 0;
        width: 100% !important;
    }

    .ascii-header2 {
        display: block;
        text-align: center;
        margin: 0 auto;
        white-space: pre-wrap;
        font-size: 2.2vw;
    }

    .gallery {
        grid-template-columns: 1fr;  
        gap: 16px;
        padding: 8px;
    }

    .gallery-item img {
        min-height: 120px; 
    }

    .about-img {
        max-width: 90%;
        width: 100%;
        float: none;
        display: block;
        margin: 0 auto 20px auto;
    }

    nav {
        padding: 0 20px;
    }
    
}


