/* =========================================================
   UMARASTUDIO — STYLE.CSS
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    background: #ffffff;
    color: #10111b;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
    font: inherit;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --black: #0d1020;
    --text: #10111b;
    --grey: #707487;
    --border: #ececf3;

    --pink: #ff2c93;
    --purple: #793cff;
    --blue: #008cff;
    --cyan: #08cce9;

    --radius-small: 12px;
    --radius: 20px;
    --radius-large: 32px;

    --max-width: 1500px;
}


/* =========================================================
   GENERAL
========================================================= */

.section {
    width: 100%;
    max-width: var(--max-width);

    margin-left: auto;
    margin-right: auto;

    padding-left: 48px;
    padding-right: 48px;
}

.eyebrow {
    color: #5f6478;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 5px;
}

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    border-radius: 100px;

    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-dark {
    padding: 14px 25px;

    color: #ffffff;
    background: #0b1022;

    box-shadow:
        0 8px 25px
        rgba(10, 15, 40, 0.15);
}

.button-light {
    color: var(--text);
    background: #ffffff;

    border: 1px solid var(--border);
}

.button-large {
    padding: 18px 28px;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    width: 100%;
    max-width: 1600px;
    height: 88px;

    margin: 0 auto;
    padding: 0 48px;

    display: flex;
    align-items: center;

    position: relative;
    z-index: 20;

    background: #ffffff;
}


/* =========================================================
   LOGO
========================================================= */

.brand {
    min-width: 210px;

    display: flex;
    align-items: center;

    gap: 10px;

    text-decoration: none;
}


/* carré du logo */

.brand-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #ff2c93,
            #793cff,
            #008cff
        );
}


/* image dans le carré */

.brand-icon img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* UMARA STUDIO */

.brand-name {
    display: flex;
    flex-direction: column;

    color: #10111b;

    font-size: 21px;
    font-weight: 900;

    line-height: 0.88;
}

.brand-name strong,
.brand-name span {
    display: block;

    font-weight: 900;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    margin-left: auto;
    margin-right: auto;

    display: flex;
    align-items: center;

    gap: 44px;

    font-size: 14px;
    font-weight: 500;
}

.navigation a {
    position: relative;

    padding: 32px 0;
}

.navigation a:hover {
    color: #793cff;
}

.navigation a.active::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 22px;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #793cff,
            #008cff
        );
}


/* =========================================================
   ACTIONS HEADER
========================================================= */

.header-actions {
    display: flex;
    align-items: center;

    gap: 12px;
}

.icon-button {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #f7f7fa;

    color: #10111b;

    font-size: 23px;

    cursor: pointer;
}

.header-actions .button-dark {
    padding: 14px 25px;

    white-space: nowrap;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    width: 100%;
    max-width: 1600px;
    min-height: 610px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    overflow: hidden;

    background: #ffffff;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    min-width: 0;

    padding:
        60px
        20px
        50px
        70px;

    position: relative;
    z-index: 3;

    display: flex;

    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    margin-top: 25px;

    color: var(--text);

    font-size: clamp(60px, 6vw, 94px);
    font-weight: 900;

    line-height: 0.91;

    letter-spacing: -5px;
}

.hero h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--pink),
            var(--purple),
            var(--blue),
            var(--cyan)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    max-width: 580px;

    margin-top: 28px;

    color: #555b6e;

    font-size: 18px;
}

.hero-buttons {
    margin-top: 28px;

    display: flex;

    align-items: center;

    gap: 15px;
}

.play-small {
    font-size: 11px;
}


/* =========================================================
   HERO STATS
========================================================= */

.hero-stats {
    margin-top: 38px;

    display: flex;

    align-items: stretch;
}

.stat {
    padding-right: 40px;

    margin-right: 40px;

    border-right:
        1px solid
        #dedfe7;
}

.stat:last-child {
    padding-right: 0;
    margin-right: 0;

    border-right: 0;
}

.stat strong {
    display: block;

    color: #2024ae;

    font-size: 38px;
    font-weight: 900;

    line-height: 1;
}

.stat:nth-child(2) strong {
    color: var(--purple);
}

.stat span {
    display: block;

    margin-top: 8px;

    color: #555b6c;

    font-size: 13px;
}


