@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-display: fallback;
    background: radial-gradient(77% 77% at 74% 66%, #1A38E0 24%, #030D41 100%);
    min-height: 100vh;
    color: white;
    margin: 0;
    padding: 0;
}

.container {
    min-height: 100vh;
    display: grid;
    /* grid-template-rows: auto 1fr auto; */
    width: 100%;
    padding-left: 12%;
    padding-right: 12%;
}

.contact-btn {
    font-size: 1rem;
    display: inline-block;
    padding: 0.60rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    text-decoration: none;
    color: white;
    margin-bottom: 2.5%;
    margin-top: 2.5%;
    max-width: fit-content;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: end;
}


.heading {
    /* font-size: 96px; */
    font-size: 6vh;
    font-weight: 400;
    line-height: 1.2;
    /* max-width: 800px; */
}

.footer {
    padding-bottom: 10%;
    margin-top: auto;
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.7;
}

.logo {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 10%;
    z-index: 10;
}

.logo svg {
    height: 85px;
    width: auto;
    display: block;  
}

/* Logo animations */
.logo path {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

/* MARA */
.logo path:nth-child(1) { animation-delay: 0.1s; }
.logo path:nth-child(2) { animation-delay: 0.2s; }
.logo path:nth-child(3) { animation-delay: 0.3s; }
.logo path:nth-child(4) { animation-delay: 0.4s; }

/* TEAM */
.logo path:nth-child(5) { animation-delay: 0.3s; }
.logo path:nth-child(6) { animation-delay: 0.4s; }
.logo path:nth-child(7) { animation-delay: 0.5s; }
.logo path:nth-child(8) { animation-delay: 0.6s; }

/* LINE  */
.logo path:nth-child(9) {
    animation-delay: 0.8s;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    fill: transparent;
    stroke: white;
    animation: lineDrawing 1s ease-in forwards 0.9s;
}

@keyframes lineDrawing {
    0% {
        opacity: 0;
        fill: transparent;
    }
    100% {
        opacity: 1;
        fill: white;
    }
}

/* STAR */
.logo path:nth-child(10) {
    animation: starAnimation 0.5s ease-out forwards 1.5s;
    transform-origin: center;
    transform-box: fill-box;
}

@keyframes starAnimation {
    0% {
        opacity: 0;
        transform: rotate(-45deg) scale(0.5);
    }
    50% {
        transform: rotate(20deg) scale(1.4);
    }
    100% {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 1;
}

@media (max-width: 768px) {

    .logo {
        padding-top: 8%;
    }

    .container {
        padding-left: 8%;
        padding-right: 8%;
    }

    /* .heading {
        font-size: 40px;
    } */

    /* .logo svg {
        height: 60px;
    } */
}