/* GLOBAL STYLES */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Ubuntu", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    margin: 0;
    background-color: #000000;
    color: #FFFFFF;
}

#vignette {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    z-index: 0;
    background-image: radial-gradient(95vh at center, rgba(0,0,0,0), rgba(0,0,0,1));
}

#tso-sizzle {
    position: fixed;
    min-width: 100vw;
    min-height: 100vh;
    top: 50%;
    left: 50vw;
    z-index: -10;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.7;
}

h1 {
    font-size: 1.6rem;
    text-align: center;
}

h2 {
    font-size: 2rem;
    filter: drop-shadow(0px 10px 10px #000000);
    text-align: center;
}

p {
    font-size: 0.8rem;
    line-height: 1.5rem;
}
/* HERO */

#tso-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: rgba (0,0,0,50%);
}

#tso-lockup {
    display: flex;
    width: 100%;
    justify-content: center;
}

.introtext {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 100px);
    height: calc(100% - 100px);
    max-width: 450px;
    max-height: 600px;
    padding: 2rem;
    z-index: 20;
    color: #FFFFFF;
    background-color: rgba(0,0,0,50%);
}

#tso-logo {
    width: 60%;
}

.arrow {
    border: solid #FFFFFF;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 10px;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.frame {
    position: absolute;
    width: 100vw;
    height: 20px;
    background-image: url("../images/frame.svg");
}

/* CONTENT */

#content {
    min-width: 100vw;
    min-height: 100vh;
    background-image: url(../images/brickwall.jpg);
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 80vw;
    max-width: 600px;
    min-height: 90vh;
    z-index: 20;
    padding: 3rem 0;
}

.gallery-item {
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: center;
}

/* VIDEO HOLDER */
.gallery-video {
	position: relative;
    width: 100%;
	padding-bottom: 56.25%;
    height:0;
	overflow: hidden;
	max-width: 100%;
}

.gallery-video iframe, .gallery-video object, .gallery-video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* CONTACT */

#contact {
    min-width: 100vw;
    min-height: 100vh;
    background-image: url("../images/brickwall2.jpg");
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-info {
    text-align: center;
    width: 80vw;
    max-width: 600px;
    z-index: 20;
}

.sociallogos {
    height: 30px;
    padding-right: 1rem;
}

a {
    color: #ffffff;
    font-weight: 700;
}

#callout {
    min-width: 100vw;
    min-height: 20vh;
    background: radial-gradient(#e66465, #9198e5);
    z-index: 20;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.legal {
    font-size: 0.625rem;
    width: 70vw;
    padding-top: 2rem;
    z-index: 20;
    color:#AAAAAA;
}

.legal a {
    font-weight: 300;
    color: #AAAAAA;
}