@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    color: black;
    transition: background-color 0.3s, color 0.3s;
}

.header-bg {
    position: relative;
    overflow: hidden;
}

.hero-media {
    position: relative;
    width: 100%;
}

.hero-media img {
    display: block;
    width: 100%;
    height: auto;
}

@supports (aspect-ratio: 1){
    .hero-media{ 
        aspect-ratio: 6000 / 3209; 
    }

    .hero-media img{
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

header {
    position: fixed;
    inset: 0 0 auto 0;
    height: calc( (100vw * 3209 / 6000) * (12 / 100) );
    z-index: 1000;
    background-color: rgba(180,206,223,var(--header-alpha,0));
}

.header-inner {
    height: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: clamp(16px, 6vw, 120px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 2vw, 48px);
}

header a {
    text-decoration: none;
    color: inherit;
    margin: 0px;
    font-weight: 600;
    font-size: clamp(.9rem, .75rem + .35vw, 1.1rem);
    transition: 0.3s;
}

header a:hover {
    color: #6b3797;
}

.selected {
    pointer-events: none;
    color: #6b3797;
    font-weight: 700;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: clamp(12px, 2.5vw, 25px);
}

.logo img {
    height: min(120px, calc( (100vw * 3209 / 6000) * (12 / 100) * 0.8));
    width: auto;
    margin-right: 0px;
    display: block;
}

nav {
    display: flex;
    gap: clamp(16px, 4vw, 60px);
    padding-right: 60px;
}

.right-controls {
    display: flex;
    align-items: center;
    gap: 0px;
}

.intro {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0 clamp(24px, 9vw, 180px);
    pointer-events: none;
}

.intro-inner {
    pointer-events: auto;
    width: 40%;
}

.intro h1 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.2;
}

.intro p {
    font-size: 1.8rem;
    margin-top: 20px;
    font-weight: 430;
}

.top-divider {
    height: 6px;
    background: linear-gradient(to left, #461750, #8c2fa0, #3795bd, #117dc8);
}

.footer {
    background-color: #b296c9;
    padding: 50px 200px;
    color: black;
    position: relative;
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 100px;
    justify-content: center;
}

.footer-info {
    width: 40%;
}

.footer-info h3{
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 1.8rem;
}

.footer-info p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-weight: 500;
}

.social h3{
    margin-bottom: 10px;
}

.linkedin-icon img {
  width: 35px;
  height: 35px;
  transition: transform 0.3s;
  margin-bottom: 50px;
}

.linkedin-icon:hover img {
  transform: scale(1.1);
}

.footer-logo img {
    max-width: 250px;
}

.contact-container {
    width: 40%;
}

.contact-form {
    background-color: #d1c0df;
    border-radius: 20px;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.contact-form label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    color: black;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background-color: white;
    color: black;
    margin-bottom: 10px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.button-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact-form button {
    width: 40%;
   background: 
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(60deg, #461750, #8c2fa0, #3795bd, #117dc8) border-box;
    color: black;
    padding: 10px 25px;
    border: 2px solid transparent;
    border-radius: 10px;
    display: inline-block;
    transition: 0.3s;
}

.contact-form button:hover {
  background: 
        linear-gradient(60deg, #b898ce, #d59fe3, #acc1df, #8ec1e1) padding-box,
        linear-gradient(60deg, #461750, #8c2fa0, #3795bd, #117dc8) border-box;
    color: black;
}



@media (max-width: 1025px) {

    header a {
        margin: 0 40px;
    }

    nav {
        display: flex;
        gap: 0px;
    }

    nav a {
        margin: 20px;
    }

    .right-controls {
        gap: 20px;
        margin-left: 40px;
    }

    .intro {
        padding: 80px 120px;
        max-width: 500px;
    }

    .intro-inner {
        width: 100%;
    }

    .intro h1, .stat h2 {
        font-size: 2.4rem;
    }

    .intro p, .stat p {
        font-size: 0.9rem;
    }

    .footer {
        padding: 50px 100px;
    }

    .footer-content {
        flex-direction: column;
        gap: 50px;
        padding-top: 50px;
    }

    .footer-info {
        width: 80%;
        order: 2;
    }

    .social {
        padding-top: 100px;
    }

    .footer-logo img {
        max-width: 200px;
    }

    .linkedin-icon img {
        width: 30px;
        height: 30px;
    }

    .contact-container {
        width: 80%;
        order: 1;
    }

}