/* ------------------- universal -------------------*/

@import url('https://fonts.googleapis.com/css2?family=Monoton&family=Varela+Round&display=swap');

/* fonts */
.varela-round-regular {
    font-family: "Varela Round", sans-serif;
    font-weight: 400;
    font-style: normal;
}


.monoton-regular {
    font-family: "Monoton", sans-serif;
    font-weight: 400;
    font-style: normal;
}

a[href="#"] {
    cursor: pointer;
    outline: none;
}

.wp-block-site-title,
.wp-block-post-date,
.wp-block-post-navigation-link {
    display: none !important;
}

.wp-block-group.has-foreground-color {
    display: none !important;
}

* {
    box-sizing: border-box;
}

html,
body {
    display: block;
    margin: 0;
    background-color: black;
    color: white;
    max-width: 100%;
    font-family: "Varela Round", sans-serif;
}

/* logo */
.logo {
    margin-right: 5px;
}

.logo img {
    width: 300px;
    height: auto;
}

/* title and headings */
.title {
    padding: 60px 20px;
    border-bottom: 5px solid #f0f;
    font-family: "Monoton", sans-serif !important;
}

.rocks {
    color: #59dffd !important;
    text-shadow: 2px 2px 8px #3135c3;
    font-family: "Monoton", sans-serif !important;
}

.title h1 {
    font-size: 3em;
    color: #ff00cc;
    text-shadow: 2px 2px 8px #000;
    font-family: "Monoton", sans-serif !important;
}

.title h1 .highlight {
    color: #3135c3;
}

.subtitle {
    font-size: 1.2em;
    margin-top: 10px;
}

/* site header */
.site-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    padding: 15px;
    background-color: black;
    border-bottom: 4px solid #ff00c8;
    flex-wrap: wrap;
    top: 0;
    z-index: 1000;
    height: auto;
}

/* navigation */
.main-nav {
    color: #59dffd;
    font-family: "Varela Round", sans-serif;
}

.main-nav ul {
    font-family: "Varela Round", sans-serif;
    box-shadow: none !important;
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: flex-end;
    flex-wrap: wrap;
}

.main-nav>ul>li {
    box-shadow: none !important;
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    width: 200px;
    height: 70px;
    transition: transform .3s;
    position: relative;
    z-index: 10;
    display: block;
}

.main-nav>ul>li>a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 16px;
    background-color: #1a1a1a;
    border: 3px solid #ff00c8;
    border-radius: 0 0 40% 10% / 0 0 30% 20%;
    color: #59dffd;
    text-decoration: none;
    font-size: large;
    line-height: 1.3;
    box-sizing: border-box;
    transition: transform .3s, background-color .3s;
}

.main-nav>ul>li>a:hover {
    transform: scale(1.05);
    background-color: #2b2b2b;
}

.main-nav li:hover {
    box-shadow: none !important;
    transform: scale(1.05);
}

.main-nav a {
    box-shadow: none !important;
    text-decoration: none;
    color: #59dffd;
    display: block;
    font-size: 14px;
    line-height: 1.3;
    cursor: pointer;
    font-size: large;
}

/* dropdown */
.main-nav>ul>li>ul.dropdown {
    box-shadow: none !important;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    border: 3px solid #ff00c8;
    border-top: none;
    border-radius: 0 0 10px 10px;
    z-index: 100;
    min-width: 180px;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-nav>ul>li:hover>ul.dropdown {
    box-shadow: none !important;
    display: flex;
}

.main-nav>ul>li>ul.dropdown>li {
    box-shadow: none !important;
    padding: 10px;
    width: 100%;
    border-radius: 0 0 10px 10px;
    box-sizing: border-box;
}

.main-nav>ul>li>ul.dropdown>li:not(:last-child) {
    border-bottom: 1px solid #ff00c8;
}

.main-nav>ul>li>ul.dropdown>li>a {
    font-size: 14px;
    color: #00eaff;
    text-decoration: none;
    display: block;
    padding: 8px 12px;
}

.main-nav>ul>li>ul.dropdown>li>a:hover {
    background-color: #2b2b2b;
    color: #ff00c8;
    border-radius: 0 0 10px 10px;
}

/* footer */
.footer {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    border-top: 2px solid hotpink;
    margin-top: 50px;
}

.footer-text {
    color: #59dffd;
    font-size: 18px;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #3135c3;
    font-family: "Varela Round", sans-serif;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 5px #59dffd);
    transition: all .3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px #ff00ff);
}

/* ------------------- landing page ------------------- */

.landing-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0 1rem;
    font-family: "Varela Round", sans-serif;
    box-sizing: border-box;
}

.landing-container {
    margin-left: 15em;
    padding: 0 1rem;
    width: 100%;
    max-width: 480px;
    align-items: center;
}

.landing-container img {
    display: block;
}

.landing-title {
    font-size: 56px !important;
    color: #f9419f;
    text-shadow: 2px 2px 8px #691942;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: "Monoton", sans-serif !important;
}

.landing-title .rocks {
    color: #59dffd !important;
    text-shadow: 2px 2px 8px #3135c3;
    font-family: "Monoton", sans-serif !important;
}

