/* ==================================================
   KOVA LABELS
   Main stylesheet
   ================================================== */


/* ==================================================
   RESET
   ================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f7f3eb;
    color: #181818;

    font-family: Arial, Helvetica, sans-serif;

    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}


/* ==================================================
   NAVBAR
   ================================================== */

.navbar {
    width: 100%;
    height: 78px;

    padding: 0 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #f7f3eb;

    border-bottom: 2px solid #181818;

    position: relative;
    z-index: 100;
}


/* Logo */

.logo-link {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.logo-wide {
    display: block;
    width: 88px;
    height: auto;
}

.logo-small {
    display: none;

    width: 40px;
    height: 40px;
}


/* Desktop navigation */

.nav-links {
    display: flex;
    align-items: center;

    gap: 28px;

    font-size: 14px;
    font-weight: bold;
}

.nav-links a {
    display: inline-flex;
    align-items: center;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.nav-links a:hover {
    transform: translateY(-2px) rotate(-2deg);
}

.nav-auditions {
    padding: 11px 19px;

    background: #181818;
    color: #ffffff;

    border: 2px solid #181818;
    border-radius: 999px;
}

.nav-auditions:hover {
    background: #dfff45;
    color: #181818;
}


/* Mobile menu button */

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 2px solid #181818;
    border-radius: 50%;

    background: #dfff45;

    color: #181818;

    font-size: 21px;
    line-height: 1;

    cursor: pointer;
}


/* Mobile menu */

.mobile-menu {
    display: none;
}


/* ==================================================
   HERO
   ================================================== */

.hero {
    width: 100%;
    max-width: 1250px;

    min-height: 650px;

    margin: 0 auto;

    padding: 80px 40px;

    display: flex;
    align-items: center;

    position: relative;
}

.hero-content {
    max-width: 900px;

    position: relative;
    z-index: 2;
}


/* Small label */

.eyebrow {
    display: inline-block;

    margin-bottom: 22px;
    padding: 8px 13px;

    background: #dfff45;

    border: 2px solid #181818;
    border-radius: 999px;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 1px;
}


/* Main heading */

.hero h1 {
    max-width: 900px;

    font-size: 108px;
    line-height: 0.83;

    letter-spacing: -7px;

    font-weight: 900;
}


/* Description */

.hero-description {
    max-width: 480px;

    margin-top: 32px;

    color: #55514a;

    font-size: 18px;
    line-height: 1.5;
}


/* Hero buttons */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}


/* Decorations */

.hero-decoration {
    position: absolute;

    font-weight: 900;

    pointer-events: none;
}

.hero-star {
    top: 115px;
    right: 13%;

    width: 105px;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ff83c8;

    border: 3px solid #181818;
    border-radius: 48% 52% 45% 55%;

    font-size: 55px;

    transform: rotate(12deg);

    box-shadow: 7px 7px 0 #181818;
}

.hero-plus {
    right: 28%;
    bottom: 85px;

    font-size: 50px;

    transform: rotate(-10deg);
}

.hero-note {
    position: absolute;

    right: 40px;
    bottom: 30px;

    color: #77736c;

    font-size: 10px;
    font-weight: bold;

    letter-spacing: 1px;
}


/* ==================================================
   BUTTONS
   ================================================== */

.button {
    min-height: 50px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #181818;
    border-radius: 999px;

    font-size: 14px;
    font-weight: bold;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.button:hover {
    transform: translate(-3px, -3px);

    box-shadow: 5px 5px 0 #181818;
}

.button-dark {
    background: #181818;
    color: #ffffff;
}

.button-light {
    background: #ffffff;
    color: #181818;
}


/* ==================================================
   ARTISTS
   ================================================== */

.artists-section {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    padding: 110px 40px;
}


/* Section heading */

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 45px;

    gap: 30px;
}

.section-label {
    margin-bottom: 14px;

    color: #77736c;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 1px;
}

.section-header h2 {
    max-width: 750px;

    font-size: 70px;
    line-height: 0.88;

    letter-spacing: -5px;
}

