html {
    overflow-x: hidden;
    scroll-padding-top: 80px;
}

/* Vates Brand Colors */
:root {
    --vates-beige: #F5E6D3;
    --vates-rouge: #DC143C;
    --vates-bleu: #003DA5;
}

/* Skip link - visible on focus */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: white;
    color: black;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

html {
    overflow-x: hidden;
}

body {
    background-color: black;
    margin: 0;
    padding: 20px;
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    position: relative;
    overflow-x: hidden;
}

.lang-switcher {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    margin-left: auto;
}

.header-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
    padding: 20px;
    box-sizing: border-box;
    background-color: black;
    z-index: 100;
    overflow: hidden;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.3s;
}

/* Top Menu */
.top-menu {
    display: flex;
    gap: 2rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
}

.top-menu a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.top-menu a:hover,
.top-menu a:focus {
    opacity: 1;
    text-decoration: underline;
    outline: 2px solid white;
    outline-offset: 2px;
}

.contact-top {
    font-family: 'Global Indifference', sans-serif;
    font-size: 0.9rem;
    margin-left: auto;
    display: none;
}

.contact-top a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.contact-top a:hover,
.contact-top a:focus {
    opacity: 1;
    text-decoration: underline;
}

.lang-link {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.lang-link.active {
    opacity: 1;
    font-weight: bold;
}

.lang-link:hover,
.lang-link:focus {
    opacity: 1;
    outline: 2px solid white;
    outline-offset: 2px;
}

.lang-sep {
    opacity: 0.8;
    margin: 0 0.5rem;
}

.logo {
    margin: 0 auto 2rem auto;
    max-width: 300px;
    width: 90%;
    height: auto;
    display: block;
}

.company-name {
    font-family: 'Special Elite', cursive;
    font-size: 5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
    word-wrap: break-word;
}
.people {
    font-family: 'Global Indifference', sans-serif;
    font-size: 1.8rem; /* increased for better visibility */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}
.people .person {
    white-space: nowrap;
}
.people .sep {
    opacity: 0.75;
    margin: 0 0.4rem;
}

.services {
    font-family: 'Raleway', sans-serif;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.8;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    list-style: none;
}

.services li {
    margin-bottom: 0.5rem;
}

.contact {
    font-family: 'Global Indifference', sans-serif;
    font-size: 1.5rem;
    word-break: break-word;
    text-align: center;
}

@media screen and (max-width: 768px) {
    html {
        scroll-padding-top: 120px;
    }

    body {
        padding: 0;
        padding-top: 120px;
        overflow-x: hidden;
    }

    .company-name {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .services {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .people {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .contact {
        font-size: 1.3rem;
    .header-top {
        gap: 1rem;
        padding: 10px;
    }

    }

    /* Menu toggle on mobile */
    .menu-toggle {
        display: flex;
    }

    .top-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        overflow-x: hidden;
        box-sizing: border-box;
        transition: max-height 0.3s ease-out;
        visibility: hidden;
    }

    .top-menu.open {
        max-height: 300px;
        padding: 15px;
        visibility: visible;
    }

    .top-menu a {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .top-menu a:last-child {
        border-bottom: none;
    }

    .header-top {
        flex-wrap: wrap;
    }

    .contact-top {
        display: none;
    }

    .lang-switcher {
        position: static;
    }

    /* Who Are We section responsive */
    .who-we-are h2 {
        font-size: 1.5rem;
    }

    .who-we-are-intro {
        font-size: 1rem;
    }

    .team-members {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem;
        grid-template-columns: unset !important;
    }

    .who-we-are {
        padding: 0 15px;
    }

    .team-member-name {
        font-size: 1.3rem;
    }

    .team-member-headline {
        font-size: 0.9rem;
    }

    .team-member-bio {
        font-size: 0.95rem;
    }

    /* Services section responsive */
    .services-section {
        padding: 0 15px;
    }

    .services-section h2 {
        font-size: 1.5rem;
    }

    .service-name {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    body {
        padding: 0;
        padding-top: 120px;
        overflow-x: hidden;
    }

    .company-name {
        font-size: 2.5rem;
    }

    .services {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    .people {
        font-size: 1.15rem;
        margin-bottom: 0.9rem;
    }

    .contact {
        font-size: 1.2rem;
    }

    /* Who Are We section responsive */
    .who-we-are h2 {
        font-size: 1.3rem;
    }

    .who-we-are-intro {
        font-size: 0.95rem;
    }

    .team-member-name {
        font-size: 1.2rem;
    }

    .team-member-headline {
        font-size: 0.85rem;
    }

    .team-member-bio {
        font-size: 0.9rem;
    }

    .team-members {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem;
        max-width: 100%;
        grid-template-columns: unset !important;
    }

    .team-member-card {
        padding: 1.2rem;
    }

    /* Services section responsive */
    .services-section {
        padding: 0 15px;
    }

    .services-section h2 {
        font-size: 1.3rem;
    }

    .service-name {
        font-size: 1rem;
    }

    .service-description {
        font-size: 0.9rem;
    }
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    opacity: 0.85;
    text-align: center;
}

.footer a {
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer a:hover,
.footer a:focus {
    opacity: 1;
    text-decoration: underline;
}

.footer-sep {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* Who Are We Section */
.who-we-are {
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.who-we-are-intro {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #ffffff;
}

.who-we-are h2 {
    font-family: 'Special Elite', cursive;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
}

.team-members {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.team-member-card {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.03);
}

.team-member-name {
    font-family: 'Global Indifference', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffffff;
    display: block;
    text-decoration: none;
}

.team-member-name:hover,
.team-member-name:focus {
    text-decoration: underline;
    outline: 2px solid white;
    outline-offset: 2px;
}

.team-member-headline {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1.2rem;
    font-style: italic;
    color: var(--vates-beige);
}

.team-member-bio {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    color: #ffffff;
}

/* Services Section */
.services-section {
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.services-section h2 {
    font-family: 'Special Elite', cursive;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-name {
    font-family: 'Global Indifference', sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--vates-beige);
    text-align: center;
}

.service-description {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.85;
    color: #ffffff;
    text-align: center;
}

/* Vates Partnership Branding */
.vates-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.vates-logo-placeholder {
    width: 80px;
    height: auto;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: var(--vates-beige);
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

.vates-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--vates-rouge);
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

.vates-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--vates-beige);
    text-align: center;
    margin: 0.5rem 0 0 0;
    font-weight: 300;
}

@media screen and (max-width: 768px) {
    .vates-title {
        font-size: 1.8rem;
    }

    .vates-tagline {
        font-size: 0.85rem;
    }

    .vates-logo-placeholder {
        width: 70px;
        height: 70px;
    }
}

/* Page Footer */
.page-footer {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 20px 1rem 20px;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    color: white;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    font-family: 'Global Indifference', sans-serif;
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    color: var(--vates-beige);
}

.social-link {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s;
    display: inline-block;
}

.social-logo {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: baseline;
    margin-right: 6px;
    transform: translateY(2px);
}

.social-link:hover,
.social-link:focus {
    opacity: 1;
    text-decoration: underline;
    outline: 2px solid white;
    outline-offset: 2px;
}

.legal-info {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
}

.legal-info strong {
    color: white;
    display: block;
    margin-bottom: 0;
}

.copyright {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
    text-align: center;
    padding: 1.5rem 0;
}

@media screen and (max-width: 768px) {
    .page-footer {
        padding: 2rem 15px 1rem 15px;
        margin-top: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .legal-info {
        font-size: 0.85rem;
    }
}
