@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
    color: #202a34;
}

body {
    overflow: hidden;
}

html {
    width: 100%;
    overflow-x: hidden;
    position: static;
}

ul,
ol {
    margin: 0 0 0 15px;
    padding: 0;
}


ul li {
    list-style: square;
}

h1,
h2,
h3 {
    color: #fff;
    text-shadow: 2px 2px 5px rgb(63, 61, 61, .5);
    text-align: center;    /* centers the text */
    max-width: 600px;      /* set whatever value you want */
    margin: 0 auto;        /* centers the element itself */
}

h1 {
    font-size: 20px;
    font-weight: 400;
}

h2 {
    font-size: 28px;
    font-weight: 900;
    line-height: 30px;
}

h3 {
    color: #fff;
    text-shadow: 2px 2px 5px rgb(63, 61, 61, .5);
    /* padding: 10px; */
    font-size: 18px;
    font-weight: 400;
}

.underline {
    /*text-decoration: underline;*/
    font-weight: 800;
}
  

.logoCont {
    padding: 0 0 82px 0;
}

.sideNav {
    width: 300px;
    height: 100%;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 102;
    margin: auto;
    padding: 50px;
    z-index: 1;
    left: 0;
}

.logo {
    width: 200px;
    height: 200px;
    background: url(../img/Self-Portrait-3_200x200.png) 0 0 no-repeat transparent;
    border-radius: 500px;
    margin: auto;
    align-items: center;
    justify-content: center;

}

.menu {
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin: auto;
}

.footer {
    bottom: 0;
    margin: auto;
    position: absolute;
    align-items: center;
    justify-content: center;
}

.socialIcon {
    display: inline-block;
    position: relative;
    list-style: none;
    padding: 0;
    justify-content: space-around;
    margin: 0 10px 40px 10px;
}

.socialIcon-mobile {
    display: block;
    list-style: none;
    margin: auto;
    padding-top: 20px;
}

.socialIcon:hover {
    transform: scale(1.1);
    background-color: rgb(255, 123, 0);
    transition: all 0.3s;
}

.socialIcon-mobile:hover {
    transform: scale(1.1);
    background-color: rgb(255, 123, 0);
    transition: all 0.3s;
}

.social-mobile {
    display: none;
}

.open .social-mobile {
    width: 40%;
    display: flex;
    margin: auto;
    font-size: 2px;
}

.copyright {
    display: block;
    text-align: center;
    font-size: 12px;
    margin: auto auto 50px auto;
}

.copyrightMobile {
    display: none;
    font-size: 12px;
}

.open .copyrightMobile {
    display: block;
    text-align: center;
    margin: 30px 0 0 0;
}

.list {
    text-align: center;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    padding: 5px 0 25px 5px;
}

.mobileList {
    text-align: center;
    box-sizing: border-box;
    list-style: none;
    text-transform: uppercase;
    margin: 10px 0 10px 0;
    /* top right bottom left */
}

a:hover {
    top: 50%;
    left: 50%;
    opacity: 1;
    translate: 5px;
    transform: scale(1.1);
    color: rgb(255, 123, 0);
    transition: all 0.3s;
}

.gallery {
    display: grid;
    justify-content: center;
    align-items: center;
    margin: auto auto;
    padding-top: 50px;
    max-width: 1100px;
    height: 100%;
    font-size: 24px;
}

.EXPgallery {
    display: grid;
    margin: auto auto;
    padding-top: 50px;
    max-width: 1100px;
}

