/*
Theme Name: Trancemicsoul
Theme URI: https://trancemicsoul.co.za
Author: Blaek Group (PTY)LTD
Author URI: https://trancemicsoul.co.za
Description: ""
Requires at least: 6.1
Tested up to: 6.1
Requires PHP: 8
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


/* Globals ---------- ---------- ---------- */

:root {
    --dark-blue: #080B0D;
    --navy-blue: #12181c;

    --bg-color: var(--navy-blue);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    font-size: 16px;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    background-color: transparent;
}


/* Typography ---------- ---------- ---------- */

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: larger;
}

h2 {
    font-size: large;
}

h3 {
    font-size: medium;
}

p {
    font-size: 1rem;
    max-width: 80ch;
}


/* Fixed Layouts ---------- ---------- ---------- */

#backdrop, #overlay, #highlight_reel, #pagetransition, #loading, #mobile_menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

#backdrop {
    background-color: var(--bg-color);
    pointer-events: none;
    z-index: -1;
}

#overlay {
    pointer-events: none;
    z-index: 1000;
}

#highlight_reel {
    opacity: 0.3;
    z-index: -1;
}

#pagetransition {
    width: 100vw;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    z-index: 1000;
}

#loading {
    width: 100vw;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
    background-color: #000;
    animation: loaded 2s linear;
}

#loading video {
    width: 80vw;
}

@keyframes loaded {
    0% {
        opacity: 0;
    }
    1% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.subscription {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 3rem;
    width: clamp(1rem, 100vw, 30rem);
    background-color: var(--bg-color);
    color: #fff;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    z-index: 998
}

.subscription.active {
    opacity: 1;
    pointer-events: auto;
}

.subscription h2 {
    font-size: 2rem;
    margin: 0;
}

.subscription h3 {
    margin-bottom: 2rem;
}

.subscription .closeBtn {
    padding: 0.4rem 0.8rem;
    background-color: #213f53;
    border-radius: 0.5rem;
    user-select: none;
    cursor: pointer;
}

#mobile_menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 2rem;
    color: #fff;
    background-color: #12181cee;
    backdrop-filter: blur(5px);
    filter: blur(6px);
    transition: 0.3s all ease-in-out;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
}

#mobile_menu.active {
    opacity: 1;
    pointer-events: auto;
    filter: blur(0);
}

#mobile_menu #nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
    font-size: 2rem;
}

#mobile_menu #links {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 2rem 0;
    font-size: 1rem;
}


/* Header ---------- ---------- ---------- */

#header {
    position: relative;
    display: block;
    margin: 0;
    padding: 0 10%;
    width: 100%;
    height: 4rem;
    color: #fff;
    z-index: 999;
}

@media screen and (max-width: 768px) {
    #header {
        padding: 0 5%;
    }
}

#header .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

#header #logo {
    width: 200px;
    font-weight: 700;
    text-transform: uppercase;
}

#header #logo img {
    width: 100%;
    height: auto;
}

#header #nav {
    display: block;
}

#header #nav ul {
    display: flex;
	flex-direction: row;
	gap: 0.8rem;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#header #nav ul {
    font-size: 0.8rem;
	pointer-events: auto;
    text-transform: uppercase;
}

#header #nav ul li ul.sub-menu {
	display: none;
}

#actions, .actions {
	display: none;
	justify-content: flex-end;
	gap: 0.2rem;
	font-weight: 700;
	font-size: 0.8rem;
}

@media only screen and (max-width: 768px) {
    #header #nav {
        display: none;
    }

	#actions {
		display: flex;
	}
}

.actions_menu-btn {
	display: flex;
    flex-direction: row;
    align-items: center;
	gap: 0.2rem;
	margin: 0.6rem;
	padding: 0.3rem 0.6rem;
	height: min-content;
	background-color: #000;
	/* border: 2px solid #808080; */
	border-radius: 0.5rem;
	color: #fff;
	cursor: pointer;
	pointer-events: auto;	
}