/* =========================================================
   HERO IMAGE — font.png
========================================================= */

.hero-visual {
    min-width: 0;
    min-height: 610px;

    position: relative;

    overflow: hidden;

    background: #ffffff;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 610px;

    object-fit: cover;
    object-position: center;

    display: block;
}


/* FONDU ENTRE TEXTE ET IMAGE */

.hero-visual::after {
    content: "";

    width: 70px;

    position: absolute;

    z-index: 2;

    top: 0;
    bottom: 0;
    left: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            rgba(255, 255, 255, 0) 100%
        );
}


/* =========================================================
   CATEGORIES
========================================================= */

.categories {
    width: calc(100% - 40px);
    max-width: 1540px;

    margin: -15px auto 0;

    padding: 28px;

    position: relative;
    z-index: 5;

    display: grid;

    grid-template-columns:
        repeat(9, minmax(0, 1fr));

    gap: 14px;

    border-radius: 34px;

    background: rgba(255, 255, 255, 0.97);

    box-shadow:
        0 15px 50px
        rgba(24, 26, 60, 0.08);
}

.category {
    min-width: 0;
    min-height: 105px;

    padding: 12px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 3px;

    border-radius: 17px;

    color: #151625;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f7f4ff
        );

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.category:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 30px
        rgba(60, 50, 120, 0.10);
}

.category.active {
    color: #ffffff;
    background: #0b1022;
}

.category-icon {
    margin-bottom: 5px;

    color: var(--purple);

    font-size: 25px;
}

.category.active .category-icon {
    color: #ffffff;
}

.category strong {
    font-size: 12px;
}

.category small {
    color: #858899;

    font-size: 11px;
}

.category.active small {
    color: #d0d2da;
}


/* =========================================================
   CREATIONS
========================================================= */

.creations {
    padding-top: 45px;
    padding-bottom: 55px;
}

.section-heading {
    margin-bottom: 25px;

    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 25px;
}

.section-heading h2 {
    font-size: 34px;

    letter-spacing: -1.5px;
}

.section-heading p {
    margin-top: 4px;

    color: #6e7281;
}

.see-all {
    flex-shrink: 0;

    color: #6c2cff;

    font-weight: 700;
}


/* =========================================================
   PROJECT GRID
========================================================= */

.projects-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px 18px;
}

.project-card {
    min-width: 0;

    overflow: hidden;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 7px 25px
        rgba(20, 24, 55, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.project-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 45px
        rgba(20, 24, 55, 0.12);
}

.project-image {
    height: 210px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;
}

.project-tag {
    position: absolute;

    z-index: 2;

    top: 14px;
    left: 14px;

    padding: 6px 12px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.82);

    backdrop-filter: blur(10px);

    font-size: 11px;
}

.project-info {
    min-height: 75px;

    padding: 12px 14px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 10px;
}

.project-info > div {
    min-width: 0;
}

.project-info h3 {
    margin-bottom: 3px;

    font-size: 15px;
}

.project-info p {
    color: #858899;

    font-size: 12px;
}

.project-arrow {
    min-width: 36px;
    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #1768ff;
    background: #ffffff;

    box-shadow:
        0 3px 15px
        rgba(20, 20, 50, 0.12);

    font-size: 18px;
}


/* =========================================================
   PROJECT VISUALS
========================================================= */

.gradient-pink {
    background:
        linear-gradient(
            135deg,
            #ff376f,
            #73136e,
            #101127
        );
}

.gradient-sunset {
    background:
        linear-gradient(
            135deg,
            #fb5f82,
            #65359c,
            #131c48
        );
}

.gradient-purple {
    background:
        radial-gradient(
            circle,
            #30d8ff,
            #6d20ff 50%,
            #10102f
        );
}

.gradient-app {
    background:
        linear-gradient(
            135deg,
            #fff0ed,
            #ffd0da,
            #b7c8ff
        );
}

.gradient-game {
    background:
        linear-gradient(
            135deg,
            #77c99d,
            #8fd1e2,
            #48679c
        );
}

.gradient-3d {
    background:
        linear-gradient(
            135deg,
            #e7e7e7,
            #a6a8af,
            #50535c
        );
}

.gradient-lab {
    background:
        radial-gradient(
            circle,
            #ff69c7,
            #7242c7,
            #15164c
        );
}

