@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
    position: fixed; 
    width: 100%; 
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 4rem;
    padding: 0;
}

.logo img {
    height: 80px;
    width: auto; 
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    width: 30%;
}

.nav-list li {
    margin-left: 2rem;
}

.nav-list li a {
    opacity: 1;
    color: #1a1b1f;
    letter-spacing: .25px;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 1.2em;
    line-height: 1;
    text-decoration: none;
    transition: opacity .2s;
}

nav .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 1100;
}

nav .menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.4s;
}

@media (max-width: 768px) {
    nav {
        padding: 0 1rem;
    }
    .nav-list {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        justify-content: start;
        padding-top: 8rem;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        box-shadow: -4px 0 8px rgba(0, 0, 0, 0.1);
    }
    .nav-list.active {
        transform: translateX(0);
    }
    .nav-list li {
        margin: 1rem 0;
    }
    nav .menu-toggle {
        display: flex;
    }
    
}

@media (min-width: 1000px) and (max-width: 1200px) {
    .nav-list {
        width: 40%;
    }
}

@media (min-width: 768px) and (max-width: 1000px) {
    .nav-list {
        width: 50%;
    }
}

.hover-over:hover{
    text-decoration: underline;
}

nav ul li a:hover {
    text-decoration: underline;
}
main {
    margin-top: 7.2rem;
}
.landingPage {
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-color: #ccc;
    min-height: 84vh; 
    
    
}
.privacyPage {
    background-image: url('../images/privacy.png');
    background-size: cover;
    background-position: 50% 30%;
    background-color: #ccc;
    min-height: 50vh; 
}
.hero {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    background: rgba(0, 0, 0, 0.35);
    padding: 2rem;
    min-height: 78vh; 
    padding-left: 4rem;
}
@media (max-width: 768px) {
    .hero {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        background: rgba(0, 0, 0, 0.35); 
        padding-left: 5rem;
    }
}
.hero-content{
    margin-top:0;
    justify-content: center;
}
.landingHero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 42vh; 
    font-family: 'Barlow', sans-serif;
    font-size: 2rem;
}
.landingHero h1{
    text-align: center;
    margin: 0 auto;
    width: 60%;
}
.privacyHero {
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 5.5em;
    font-family: 'Barlow', sans-serif;
    color: #fff;
}

.hero p {
    font-size: 1.5em;
    color: #fff;

}

.about-us-section {
    display: flex;
    justify-content: between;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem 4rem;
    column-gap: 10rem;
}
.mission {
    padding: 4rem 6rem;
}

.about-us-image {
    overflow: hidden;
    display: flex;
    align-items: center; /* Center image vertically */
    justify-content: center;
    flex: 4;
}

.about-us-image img {
    min-width: 300px;
    max-width: 600px;
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: grayscale();
}

.about-us-container {
    padding: 2rem;
    text-align: left;
    flex: 5;
}

.about-us-container h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-family: 'Playfair Display', serif;
}

.about-us-container p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-family: 'Barlow', sans-serif;
    //background: blue;
}

.about-us-container ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 1rem;
}

.about-us-container ul li {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-family: 'Barlow', sans-serif;
}

.about-us-container ul li::before {
    content: '●';
    color: #BC0022;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    line-height: 1.25rem;
}
.middle h1{
    font-size: 51rem;
    text-align: center;
}
.team-container{
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: none;
}

.legal-notice {
    width: 80%;
    margin: 0 auto;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: #333;
    padding: 2rem;
}

.legal-notice h2, .legal-notice h3 {
    font-family: 'Barlow', sans-serif;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-notice p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

footer {
    background-color: #fff;
    padding: 3rem 6rem;
    border-top: 1px solid #ddd;
    font-family: 'Work Sans', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 1rem;
}

.contact-info {
    font-size: 1rem;
    font-family: 'Work Sans', sans-serif;
    margin-left: 1rem;
    
}
.contact-form {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 6;
    gap: 1rem; 
    padding-top: 2rem;
}

.contact-form label {
    margin-top: 1rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.7rem;
    font-family: 'Barlow', sans-serif;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.85rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form button {
    padding: 1rem;
    background-color: #27379b;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 25%;
    align-self: flex-end;
}

.contact-form button:hover {
    background-color: #4B0082;
}

.contact-form-row {
    display: flex;
    gap: 1rem;
}

.contact-form-row .form-group {
    flex: 1;
}

@media (max-width: 768px) {
    .contact-form-row {
        flex-direction: column; 
    }
}

.margin-bottom{
    margin-bottom: 0;
}

.footer-right {
    
    display: flex;
    flex: 4;
    justify-content: space-around;
}

.footer-column {
    margin: 0 1rem;
    margin-bottom: 1.5rem;
}

.footer-column h3 {
    margin-top: 0;
    font-size: 1.5em;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
   
}

.footer-column p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    font-family: 'Work Sans', sans-serif;
    
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #333;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
@media (max-width: 1200px) {
    .about-us-section {
        justify-content: center;
        flex-direction: column;
    }
    .about-us-section {
        justify-content: center;
    }
    footer {
        padding: 2rem;
    }
}
@media (max-width: 1000px) {
    .margin-bottom{
        margin-bottom: 1rem;
    }
    .footer-content {
        flex-direction: column;
    }

    .footer-right {
        flex-direction: column;
    }

    .footer-column {
        margin-right: 0;
    }

    .footer-bottom {
        flex-direction: column;
        line-height: 1.6;
    }
}

.profiles-container {
    display: flex;
    gap: 2rem;
}
.box-container{
    background-color: white;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 5rem;
}
.grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}
.title-h1 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;

}
.profile-card {
    text-align: center;
    padding: 20px;
    max-width: 300px;
    flex: 1 1 calc(32% - 1.5rem);
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
}
.profile-card img {
    border-radius: 50%;
    width: 225px;
    height: 225px;
    object-fit: cover;
    margin-bottom: 20px;
}
.profile-card h2 {
    margin: 0;
    font-size: 24px;
}
.profile-card p {
    margin: 5px 0;
    color: #888;
    font-size: 16px;
    font-family: 'Barlow', sans-serif;
}
@media (max-width: 768px) {
    .profile-card {
        flex: 1 1 calc(50% - 40px);
    }
}
@media (max-width: 480px) {
    .profile-card {
        flex: 1 1 100%;
    }
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.social-icons a svg {
    width: 24px;
    height: 24px;
    //fill: #333;
}

.social-icons a:hover svg {
    fill: #555;
}

.company-card {
    display: block;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
    flex: 1 1 calc(33.33% - 2rem);
    min-width: 200px;
    max-width: 300px;
}

.company-card:hover {
    transform: translateY(-5px);
}

.company-card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}