
/* CSS extracted and adapted from the original website */
*, *::before, *::after {
    box-sizing: border-box;
}
:root {
    --color-light-text: rgb(254, 189, 193); /* Example primary color */
    --color-light-text-2: rgb(244, 244, 244);
    --color-dark-text: rgb(26, 27, 31); /* Example secondary color */
    --color-light-bg: rgb(244, 244, 244); /* Example background color */
    --color-dark-bg: var(--color-dark-text);
    --btn-bg-color: var(--color-dark-bg);
    --btn-text-color: var(--color-light-text);
}

body, html {
    /* margin-top: 60px; */
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif; /* Use a modern font like Roboto */
    font-size: 18px; /* Root font size */
    background-color: var(--color-dark-bg);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: left;
}

a {
    text-decoration: none;
    font-weight: bold;
    color: var(--color-dark-text);
}

.button {
    display: inline-block;
    max-width: 200px;
    padding: 12px 25px;
    font-size: 1rem;
    color: var(--btn-text-color);
    background-color: var(--btn-bg-color);
    border: none;
    border-radius: 50px; /* Pill shape */
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    margin: 0 auto; /* Center the button horizontally */
}

.button:hover {
    filter: brightness(1.2);
}
/* 
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: var(--color-light-text);
    background: var(--color-dark-bg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 10px;
} */
/* Ensure the header has a fixed height */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* Adjust this value as needed */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: var(--color-light-text);
    background: var(--color-dark-bg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    box-sizing: border-box;
}

/* .logo-container {
    display: flex;
    align-items: center;
    height: 100%; 
    
    padding: 5px 0; 
}
.logo {
    max-height: 100%; 
    width: auto; 
    object-fit: contain; 
} */



.parallax-section {
    /* min-height: 70vh; */
    height: 90vh;
    display: flex;
    flex-direction: row;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* text-align: left; */

}

.parallax-section.section-1 {
    background-image: url('background-1.webp');
    background-color: var(--color-dark-bg);
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    color: var(--color-light-text-2);
    
}

.parallax-section.section-1 a {
    color: var(--color-light-text); /* Different text color */
}

.parallax-section.section-1 h2 {
    color: var(--color-light-text);
}

.parallax-section.section-1 .button {
    background-color: var(--color-light-bg); /* Different background color */
    color: var(--color-dark-text); /* Different text color */
}


.parallax-section.section-2 {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    color: var(--color-dark-text);
}

.parallax-section.section-2 h2 {
    color: var(--color-dark-text);
}

.parallax-section.section-2 a {
    color: var(--color-dark-text); /* Different text color */
}

.parallax-section.section-2 .button {
    background-color: var(--color-dark-bg); /* Different background color */
    color: var(--color-light-text); /* Different text color */
}

.left-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.section-content {
    flex: 1;
    display: flex;
    
    margin-top: 20px;
    margin-left: 5vw;
    margin-right: 5vw;
    flex-direction: column;
    justify-content: center;
    padding: 7vw;
    overflow: hidden;
    /* background: rgba(0, 0, 0, 0.5); */
    border-radius: 10px;
    text-align: left;
} 
.centered-list-container {
    display: flex;
    justify-content: center;
}


.section-content ul {
    list-style-position: outside;
    padding-left: 0;
    text-align: left;
    display: inline-block; /* Make the ul itself align to the center of its container */
}

.section-content li {
    /* font-size: 1rem; */
    text-align: left;
}

.content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 20px;
    background: var(--color-light-bg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-light-text);
    text-align: center;
}

h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-light-text); 
    text-align: center;
}

h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark-text);
    text-align: center;
}

h3 a {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark-text);
    text-align: center;
}
/* 
p {
    font-size: 1rem
}
 */

.section-1 {
    color: var(--color-light-text-2);
    background-color: var(--color-dark-bg);
}

.section-2 {
    color: var(--color-dark-text);
    background-color: var(--color-light-bg);
}

.about-section-1 {
    background-image: url('background-1.webp');
    font-size: 1rem;
    height: 80vh;
}

.about-section-1 a {
    color: var(--color-light-text);
    font-size: 1rem;
}

.about-section-2 {
    padding-top: 50px;
    background-color: var(--color-light-bg);
    color: var(--color-dark-text);
    gap: 20px;
    max-height: 100%;
    overflow-y: auto;
    /* height: 300vh; */
}

.about-section-2 a {
    color: var(--color-dark-text);
    /* font-size: 1rem; */
}

.about-section-2 h2 {
    color: var(--color-dark-text);
}
.about-section-text {
    color: var(--color-light-text-2);
    margin-left: 5vw;
    margin-right: 5vw;
}

.founder-div {
    margin-top: 20px;
    margin-bottom: 20px;
}

.founder-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 20px;
}
.founder-title {
    font-size: 1rem;
    margin-top: 10px;
    color: #333;
}

.founder-desc-div {
    margin-left: 10px;
    margin-right: 5px;
    padding-left: 5px;
    padding-right: 5px;
}

.services-section {
    margin-top: 50px;
    flex-direction: column;
    background-color: var(--color-dark-bg);
}
#services-section-1 {
    background-image: url('background-1.webp');
}
.contact-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    text-align: left; /* Center text horizontally */
    margin-top: 5vh;
    color: var(--color-light-text-2);
    background-image: url('background-1.webp');
}

.contact-image {
    max-width: 40vw; /* Ensure the image is responsive */
    height: auto;
}
.services-section p {
    /* font-size: 1rem; */
    color: var(--color-light-text-2);
}