.fake-art {
    color: #ffffff;

    font-size: 28px;
    font-weight: 900;

    line-height: 0.9;

    text-align: center;
}

.big-placeholder {
    color: rgba(255, 255, 255, 0.8);

    font-size: 65px;
    font-weight: 900;
}


/* =========================================================
   VIDEO
========================================================= */

.play-button {
    width: 58px;
    height: 58px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #ffffff;

    background:
        rgba(5, 10, 30, 0.65);

    border: 2px solid #ffffff;

    font-size: 18px;

    backdrop-filter: blur(10px);
}


/* =========================================================
   MUSIC
========================================================= */

.music-placeholder {
    background:
        linear-gradient(
            135deg,
            #031725,
            #063f55
        );
}

.waveform {
    height: 90px;

    display: flex;

    align-items: center;

    gap: 4px;
}

.waveform i {
    display: block;

    width: 4px;

    border-radius: 5px;

    background: #1ce4ff;
}

.waveform i:nth-child(1)  { height: 20px; }
.waveform i:nth-child(2)  { height: 50px; }
.waveform i:nth-child(3)  { height: 35px; }
.waveform i:nth-child(4)  { height: 75px; }
.waveform i:nth-child(5)  { height: 45px; }
.waveform i:nth-child(6)  { height: 80px; }
.waveform i:nth-child(7)  { height: 40px; }
.waveform i:nth-child(8)  { height: 65px; }
.waveform i:nth-child(9)  { height: 30px; }
.waveform i:nth-child(10) { height: 85px; }
.waveform i:nth-child(11) { height: 55px; }
.waveform i:nth-child(12) { height: 35px; }
.waveform i:nth-child(13) { height: 70px; }
.waveform i:nth-child(14) { height: 40px; }
.waveform i:nth-child(15) { height: 65px; }
.waveform i:nth-child(16) { height: 25px; }
.waveform i:nth-child(17) { height: 50px; }
.waveform i:nth-child(18) { height: 75px; }
.waveform i:nth-child(19) { height: 35px; }
.waveform i:nth-child(20) { height: 55px; }

.music-placeholder .play-button {
    position: absolute;

    left: 20px;
    bottom: 18px;

    width: 45px;
    height: 45px;
}


/* =========================================================
   PHONES
========================================================= */

.phones {
    display: flex;

    align-items: flex-end;

    gap: 5px;

    transform: rotate(-6deg);
}

.phones span {
    display: block;

    width: 58px;
    height: 125px;

    border: 5px solid #181a29;

    border-radius: 13px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #c7d1ff
        );

    box-shadow:
        0 15px 25px
        rgba(20, 20, 60, 0.2);
}

.phones span:nth-child(2) {
    height: 145px;
}


/* =========================================================
   ABOUT — font2.png
========================================================= */

.about {
    width: calc(100% - 96px);
    max-width: var(--max-width);

    margin:
        10px
        auto
        0;

    padding: 0;

    overflow: hidden;

    border-radius: 28px;

    background: #ffffff;
}

.about img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;
}


/* =========================================================
   PHILOSOPHY
========================================================= */

.philosophy {
    min-height: 220px;

    padding-top: 40px;
    padding-bottom: 40px;

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    align-items: center;
}

.quote {
    position: relative;

    padding-left: 70px;
}

.quote-symbol {
    position: absolute;

    left: 10px;
    top: -20px;

    color: #713cff;

    font-size: 80px;
    font-weight: 900;
}

.quote blockquote {
    font-size: 24px;

    line-height: 1.25;
}

.quote small {
    display: block;

    margin-top: 18px;

    color: #777b8d;

    letter-spacing: 2px;
}

.values {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 30px;
}

.value {
    color: #424655;

    text-align: center;
}

.value span {
    display: block;

    margin-bottom: 10px;

    color: #111522;

    font-size: 32px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    width: 100%;
    max-width: 1600px;
    min-height: 130px;

    margin: 0 auto;

    padding: 30px 48px;

    display: grid;

    grid-template-columns:
        230px
        1fr
        auto
        200px;

    align-items: center;

    gap: 40px;

    border-top:
        1px solid
        var(--border);
}

.footer .brand {
    min-width: 0;
}

.footer .brand-logo {
    width: 145px;
}