.EXPimageGallery {
    justify-content: center;
    gap: 10px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.gallery nav {
    display: flex;
    justify-content: center;
}

nav .items {
    display: flex;
    max-width: 1100px;
    width: 100%;
    justify-content: space-evenly;
}

nav .items .item {
    padding: 5px 30px;
    font-size: 18px;
    font-weight: 500;
    color: rgb(255, 123, 0);
    border: 2px solid rgb(255, 123, 0);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

nav .items .active,
nav .items .item:hover {
    color: #fff;
    background: rgb(255, 123, 0);
}

.imageGallery {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.imageGallery .image {
    position: relative;
    padding: 5px;
    width: calc(100% /5);
    height: calc(100% / 5);
}

.imageGallery .image.hide {
    display: none;
}

.imageGallery .image.show {
    animation: animate 0.4s ease;
}

@keyframes animate {
    0% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

.imageGallery .image span {
    display: flex;
    background-color: rgb(63, 61, 61, 1);
    overflow: hidden;
    border-radius: 0%;
    cursor: pointer;
}


.imageGallery .image img {
    width: 100%;
    vertical-align: middle;
    transition: all 0.3s ease;
}


.imageGallery .image:hover img {
    transform: scale(1.3);
    filter: blur(4px);
    opacity: .5;
}

.overlay {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    max-width: 300px;           /* set whatever value you want */
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);  /* centers it on both axes */
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.overlay a {
    display: block;
    width: 100%;
    text-align: center;
}

.overlay a div {
    width: 100%;
    text-align: center;
}

.image:hover .overlay {
    top: 50%;
    left: 50%;
    opacity: 1;
}


.video {
    position: fixed;
    width: 100%;
    opacity: 0;
    transform: scale(0);
}



.video.show {
    opacity: 1;
    justify-content: center;
    transform: scale(1);
}

.preview-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    max-width: 960px;
    width: 100%;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    border-radius: 3px;
    padding: 0 15px 15px 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.preview-box.show {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.preview-box .details {
    display: flex;
    align-items: center;
    padding: 13px 15px 13px 10px;
    justify-content: space-between;
}

.preview-box .details .title {
    display: flex;
    font-weight: 400;
}

.details .title p {
    margin-left: 5px;
    font-weight: 600;
}

.details i {
    color: white;
    font-size: 22px;
    cursor: pointer;
}


.preview-box .image-box {
    display: flex;
    width: 100%;
}

.image-box img {
    display: flex;
    width: 100%;
    border-radius: 0 0 3px 3px;
}

.shadow {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    display: none;
    background: rgba(0, 0, 0, 0.9)
}

.shadow.show {
    display: block;
}

#hamburger-icon {
    margin: auto;
    display: none;
    cursor: pointer;
    left: 50%;
}

#hamburger-icon div {
    width: 35px;
    height: 3px;
    background-color: #202a34;
    margin: 10px auto 10px auto;
    transition: 0.4s;
}

.open .bar1 {
    -webkit-transform: rotate(-45deg) translate(-6px, 6px);
    transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
    -webkit-transform: rotate(-45deg) translate(-6px, 6px);
    transform: rotate(-45deg) translate(-6px, 6px);
    opacity: 0;
}

.open .bar3 {
    -webkit-transform: rotate(-45deg) translate(-6px, 6px);
    transform: rotate(-45deg) translate(-6px, 6px);
}

.open .mobile-menu {
    display: contents;
    background-color: white;
    z-index: 2;
}

.logoMobile {
    display: none;
}

.open .logoMobile {
    width: 200px;
    height: 200px;
    display: block;
    background: url(../img/Self-Portrait-3_200x200.png) 0 0 no-repeat transparent;
    background-size: 200px 200px;
    border-radius: 500px;
    text-align: center;
    margin: 40px auto;
}

.mobile-menu {
    display: none;
    position: absolute;
}

@media(max-width:1000px) {
    .imageGallery .image {
        position: relative;
        width: calc(100% /3);
    }

    .EXPgallery .EXPvideo {
        position: relative;
        width: calc(100% /3);
    }
}

@media(max-width:800px) {
    .imageGallery .image {
        position: relative;
        width: calc(100% /2);
    }

    .EXPimageGallery .EXPvideo {
        position: relative;
        width: calc(100% /2);
    }
}

@media(max-width:750px) {
    nav .items {
        max-width: 600px;
    }

    nav .items .item {
        padding: 7px 15px;
    }
}

@media(max-width:716px) {
    nav .items {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav .items .item {
        margin: 5px;
    }

    .imageGallery .image {
        position: relative;
        width: 100%;
    }

    .EXPimageGallery .EXPvideo {
        position: relative;
        width: 100%;
    }
}

@media only screen and (max-width:1690px) {
    .sideNav {
        visibility: hidden;
        opacity: 0;
        translate: -100px;
        transition: all 0.3s ease-out;
    }

    #hamburger-icon {
        display: block;
        margin: 10px 0 10px 0;
    }

    .mobileSideLinks {
        font-size: 12;
        font-weight: 400;
        display: block;
        margin-top: 40px;
        transition: all 0.3s ease-out;
    }



}

.AboutMeTXT {
    max-width: 1000px; /* ← now it can shrink */
    width: 95%;
    white-space: pre-line;
    position: relative;
    display: grid;
    margin: 20px;
}

.MusicTXT {
    color: #202a34;
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    white-space: pre-line;
    position: relative;
    text-align: justify;
    text-align-last: left;
}

.contactHeader {
    margin: 10px;
    display: grid;
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-size: 30px;
    font-weight: 800;

}

.aboutImg {
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.mainVid {
    display: flex;
    justify-content: left;
    align-items: left;
    width: 100%; /* Full width */
    height: 50vh; /* Full viewport height */
    margin: 0 0 0 30px ;
}

.mainVid iframe {
    aspect-ratio: 16 / 9; /* Adjust as needed */
    width: 80%;
    height: auto; /* Let height adjust automatically */
    border: none;
    margin: 0px 0 0 0;
  }

.bigText {
    position: relative;
    display: grid;
    color: #202a34;
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    word-wrap: break-word;
    font-size: 30px;
    text-align: center;
}

.bigText02 {
    position: relative;
    display: grid;
    align-items: center;
    color: #202a34;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    word-wrap: break-word;
    font-size: 28px;
    line-height: 32px;
    margin: 25px;
    text-align: center;
}

.medText {
    position: relative;
    display: grid;
    color: #202a34;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    word-wrap: break-word;
    font-size: 20px;
    margin: 20px;
    text-align: center;
}

.medTextLft {
    position: relative;
    display: grid;
    color: #202a34;
    font-family: "Roboto", sans-serif;
    overflow-wrap: break-word;
    font-weight: 300;
    word-wrap: break-word;
    font-size: .7em;
    margin: 8px;
    text-align: left;
}

.medTextHeavy {
    display: inline;
    color: #202a34;
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    font-size: 20px;
}

.descripText {
    display: inline;
    font-family: "Roboto", sans-serif;
    font-size: .7em;
    margin: 8px;
    text-align: left;
}


.EXPvideo {
    height: 200px;
    width: 300px;
    cursor: pointer;
    overflow: hidden;
}

.EXPvideo video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .2s linear;
}

.EXPvideo:hover video {
    transform: scale(1.1);
}

.popup-video {
    position: fixed;
    top: 0; left: 0;
    z-index: 100 ;
    background: rgba(0, 0, 0, 0.8);
    height: 100%;
    width: 100%;
    display: none;
}

.popup-video video {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width:35%;
    object-fit: cover;
}

.popup-video span {
    position: inherit;
    top: 200px; right: 500px;
    font-size: 40px;
    color:#fff;
    font-weight: bolder;
    z-index: 100;
    cursor: pointer;
}

.Stills img {
  max-width: 100%;
  height: auto;
  display: block;
}