.enter-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    font-family: "Varela Round", sans-serif !important;
    background-color: #59dffd;
    color: black;
    border: 2px solid #f9419f;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: center;
    box-shadow: 0 0 10px #59dffd, 0 0 20px #59dffd;
}

.enter-button:hover {
    background-color: #ff00ff;
    color: white;
    box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

.landing-container p {
    margin: 0 auto 20px;
    text-align: center;
}

.hidden-text {
    color: #000000;
    font-size: 1px;
}


/* ------------------- homepage ------------------- */


.homepage .landing-title {
    font-size: 80px !important;
}

.homepage .subheader {
    font-weight: bold;
}

.home-gif {
    width: 800px;
    height: auto;
    justify-content: center;
}

.resolution {
    font-size: 48px;
    color: #ff00cc;
    margin-bottom: 30px;
}

.section {
    font-family: "Varela Round", sans-serif;
    padding: 40px 20px;
    background: #121212;
}

.section h2 {
    color: #59dffd;
    font-family: "Monoton", sans-serif;
    font-size: 2em;
    margin-bottom: 20px;
}

.section p {
    max-width: 800px;
    margin: auto;
    font-size: 1.1em;
    line-height: 1.6;
}

.link {
    text-decoration: underline;
    font-weight: bold;
}

/* ------------------- synopsis ------------------- */

/* ------------------- auditions ------------------- */

.auditions .res {
    color: #f9419f;
    text-shadow: 2px 2px 8px #691942;
}

.auditions h2 {
    font-family: "Monoton", sans-serif;
    font-weight: bold;
    font-size: 48px;
    text-decoration: underline;
}

.auditions h3 {
    font-size: 24px;
    font-weight: bold;
    text-decoration: underline;
}

.character {
    font-weight: bold;
    text-decoration: underline;
}

.requirements {
    font-weight: bold;
    font-style: italic;
}

/* ------------------- who are we -------------------*/
.wheel-gif {
    width: 300px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.site-header img {
    width: 200px !important;
    display: block !important;
}

/* ------------------- about us -------------------*/
.gallery-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 0 16px;
}

.gallery-2x2 img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform .3s ease;
    cursor: pointer;
}

.gallery-2x2 img:hover {
    transform: scale(1.05);
}

.about-logo img {
    width: auto;
    max-width: 350px;
    height: auto;
}

/* ------------------- media -------------------*/
.vid-desc a {
    color: #59dffd;
}

.media-wrapper,
.media-header {
    width: 80%;
    max-width: 100vw;
}

/* ------------------- responsive media queries ------------------- */
@media (max-width: 768px) {

    /* ------- universal ------- */

    html,
    body {
        margin-right: 2px;
        padding: 0;
        max-width: 100vw;

    }

    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo img {
        width: 200px;
    }

    .media-header ul {
        max-width: 60% !important;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 6px;
        align-items: flex-start;
    }

    .main-nav>ul>li {
        width: 100%;
        max-width: 100%;
        padding: 6px 0;
        height: auto;
        border-radius: 8px;
    }

    .main-nav>ul>li>a {
        display: block;
        width: 100%;
        padding: 10px 12px;
        font-size: 14px;
        background-color: #1a1a1a;
        border: 3px solid #ff00c8;
        border-radius: 8px;
        color: #59dffd;
        text-decoration: none;
        box-sizing: border-box;
    }

    .main-nav>ul>li>ul.dropdown {
        position: static;
        display: none;
        border: none;
        box-shadow: none !important;
        margin-top: 5px;
        padding-left: 20px;
    }

    .main-nav>ul>li:focus-within>ul.dropdown,
    .main-nav>ul>li:hover>ul.dropdown {
        display: flex;
        flex-direction: column;
    }

    .main-nav>ul>li>ul.dropdown>li>a {
        font-size: 16px;
        padding: 12px 20px;
    }

    /* ------- landing page ------- */

    .landing-page {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        max-width: 80vw;
    }

    .landing-title {
        font-size: 9.5vw !important;
    }

    .landing-container {
        padding: 0 16px;
        margin-left: 0em;
        box-sizing: border-box;
        text-align: center;
    }

    .landing-img {
        margin-right: 10em;
        width: auto;
    }

    .enter-button {
        padding: 12px 24px;
        font-size: 18px;
    }


    /* ------- homepage ------- */

    .homepage {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        max-width: 80vw !important;
    }

    .homepage .landing-title {
        font-size: 40px !important;
    }

    /* ------- synopsis ------- */
    .synopsis {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        max-width: 80vw !important;
    }

    .workshop .rocks {
        font-size: 40px !important;

    }

    /* ------- auditions ------- */
    .auditions {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        max-width: 80vw !important;
    }

    .auditions h1 {
        font-size: 48px !important;
    }

    .auditions h2 {
        font-size: 32px !important;
    }

    .auditions img {
        max-width: 80vw;
    }

    /* ------- media ------- */

    .media-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        max-width: 100vw !important;
    }

    .gallery-2x2 {
        grid-template-columns: 1fr;
        max-width: 100vw;
        padding: 0 12px;
    }

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

    .media-wrapper .is-type-video {
        max-width: 60vw !important;
        height: auto;
    }
}