.footer-nav {
    display: flex;

    align-items: center;

    gap: 30px;

    font-size: 13px;
}

.socials {
    display: flex;

    align-items: center;

    gap: 18px;

    font-weight: 900;
}

.socials a:nth-child(1) {
    color: #ff0000;
}

.socials a:nth-child(2) {
    color: #f7008a;
}

.socials a:nth-child(3) {
    color: #111111;
}

.socials a:nth-child(4) {
    color: #1676ff;
}

.socials a:nth-child(5) {
    color: #111111;
}

.copyright {
    color: #6d7181;

    font-size: 12px;

    text-align: right;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .navigation {
        gap: 22px;
    }

    .hero {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);
    }

    .hero-content {
        padding-left: 40px;
    }

    .hero h1 {
        font-size: 65px;
    }

    .stat {
        padding-right: 20px;
        margin-right: 20px;
    }

    .categories {
        grid-template-columns:
            repeat(5, minmax(0, 1fr));
    }

    .projects-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .footer {
        grid-template-columns:
            180px
            1fr
            auto;
    }

    .copyright {
        grid-column: 1 / -1;

        text-align: center;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    /* HEADER */

    .header {
        height: 72px;

        padding:
            0
            20px;
    }

    .brand {
        min-width: 0;

        margin-right: auto;
    }

    .brand-logo {
        width: 125px;
    }

    .navigation {
        display: none;
    }

    .header-actions .button {
        display: none;
    }


    /* HERO */

    .hero {
        display: flex;

        flex-direction: column;

        min-height: auto;
    }

    .hero-content {
        padding:
            55px
            22px
            40px;
    }

    .hero h1 {
        font-size: 55px;

        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons .button {
        width: 100%;
    }


    /* STATS */

    .hero-stats {
        display: grid;

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 0;
    }

    .stat {
        min-width: 0;

        margin: 0;

        padding:
            0
            12px;

        text-align: center;
    }

    .stat:first-child {
        padding-left: 0;
    }

    .stat:last-child {
        padding-right: 0;
    }

    .stat strong {
        font-size: 28px;
    }

    .stat span {
        font-size: 10px;
    }


    /* HERO IMAGE */

    .hero-visual {
        width: 100%;

        min-height: 0;

        overflow: visible;
    }

    .hero-visual img {
        width: 100%;
        height: auto;

        min-height: 0;

        object-fit: contain;
    }

    .hero-visual::after {
        display: none;
    }


    /* CATEGORIES */

    .categories {
        width: 100%;

        margin: 0;

        padding: 20px;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        border-radius: 0;
    }


    /* SECTIONS */

    .section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-heading {
        align-items: flex-start;
    }

    .section-heading h2 {
        font-size: 28px;
    }


    /* PROJECTS */

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 230px;
    }


    /* ABOUT / FONT2 */

    .about {
        width: 100%;

        margin-top: 20px;

        border-radius: 0;
    }

    .about img {
        width: 100%;
        height: auto;

        object-fit: contain;
    }


    /* PHILOSOPHY */

    .philosophy {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .quote {
        padding-left: 55px;
    }

    .quote-symbol {
        left: 0;
    }

    .values {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* FOOTER */

    .footer {
        padding:
            40px
            20px;

        grid-template-columns: 1fr;

        justify-items: center;

        gap: 25px;

        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;

        justify-content: center;
    }

    .copyright {
        grid-column: auto;

        text-align: center;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero-content {
        padding-top: 42px;
    }

    .eyebrow {
        font-size: 9px;

        letter-spacing: 3px;
    }

    .hero h1 {
        font-size: 46px;

        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-stats {
        margin-top: 30px;
    }

    .stat strong {
        font-size: 25px;
    }

    .stat span {
        font-size: 9px;
    }

    .categories {
        gap: 10px;
    }

    .category {
        min-height: 95px;
    }

    .section-heading {
        gap: 15px;
    }

    .section-heading h2 {
        font-size: 25px;
    }

    .project-info h3 {
        font-size: 14px;
    }

    .project-info p {
        font-size: 11px;
    }

    .quote blockquote {
        font-size: 20px;
    }
}

.material-symbols-rounded {
    font-family: "Material Symbols Rounded";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "liga";
}