.services-section a {
    /* font-size: 1rem; */
    color: var(--color-light-text);
}
/* 
.header img.logo {
    max-height: 100%; 
    width: auto; 
    height: 80px;
    max-width: 100%; 
    display: block; 
} */
.header img.logo {
    max-height: 80px; /* Ensure the logo fits within the header */
    max-width: 100%; /* Ensure it doesn't exceed the width of its container */
    height: auto; /* Allow the height to adjust to maintain aspect ratio */
    width: auto; /* Maintain aspect ratio */
    display: block; /* Remove any inline spacing */
    object-fit: contain; /* Ensure the image scales with a fixed aspect ratio */
}

/* 
.header-nav {
    font-family: Arial, sans-serif;
} */

.header-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.header-nav li {
    margin-left: 10px;  
}

.header-nav a {
    text-decoration: none;
    color: var(--color-light-text);
    font-size: .9rem;
    font-weight: 500;
    padding: 5px 5px;
    margin-left: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.header-nav a:hover {
    background-color: var(--color-light-text-2);
    text-decoration: none;
    color: #000;
}

.header-nav a.active {
    background-color: var(--color-dark-bg);
    color: var(--color-light-text-2);
}

.header h1 {
    margin: 0;
    font-weight: 700;
    color: var(--color-light-text);
}
    
/* Footer Styling */

.footer-div {
    text-align: center;
    color: var(--color-light-text-2);
    font-size: .9rem;
    padding-top: 20px;
    padding-bottom: 20px;

}
.footer-div ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.footer-div li {
    margin-left: 10px;  
}

.footer-div a {
    text-decoration: none;
    color: var(--color-light-text);
    font-size: .9rem;
    font-weight: 500;
    padding: 5px 5px;
    margin-left: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.footer-div a:hover {
    background-color: var(--color-light-text-2);
    text-decoration: none;
    color: #000;
}

.footer-div a.active {
    background-color: var(--color-dark-bg);
    color: var(--color-light-text-2);
}

.copyright-notice {
    font-size: .7rem;
    margin-top: 10px;
}
/* 
.footer a {
    margin: 0;
    color: var(--color-light-text);
    font-weight:bold;
    text-decoration: none;
}

.footer-links {
    list-style: none;
    color: var(--color-light-text);
    padding: 0;
    margin: 0;
    display: flex;
} 

.footer-links li {
    margin-left: 20px; 
}

.footer-links a {
    color: var(--color-light-text);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: none;
}*/


@keyframes scrollImage {
    0% {
      background-position: 0% 0;
    }
    50% {
      background-position: 100% 0;
    }
    100% {
      background-position: 0% 0;
    }
  }
  
.left-image {
    animation: scrollImage 90s linear infinite;
}
.founders-container {
    display: flex;
    flex-direction: column; /* Stack founder-divs vertically */
    gap: 20px; /* Add space between items */
}

.founder-div {
    display: flex;
    flex-direction: row; /* Arrange contents in a row by default */
    align-items: center; /* Center items vertically */
    text-align: left; /* Align text to the left */
    justify-content: space-between; /* Space out the image and description */
}

.founder-image-div {
    display: flex;
    flex-direction: column; /* Stack contents vertically */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text */
}

.founder-image {
    max-height: 15vw; /* Adjust height as needed */
    max-width: 15vw; /* Ensure images are square */
    border-radius: 50%;
    border: #333 solid 5px;
    box-shadow: inset 0 0 10px #000;
    object-fit: cover; /* Ensure images cover the container */
    /* margin-right: 20px; */
}

.founder-image-div, .founder-desc-div {
    padding: 10px; /* Add padding inside each div */
    font-size: 1.2rem;
    text-align: left;
}

.policy-doc {
    background-color: var(--color-dark-bg);
    color: var(--color-light-text-2);
    font-size: 1rem;
    margin-top: 60px;
    margin-left: 10vw;
    margin-right: 10vw;
}

.policy-doc p {
    font-size: 1rem;
}

.policy-doc a {
    color: var(--color-light-text);
    text-decoration: bold;
}


/* Media query for mobile devices */
@media (max-width: 900px) {
    /* body, html {
        font-size: 16px; 
    } */
    .contact-image {
        max-width: 80vw; /* Adjust image size for mobile */
    }
    .header-nav a {
        text-decoration: none;
        color: var(--color-light-text);
        font-size: .7rem;
        
        padding: 5px 5px;
    }
    
    .header-nav li {
        margin: 10px 0; /* Adjust margin between links */
    }

    .founder-image {
        max-width: 40vw;
        max-height: 40vw;
    }

    .founder-desc-div {
        margin-left: 5px;
    }

    .footer .container {
        flex-direction: row; /* Stack items vertically */
        align-items: center; /* Center-align items */
        text-align: left;
    }
    .footer {
        text-align: center;
    }

    .footer-links {
        flex-direction: column; /* Stack links vertically */
    }

    .footer-links li {
        margin: 10px 0; /* Adjust margin between links */
    }
    .image-container {
        flex-direction: column; /* Stack items vertically */
    }

    .founder-image {
        height: 200px; /* Adjust height for mobile */
        width: 200px; /* Ensure images are square */
    }
    .about-section-text {
        margin-left: 5px;
        margin-right: 5px;
    }
    .services-section {
        margin-top: 50px;
        flex-direction: column;
        margin-left: 5px;
        margin-right: 5px;
    }
    .founder-div {
        flex-direction: column; /* Stack contents vertically on small screens */
        text-align: left; /* Center text */
    }

    .founder-image-div {
        flex-direction: column; /* Stack contents vertically on small screens */
    }
    .parallax-section {
        /* min-height: 70vh; */
        height: 120vh;
    }
    
    .section-content {
        margin-top: 0px;
        margin-left: 5px;
        margin-right: 5px;
    }
}