.actions_menu-btn:hover {
	background-color: #333;
}

.actions_menu-btn span {
    font-size: 16px;
    color: inherit;
	pointer-events: none;
}

.actions_menu-btn_svg {
	width: 16px;
	height: 16px;
	stroke: #fff;
}


#home_header {
    position: relative;
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 10vw;
    height: 4rem;
    z-index: 999;
}

@media screen and (max-width: 768px) {
    #home_header {
        display: flex;
        padding: 0 10vw;
    }
}

#home_logo {
    width: 200px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

#home_logo img {
    width: 200px;
    height: auto;
}

#home_menu_btn {
    display: flex;
    flex-direction: row;
    align-items: center;
	gap: 0.2rem;
	margin: 0.6rem;
	padding: 0.3rem 0.6rem;
	height: min-content;
	background-color: #000;
	/* border: 2px solid #808080; */
	border-radius: 0.5rem;
	color: #fff;
	cursor: pointer;
	pointer-events: auto;	
}

#home_menu_btn_text {
    color: inherit;
    font-size: 16px;
}

#home_menu_btn_svg {
    width: 16px;
    height: 16px;
}


/* Hero ---------- ---------- ---------- */

#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90vh;
    color: #fff;
}

#hero .title {
    font-size: clamp(2rem, 10vw, 8rem);
    font-weight: 700;
    text-transform: uppercase;
    justify-self: end;
}

#hero .title span {
    display: none;
}

#hero .title img {
    width: 80vw;
    height: auto;
}

#hero .links {
    justify-self: start;
}

#hero .links ul {
    display: flex;
	flex-direction: row;
    justify-content: space-between;
	gap: clamp(1rem, 10vw, 6rem);
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#hero .links ul {
    font-size: 1.5rem;
	pointer-events: auto;
    text-transform: uppercase;
}

#hero .links ul li ul.sub-menu {
	display: none;
}


/* Contact ---------- ---------- ---------- */

#contact {
    padding: 2rem 10vw;
    color: #fff;
}

@media screen and (max-width: 768px) {
    #contact {
        padding: 3rem 5vw;
    }
}


#contact h2.heading {
    font-size: 3rem;
}

#contact h3 {
    font-size: 1.5rem;
}

.info_email {
    display: flex;
    flex-wrap: nowrap;
}

.info_email_link {
    padding: 0.4rem 1rem;
    background-color: var(--bg-color);
    overflow: hidden;
    padding: 0.4rem 0.6rem;
    border: 1px solid #fff;
    text-align: center;
    border-radius: 0.5rem 0 0 0.5rem;
}

.info_email_copy {
    position: relative;
    padding: 0.4rem 1rem;
    color: #000;
    background: #fff;
    border: 1px solid #fff;
    user-select: none;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
    border-radius: 0 0.5rem 0.5rem 0;
}

.info_email_copy.active {
    transition: 0.3s all ease-in-out;
}

.info_email_copy.active::after {
    content: 'Email copied!';
    position: absolute;
    top: -50px;
    left: 0;
    padding: 0.2rem 0.4rem;
    background-color: #499b43;
    color: #fff;
    animation: show 0.3s linear;
}

@keyframes show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.info_email_copy:hover {
    color: #fff;
    background: #000;
    border: 1px solid #fff;
}

.info_email_copy:active {
    color: #fff;
    background: #535353;
    border: 1px solid #fff;
}

#contact .social_links, #contact .streaming_links {
    display: flex;
    gap: 0.5rem;
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 20px;
}


@media screen and (max-width: 768px) {
    .info_email {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .info_email_link {
        margin: 0;
        border-radius: 0.5rem;
    }

    .info_email_copy {
        border-radius: 0.5rem;
    }
}


/* Footer ---------- ---------- ---------- */

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem 10vw;
    color: #fff;
}

.footer_links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 1024px) {
    footer {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 10vw;
        color: #fff;
    }
}

@media screen and (max-width: 768px) {
    footer {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 5vw;
        color: #fff;
    }
}