/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');
body {
    font-family: 'Roboto', sans-serif;
        /* background-color: #f4f4f4; */
    /* background-color: black; */
    background-image: url("../images/blackStars.jpg");
    color: white;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #000;
}

h1,
h2,
h3 {
    margin: 0;
    padding: 10px 0;
}

.pageFocus h3 {
    display: inline-block;
    width: 100%;
    /* Full width of the text field */
    border-bottom: 2px solid white;
    /* Line thickness and color */
    padding-bottom: 3px;
    padding-top: 100px;
}

/* .pageFocus h3::before {
    margin-top: 100px;
} */

.video-background-container {
    position: relative;
    width: 100%;
    height: 25vh;
    overflow: hidden;
}

#headerprofessionalProfile {
    height: 30vh;
}

#land {
    height: 50vh;
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Title Section */
.title {
    /* background-color: #333; */
    font-family: 'Orbitron', sans-serif;
    position: relative;
    z-index: 1;
    color: black;
    padding: 20px;
    text-align: center;

    text-shadow: 0 0 2px white, 0 0 4px rgba(255, 255, 255, 0.5);
}

.title h1 {
    font-size: 46px;
}

.home-button {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-block;
    border: 2px solid #b8b7b6;
    padding: 5px;
}

.home-icon {
    width: 24px;
    height: 24px;
    /* display: block; */
    vertical-align: middle;
}

/* Contact Info */
.contact-info {
    margin-top: 20px;
}

.contact-info h3 {
    display: inline-block;
    margin: 0 15px;
}

#switchStyleButtonLand {
    margin-left: -98%;
    padding-top: 10%;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

#switchStyleButton {
    margin-left: -98%;
    padding-top: 3%;
    width: 50px;
    height: 50px;
    cursor: pointer;
}



/* Position the sidebar offscreen initially */
.sideBar {
    position: fixed;
    top: -110%;
    right: 0;
    width: 20%;
    height: 100vh;
    background-image: url("../images/blueStar.jpg");
    color: white;
    padding: 20px;
    box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.5);
    transition: top 1.25s ease;
    z-index: 1000;
}


.sideBar h2 {
    margin-top: 25%;
    margin-bottom: 25%;

}


.sideBar h2 a {
    /* padding: 50% 0% 0% 0%; */
    color: white;
    text-decoration: none;
}


.sideBar h2 a:hover {
    text-decoration: underline;
}

.pageFocus a {
    color: cornflowerblue ;

}

/* Trigger for the sidebar */
.sidebar-trigger {
    position: fixed;
    top: -1.25%;
    right: 0%;
    background-color: black;
    color: White;
    height: 1%;
    width: 20%;
    padding: 20px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1001;
    text-align: center;
}


.sidebar-trigger:hover + .sideBar {
    top: 0%;
}
/* 
.sideBar:hover + .sidebar-trigger {
    top: -100;
} */

.sideBar:hover {
    top: 0;
}

/* Hover effect to make the sidebar drop down */
/* .sidebar-trigger:hover {
    background-color: #333;
    top: -100;
} */

/* Page Focus Section */
.pageFocus {
    margin-left: 10%;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
}

.pageFocus h1 {
    font-size: 28px;
    color: white;
}

.pageFocus .text-image-container {
    display: flex;
    /* Flexbox to align items horizontally */
    align-items: center;
    /* Vertically align the image and text */
}

.pageFocus h2 {
    font-size: 18px;
    line-height: 1.5;
    margin-right:20px;
    margin-top: 20px;
    padding-top: 40px;
    /* Add some space between text and image */
}
.pageFocus img.image-right {
    max-width: 30%;
    /* Set a maximum width for the image */
    height: auto;
    /* Ensure the image scales proportionally */
}
/* 
#piano {
    max-width: 70%;
} */

.right-align {
    float: right;
}

.inPara {
    /* text-decoration: underline; */
    color: white;
}
/* //Responsive Design
@media (max-width: 768px) {
    .sideBar {
        width: 100%;
        height: auto;
        position: relative;
    }
    
    .pageFocus {
        margin-left: 0;
    }
} */

#cloud {
    text-decoration: underline;
    /* text-overflow: clip; */
    margin-left: 0%;
}

.special1 {
    margin-top: -200px;
    color: #333333;
}

.special2{
    position: absolute;
    top: 20%;
    left: 0%;
    text-overflow: clip;
    margin-left: -100%;
}

a.resume-link:visited {
  color: #000;
  font-weight: bold;
}



html, body {
  overscroll-behavior: none;
  overflow-x: hidden;
}



.fade-in {
  animation: fadeIn 2s ease-in-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

