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

body {
    font-family: Helvetica, Arial, sans-serif;
    color: #121212;
    background-color: #f4f4f4;
    overflow-x: hidden;
    padding-left: 150px; /* Offset content for vertical navigation */
}

/* Solid Header - Vertical Navigation */
.solid-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
    padding: 20px 0;
}

.solid-header .tabs {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
}

.solid-header .tabs li {
    margin-bottom: 30px;
}

.solid-header .tabs li a {
    text-decoration: none;
    color: white;
    font-size: 1em;
    padding: 10px 20px;
    display: block;
    transition: background-color 0.3s, color 0.3s;
}

.solid-header .tabs li a:hover {
    color: #ff6600;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Background Section */
.background-container {
    position: fixed;
    top: 0;
    left: 150px;
    width: calc(100% - 150px);
    height: 100vh;
    z-index: -2;
}

.background-image {
    position: absolute;
    top: 0;
    left: 10%;
    width: 85%;
    height: 30%;
    object-fit: cover;
    z-index: -10;
}

.video-container {
    position: relative;
    top: 30%;
    left: 10%;
    width: 85%;
    height: 70%;
    z-index: -2;
}

@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm) {
.video-container video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg) scale(1, 1); /* Ensure the video is right side up */
    }
}

/* Overlay for Text */
.overlay {
    position: absolute;
    top: 25%;
    left: 150px;
    width: calc(100% - 150px);
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 50px;
    color: white;
}

.home-content h1 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 0px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-top: -100px; /* Add this line to move the title down */
}

.home-content p {
    margin-bottom: 20px;
}

.home-content .btn {
    margin-top: 50px;
    margin-bottom: 200px;
    padding: 40px 70px;
    font-size: 2em;
    background-color: transparent;
    color: black;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s, background-color 0.3s;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-content .btn:hover {
    transform: scale(2);
    background-color: rgba(255, 255, 255, 0.1);
}

.home-content .btn::before {
    content: '\2605';
    font-size: 6em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFEB3B;
    z-index: -1;
}
.home-content .btn2 {
    margin-top: 50px;
    padding: 40px 70px;
    font-size: 2em;
    background-color: transparent;
    color: black;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s, background-color 0.3s;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-content .btn2:hover {
    transform: scale(1.5);
    background-color: rgba(255, 255, 255, 0.1);
}

.home-content .btn2::before {
    content: '\2605';
    font-size: 6em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFEB3B;
    z-index: -1;
}

/* Section Styling */
.section {
    padding: 10px 10px;
    margin: 800px auto; /* Adjust this value to move the section down */
    width: 100%;
    max-width: 700px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    color: #121212;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-me {
    margin-top: 1000px; /* Adjust the value as needed */
}
.button-link {
    display: inline-block;
    background-color: #2d5d8f99; /* Blue color */
    color: black; /* Text color */
    padding: 15px 25px; /* Button size */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Larger text */
    text-decoration: none; /* Remove underline */
    font-weight: bold;
    margin-top: 15px; /* Space between image and button */
    transition: background-color 0.3s ease;
    margin-right: 10px; /* Add a 10px gap between buttons */
}
.btn2 {
    display: inline-block;
    background-color: #2d5d8f99; /* Blue color */
    color: black; /* Text color */
    padding: 15px 25px; /* Button size */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Larger text */
    text-decoration: none; /* Remove underline */
    font-weight: bold;
    margin-top: 15px; /* Space between image and button */
    transition: background-color 0.3s ease;
}
        .button-link:hover {
            background-color: #0056b3; /* Darker blue on hover */
}
        .btn2:hover {
            background-color: #0056b3; /* Darker blue on hover */
}
.section h2 {
    margin-top: 10px;
    font-size: 2em;
    margin-bottom: 10px;
}

.section p {
    font-size: 1em;
    line-height: 1.5;
}

/* Footer */
.solid-footer {
    position: fixed;
    bottom: 0;
    left: 0px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    text-align: center;
    z-index: 10;
}
