/* filepath: /c:/Users/User/git/DavTech/styles.css */

body {
    background-color: #111111; /* Change this to your desired background color */
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 1.5rem;
    color: #909296;
    text-align: center;
    scroll-behavior: smooth;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #909296;
    text-align: center;
}

.hero-video-overlay h1 {
    font-size: 3rem;
    margin: 0;
}

.hero-video-overlay p {
    font-size: 2rem;
    margin: 0;
    color: #909296;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #111111;
    color: white;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-shrink .navbar-logo {
    height: 30px; /* Adjust the logo size when navbar is shrunk */
}

.navbar-container {
    display: flex;
    align-items: center;
    padding: 1rem;
}

.navbar-brand {
    font-size: 1.5rem; /* Increased font size */
    text-decoration: none;
    color: white;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.contact-info {
    text-align: center;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.5rem;
    color: #909296;
    margin: 0.5rem ;
    text-align: center;
}

.footer {
    background-color: #111;
    color: #909296;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
}

.footer p {
    margin: 0.5rem 0;
}

.footer .social-icons {
    margin-top: 1rem;
}

.footer .social-icons a {
    margin: 0 0.5rem;
    display: inline-block;
}

.social-icons img {
    width: 64px;
    height: 64px;
}
/* Section styles */
.sections-container {
    display: block;
    padding: 10px;
}

/* Section styles */
.content-section {
    margin-top: 0px; /* Adjust the margin as needed */
    margin-bottom: 10px;
    position: relative;
    color: #909296;
    padding: 60px 20px;
    text-align: left;
    max-width: 100%; /* Adjust the max-width as needed */
    border: 2px solid #0e8d68; /* Add a border to each section */
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
    padding-left: 20px; /* Adjust the padding as needed */
    padding-right: 20px; /* Adjust the padding as needed */
}

.content-section h2 {
    margin-top: -60px; /* Adjust the margin as needed */
    color: #0e8d68; /* Ensure the color is consistent */
}

.content-section img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 20px; /* Adjust the gap between the text and the flag as needed */
}

.about-content p {
    flex: 1;
    margin: 0;
}

.about-flag {
    max-width: 100%; /* Adjust the image size as needed */
    height: auto;
    margin: 0;
}
.founder-image {
    position: relative;
    color: #909296;
    padding: 60px 20px;
    text-align: left;
    max-width: 100%; /* Adjust the max-width as needed */
    margin-left: auto;
    margin-right: auto;
    margin-top: -80px;
    margin-bottom: -80px;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 70px; /* Further adjust the height for even smaller screens */
    }
    .navbar-container {
        flex-direction: column;
        align-items: flex-start;
    }
}