* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

:root {
    --black-950: #000000;
    /* Main Background color */
    --black-900: #3D3D3D;
    /* Secondary Background color */
    --black-800-opacity-20p: #45454533;
    /* Navbar color */
    --brand-color-950: #441206;
    --brand-color-500: #FB660A;
    --brand-color-500-opacity-30p: #FB660A4D;
    --brand-color-200: #FFD5A9;
    --brand-color-200-opacity-30p: #FFD5A94D;
    --brand-color-050: #FFF6ED;
    --accent-color-500: #0A9FFB;
    --accent-color-500-opacity-30p: #0A9FFB4D;
    --accent-color-200: #b7e2ff;
    --accent-color-200-opacity-30p: #b7e2ff4D;
    --accent-color-500-opacity-30p: #0A9FFB4D;
}

body {
    min-height: 100vh;
    background-color: var(--black-950);
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2em 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black-800-opacity-20p);
    backdrop-filter: blur(20px);
    z-index: 1000;
    margin: 0 auto;
    left: 0;
    right: 0;
}

ul {
    display: flex;
    align-items: center;
    gap: 3em;
}

nav ul a {
    color: var(--brand-color-050);
    opacity: 0.7;
    transition: 0.2s ease-in-out;
}

nav ul a:hover {
    opacity: 1;
}

.gradient-button {
    padding: 1em 2em;
    background-color: var(--brand-color-500);
    border: none;
    color: var(--black-050);
    border-radius: 1000px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.gradient-button::after {
    content: '';
    position: absolute;
    height: 105%;
    width: 102%;
    border-radius: 1000px;
    background-image: linear-gradient(to bottom right, var(--accent-color-500), var(--accent-color-200));
    z-index: -1;
}

.gradient-button:hover {
    z-index: 0;
    color: var(--brand-color-950);
    box-shadow: 40px 0 100px var(--accent-color-500-opacity-30p), -40px 0 100px var(--accent-color-200-opacity-30p);
}

span {
    background: linear-gradient(to bottom, var(--brand-color-500), var(--brand-color-200));
    background-clip: text;
    color: transparent;
}

#menu {
    color: var(--brand-color-050);
    font-size: 3em;
    display: none;
}

section {
    min-height: 100vh;
    padding: 5% 15%;
}

#home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2em;
    color: var(--brand-color-050);
}

#home img {
    width: 16vw;
    border-radius: 50%;
    margin-top: 3em;
}

.info-box {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0.5em;
    max-width: 600px;
}

.info-box h1 {
    font-size: 4.5em;
    font-weight: 600;
}

.info-box h2 {
    font-size: 2em;
    font-weight: 400;
}

.info-box h3 {
    font-size: 1.5em;
    font-weight: 200;
}

#about {
    background-color: var(--black-900);
}

.about-box {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 2em;
}

#about img {
    width: 16vw;
    border-radius: 50%;
    margin-top: 1em;
    align-self: center;
}

#about .video-player {
    margin: 1em;
    width: 60%;
    align-self: center;
    border-radius: 1em;
    border: 3px solid var(--accent-color-500-opacity-30p);
    overflow: hidden;
    position: relative;
}

.about-box p {
    color: var(--brand-color-050);
    opacity: 0.8;
    font-size: 1.5em;
}

.about-box a span:hover {
    color: var(--brand-color-050);
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

#creations {
    background-color: var(--black-950);
}

.custom-header {
    text-align: center;
    font-size: 3em;
    margin: 0.5em 0;
}

.creations-container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 60%;
    gap: 2em;
}

.card-box {
    border: 3px solid var(--brand-color-200-opacity-30p);
    border-radius: 0.5em;
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    object-fit: cover;
    padding: 1em;
    gap: 1em;
    color: var(--brand-color-050);
    transition: 0.3s ease-in-out;
}

.card-box p {
    opacity: 0.8;
}

.card-box h1 {
    font-size: 2em;
}

.card-box img {
    min-width: 25px;
    border-radius: 0.5em;
    border: 3px solid var(--brand-color-200-opacity-30p);
}

#gallery {
    background-color: var(--black-900);
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
}

.gallery-container img {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 400px;
    border-radius: 0.5em;
    border: 3px solid var(--brand-color-200-opacity-30p);
}


#contact {
    background-color: var(--black-950);
}

footer {
    margin: 4em 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
    bottom: 0;
    background-color: var(--accent-color-500-opacity-30p);
    border-radius: 2em;
    border: 3px solid var(--brand-color-200-opacity-30p);
    width: 100%;
    padding: 1em;
}

.footer-box span {
    font-size: 1em;
    display: block;
    transition: 0.2s ease-in-out;
}

.footer-box a span:hover {
    color: var(--brand-color-050);
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.info-trademark {
    margin: 2em 0;
}

.info-trademark span {
    font-size: 0.8em;
    text-align: center;
    display: block;
    color: var(--brand-color-050);
    transition: 0.2s ease-in-out;
}

.social-icons {
    display: block;
    justify-content: center;
    align-items: center;
    gap: 0.25em;
}

.social-icons span {
    font-size: 2em;
}

.social-icons i {
    transition: 0.2s ease-in-out;
}

.social-icons i:hover {
    color: var(--brand-color-050);
    cursor: pointer;
}


@media(max-width:968px) {
    section {
        padding: 8em 15%;
    }

    #menu {
        display: block;
    }

    .links {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        padding: 1em 3em;
        color: var(--brand-color-050);
        display: flex;
        flex-direction: column;
        text-align: center;
        background-color: var(--black-900);
        display: none;
    }

    .links a {
        margin: 2em 0;
        display: block;
        font-size: 1.5em;
        color: var(--brand-color-050);
    }

    .links.active {
        display: block;
    }

    #home h1 {
        font-size: 4em;
    }

    #home h2 {
        font-size: 2.5em;
    }

    #home h3 {
        font-size: 1.5em;
    }

    #home img {
        width: 32vw;
    }

    #about {
        flex-direction: column;
    }

    #about img {
        width: 32vw;
    }

    #about ul {
        font-size: 1em;
    }

    #about .video-player {
        width: 80%;
    }

    .creations-container {
        width: 80%;
    }

    footer {
        margin: 2em 0;
    }

    .footer-box span {
        font-size: 1.5em;
    }

    .social-icons span {
        font-size: 1.5em;
    }

    .gallery-container img {
        max-width: 90%;
    }
}

@media(max-width:768px) {
    #home h1 {
        font-size: 2.0em;
    }

    #home h2 {
        font-size: 1.5em;
    }

    #home h3 {
        font-size: 1em;
    }

    #home img {
        width: 80vw;
    }

    #about img {
        width: 32vw;
    }

    #about .video-player {
        width: 100%;
    }

    .creations-container {
        width: 100%;
    }

    .card-box h1 {
        font-size: 1em;
    }

    .custom-header {
        font-size: 1.5em;
    }

    .gallery-container img {
        max-width: 100%;
    }

    footer {
        margin: 1em 0;
    }

    .footer-box p {
        font-size: 1em;
    }

    .footer-box span {
        font-size: 1.0em;
    }

    .info-trademark span {
        font-size: 0.6em;
    }

    .social-icons span {
        font-size: 1.5em;
    }
}