.text-link {
    display: inline-block;

    padding-bottom: 4px;

    border-bottom: 2px solid #181818;

    font-size: 14px;
    font-weight: bold;

    white-space: nowrap;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.text-link:hover {
    color: #ff4eaa;

    transform: translateY(-2px);
}


/* ==================================================
   ARTIST CARD
   ================================================== */

.artist-card {
    width: 100%;

    display: grid;

    grid-template-columns: 64% 36%;

    overflow: hidden;

    background: #ffffff;

    border: 3px solid #181818;
    border-radius: 28px;

    box-shadow: 10px 10px 0 #181818;
}


/* Artist image */

.artist-photo {
    min-height: 470px;

    padding: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #cfc4ff;

    position: relative;
}

.artist-photo::before {
    content: "KOVA ARTIST";

    position: absolute;

    top: 20px;
    left: 20px;

    padding: 7px 10px;

    background: #ffffff;

    border: 2px solid #181818;
    border-radius: 999px;

    font-size: 9px;
    font-weight: bold;

    letter-spacing: 1px;

    z-index: 2;
}

.artist-photo img {
    width: 100%;
    max-width: 760px;

    height: auto;
    max-height: 420px;

    object-fit: contain;

    border: 3px solid #181818;
    border-radius: 20px;

    position: relative;
    z-index: 1;
}


/* Artist information */

.artist-details {
    padding: 42px 36px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    gap: 40px;

    background: #fffdf8;

    border-left: 3px solid #181818;
}

.artist-category {
    margin-bottom: 13px;

    color: #77736c;

    font-size: 10px;
    font-weight: bold;

    letter-spacing: 1px;
}

.artist-details h3 {
    font-size: 58px;

    line-height: 0.88;

    letter-spacing: -4px;
}

.artist-description {
    max-width: 300px;

    margin-top: 22px;

    color: #5c5953;

    font-size: 15px;
    line-height: 1.5;
}


/* ==================================================
   ABOUT KOVA
   ================================================== */

.about-section {
    width: 100%;

    min-height: 650px;

    padding: 100px 40px;

    display: grid;

    grid-template-columns: 42% 58%;

    align-items: center;

    gap: 50px;

    background: #ff83c8;

    border-top: 3px solid #181818;
    border-bottom: 3px solid #181818;

    position: relative;

    overflow: hidden;
}


/* Decorative circle */

.about-section::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: 8%;
    top: 70px;

    background: #dfff45;

    border: 3px solid #181818;
    border-radius: 50%;

    transform: rotate(12deg);
}


/* K logo */

.about-logo {
    width: 290px;
    height: 290px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 2;

    transform: rotate(-6deg);
}

.about-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* About text */

.about-text {
    max-width: 650px;

    position: relative;
    z-index: 3;
}

.about-text .section-label {
    color: #181818;
}

.about-text h2 {
    font-size: 72px;

    line-height: 0.88;

    letter-spacing: -5px;
}

.about-text > p {
    max-width: 540px;

    margin-top: 28px;

    color: #2c2529;

    font-size: 17px;
    line-height: 1.55;
}

.about-text .text-link {
    margin-top: 30px;

    border-color: #181818;
}


/* ==================================================
   AUDITIONS
   ================================================== */

.audition-section {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    padding: 150px 40px;

    text-align: center;

    position: relative;
}

.audition-section h2 {
    max-width: 1000px;

    margin: 0 auto;

    font-size: 115px;

    line-height: 0.8;

    letter-spacing: -8px;

    font-weight: 900;
}

.audition-section > p {
    max-width: 500px;

    margin: 30px auto;

    color: #66615b;

    font-size: 18px;
    line-height: 1.5;
}


/* Audition decoration */

.audition-star {
    position: absolute;

    top: 90px;
    left: 9%;

    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dfff45;

    border: 3px solid #181818;
    border-radius: 50%;

    font-size: 32px;

    transform: rotate(-12deg);
}


/* ==================================================
   FOOTER
   ================================================== */

