/* [google fonts] */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* [SITE WIDE STYLES] */
* {
    padding:0;
    margin:0;
    box-sizing:border-box;
}
  
:root {
    --color-black:rgba(0, 0, 0, 1);
    --color-white:rgba(255, 255, 255, 1);
    --color-accent:rgba(255, 0, 0, 1);
  
}
  
html {
    background-color: var(--color-white);
    color:var(--color-black);
}
  
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
}
  
  
h1, h2, h3, h4, h5, h6 {
    
    line-height:1em;
    font-weight: 900;
    letter-spacing: -.04em;
}
  
p {
    line-height:1.5em;
    font-weight:300; 
    margin: 0 0 1em 0;
}
  
strong {
    font-weight:500;
}
  
a {
    text-decoration:none;
}
  
a:hover {
    text-decoration:underline;
}

.smartlink__button {
    display: inline-block;
    margin: 0 0 0 0;
    padding: .5em 1em;
    color: var(--color-white);
    background-color: var(--color-accent);
}

.smartlink__button:hover {
    text-decoration: none;
}

nav {
    padding: 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    background-color: var(--color-black);
}

nav li {
    margin:.5em 1em .5em 1em;
    padding:0;
}

.language ul {
    display: flex;
    justify-content: end;
    list-style: none;
    background-color: var(--color-black);
}


.language a {
    display: inline-block;
    margin: 0 0 0 0;
    font-size: .6em;
    font-weight: 700;
    padding: .5em 1em;
    font-size: .6em;
    font-weight: 700;
    text-transform:uppercase;
    color: var(--color-black);
    background-color: var(--color-white);
}


.language a:hover {
    text-decoration: none;
}



.social__facebook {
    display:block;
    width:2rem;
    height:2rem;
    text-indent:-1000px;
    overflow:hidden;
    background-repeat:no-repeat;
    background-position: top left;
    background-size:100% 100%;
    background-image: url(images/social__facebook.png);
}

.social__instagram {
    display:block;
    width:2rem;
    height:2rem;
    text-indent:-1000px;
    overflow:hidden;
    background-repeat:no-repeat;
    background-position: top left;
    background-size:100% 100%;
    background-image: url(images/social__instagram.png);
}

.social__tiktok {
    display:block;
    width:2rem;
    height:2rem;
    text-indent:-1000px;
    overflow:hidden;
    background-repeat:no-repeat;
    background-position: top left;
    background-size:100% 100%;
    background-image: url(images/social__tiktok.png);
}

.social__youtube {
    display:block;
    width:2rem;
    height:2rem;
    text-indent:-1000px;
    overflow:hidden;
    background-repeat:no-repeat;
    background-position: top left;
    background-size:100% 100%;
    background-image: url(images/social__youtube.png);
}


/* [HEADER CLASSES] */


header {
    margin: 0 auto;
    padding: 1em;
    background-color: var(--color-black);
    color: var(--color-white);
    background-image:url(images/new-photos/header-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    height: 80vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content:center;
    align-items:center;
}

header h1 {
    margin: 0 0 0 0;
    width: 8em;
    height: 2.3em;
    background-image: url(images/new-photos/header-h1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    text-indent: -10000px;
}

header h2 {
    margin: 0 0 0 0;
    width: 4em;
    height: .9em;
    background-image: url(images/new-photos/header-h2.png);
    background-size:contain;
    background-repeat: no-repeat;
    background-position: center top;
    text-indent: -10000px;
}


/* [SECTION CLASSES] */

section {
    padding: 4em 1em;
}

section img {
    display: block;
    width: 100%;
    max-height: 25em;
    margin: 1em 0;
    aspect-ratio: 1/1;
    object-fit:contain;
}

section h2 {
    font-size: 2em;
    margin: 0 0 .5em 0;
    text-transform: uppercase;
} 

.cta {
    background-color: var(--color-black);
    display: flex;
    flex-direction:row;
    flex-wrap: wrap;
    justify-content:center;
    align-items:center;
    gap: 1em;
}

.cta img {
    display: block;
}


.statement {
    background-color: var(--color-black);
    color: var(--color-white);
}

.statement h2 {
    font-size: 4em;
    text-align: right;
}

.statement p {
    padding: 0em 0em 1em 0em;
    font-style: italic;
    text-align: justify;
    border-bottom: 1px solid;
}

.history h2 {
    margin: 0 0 1em 0;
}

.live_session {
    background-color: var(--color-black);
    color: var(--color-white);
}


.scene h3 {
    margin: 1em;
    font-weight: 400;
    text-align: center;
    font-style: italic;
}

.scene img {
    margin: 0 auto 0 auto;
    width: 100%;
}
.scene p {
    text-align: center;
}

.scene__items {
    margin: 0;
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    justify-content: center;
}

.scene__items p {
    padding: 0;
    max-width: 41%;
    font-size: .8em;
}

.scene__items p b {
    display: block;
    margin: .5em 0 0 0;

}


.scene__items p em {
    font-size: .8em;
}

.videos__catalog {
    display:flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1em;
    max-width: 100%;
    padding: 1em .5em;
    text-align: center;
}

.videos__catalog h2 {
    margin: 0 0 1em 0;
    font-size: 2em;

}

.videos__catalog a {
    display: block;
    margin: 0 auto;
    padding: 0 0 0 0;
    color: var(--color-black);
}

.videos__catalog a:hover {
    text-decoration: none;
}


.videos__catalog img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.videos__catalog h3 {
    margin: .5em 0;
    font-size: 1em;
}

/* [LANDSCAPE MOBILE SCREENS] */
@media screen and (min-width: 600px){

header {
    height: 85vh;
}

.statement__block {
    display: flex;
    gap: 1em;
    justify-content: center;
    align-items: center;
}

.statement__img {
    max-width: 40%;
}

.statement__text {
    max-width: 60%;
}


.statement p {
    margin: 0;
} 


.scene__items p {
    max-width: 30%;
}

.videos__catalog {
    flex-direction: row;
}

.videos__catalog a {
    width: 40%;
}

}


/* [DESKTOP SCREENS] */
@media screen and (min-width: 960px){

header h1 {
    width: 16em;
    height: 4.6em;
}

header h2 {
    width: 8em;
    height: 1em;
}


section {
    margin-inline: auto;
    max-width: 960px;
}

.cta {
    max-width: 100%;
}

.live_session {
    max-width: 100%;
}

.statement {
    max-width: 100%;
}

.statement__block {
    margin-inline: auto;
    max-width: 960px;
}


.live_session h2, p {
    margin-inline: auto;
    max-width: 960px;
}

.videos__catalog {
    margin: 0 auto;
}

.videos__catalog a {
    width: 30%;
}

}