.footer {
    padding: 50px 40px;

    background: #181818;

    color: #ffffff;
}

.footer-main {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 40px;
}

.footer-logo {
    width: 115px;
    height: auto;
}

.footer-main p {
    max-width: 320px;

    color: #aaa6a0;

    font-size: 13px;
    line-height: 1.5;
}

.footer-bottom {
    margin-top: 55px;
    padding-top: 20px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-top: 1px solid #44413e;

    color: #85817c;

    font-size: 12px;
}

.footer-links {
    display: flex;

    gap: 20px;
}

.footer-links a {
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #dfff45;
}


/* ==================================================
   TABLET
   ================================================== */

@media (max-width: 900px) {

    .hero h1 {
        font-size: 78px;
    }

    .hero-star {
        right: 7%;
    }

    .artist-card {
        grid-template-columns: 1fr;
    }

    .artist-details {
        border-left: 0;
        border-top: 3px solid #181818;
    }

    .about-section {
        grid-template-columns: 1fr;

        padding-top: 120px;
    }

    .about-section::before {
        right: 5%;
    }

    .about-logo {
        width: 230px;
        height: 230px;
    }

    .audition-section h2 {
        font-size: 80px;
    }

}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 700px) {

    /* Navbar */

    .navbar {
        height: 70px;

        padding: 0 20px;
    }

    .logo-wide {
        display: none;
    }

    .logo-small {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-button {
        display: flex;

        align-items: center;
        justify-content: center;
    }


    /* Mobile menu */

    .mobile-menu {
        display: none;

        width: 100%;

        padding: 24px 20px;

        background: #f7f3eb;

        border-bottom: 2px solid #181818;

        position: relative;

        z-index: 90;
    }

    .mobile-menu.open {
        display: flex;

        flex-direction: column;

        gap: 18px;
    }

    .mobile-menu a {
        font-size: 22px;
        font-weight: bold;
    }


    /* Hero */

    .hero {
        min-height: 600px;

        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 57px;

        letter-spacing: -4px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-star {
        top: 65px;
        right: 20px;

        width: 65px;
        height: 65px;

        font-size: 30px;

        box-shadow: 5px 5px 0 #181818;
    }

    .hero-plus {
        right: 25px;
        bottom: 90px;

        font-size: 35px;
    }

    .hero-note {
        right: 20px;
    }


    /* Artists */

    .artists-section {
        padding: 80px 20px;
    }

    .section-header {
        display: block;
    }

    .section-header h2 {
        margin-bottom: 25px;

        font-size: 52px;

        letter-spacing: -4px;
    }


    /* Artist card */

    .artist-card {
        border-radius: 20px;

        box-shadow: 6px 6px 0 #181818;
    }

    .artist-photo {
        min-height: 0;

        padding: 20px;
    }

    .artist-photo img {
        width: 100%;

        max-height: none;
    }

    .artist-details {
        padding: 30px 25px;
    }

    .artist-details h3 {
        font-size: 50px;

        letter-spacing: -3px;
    }


    /* About */

    .about-section {
        min-height: 0;

        padding: 80px 20px;

        gap: 45px;
    }

    .about-section::before {
        width: 100px;
        height: 100px;

        top: 35px;
        right: 20px;
    }

    .about-logo {
        width: 170px;
        height: 170px;
    }

    .about-text h2 {
        font-size: 52px;

        letter-spacing: -4px;
    }


    /* Auditions */

    .audition-section {
        padding: 100px 20px;
    }

    .audition-section h2 {
        font-size: 65px;

        letter-spacing: -5px;
    }

    .audition-star {
        top: 50px;
        left: 20px;

        width: 55px;
        height: 55px;

        font-size: 25px;
    }


    /* Footer */

    .footer {
        padding: 40px 20px;
    }

    .footer-main {
        display: block;
    }

    .footer-main p {
        margin-top: 20px;
    }

    .footer-bottom {
        display: block;

        margin-top: 40px;
    }

    .footer-links {
        margin-top: 15px;

        flex-wrap: wrap;
    }

}