@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,400;0,700;1,400&family=Lato:wght@300;400;900&display=swap');


html {
    box-sizing: border-box;
    font-size: 16px;
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-family: 'Figtree', sans-serif;
    font-family: 'Lato', sans-serif;
    color: rgb(221, 221, 221);
    overflow-x: hidden;
    margin-block-start: 0;
    margin-block-end: 0
}

body {
    height: 100vh;
    width: 100vw;
}

ol,
ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.panel {
    display: flex;
    justify-content: flex-end;
    height: 800px;
    align-items: center;
    flex-direction: column;

}

.flex-end {
    justify-content: flex-end;
}

.flex-start {
    justify-content: flex-start;
}

#top-panel {
    background-image: url(../img/bg-first.jfif);
    background-position: center;
    background-size: cover;
}

#second-panel {
    background-image: url(../img/bg-second.jpg);
    background-position: center;
    background-size: cover;
}

#third-panel {
    background-image: url(../img/bg-third-new.jpg);
    background-position: center;
    background-size: cover;
}

#fourth-panel {
    background-image: url(../img/bg-fourth.jpg);
    background-position: center;
    background-size: cover;
}

h1 {
    font-weight: bold;
    font-size: 3em;
    letter-spacing: 2px;
    text-align: center;
}

h2 {
    font-size: 1em;
    text-align: center;
    padding-block: 4px;
}

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-shadow: 0 0 black;
    background-color: #000000a3;
    width: 100vw;
    padding-block: 20px;
    box-shadow: inset 0px 1px 20px 0px black;
}

.absolute-top {
    position: absolute;
    top: 0%
}

iframe {
    width: 85%;
    margin-block: 2%;
    border-radius: 10px;

}

a {
    color: unset;
    font-weight: bold;
}

.show {
    display: grid;
    grid-template-rows: 2fr 1fr 1fr 1fr;
    grid-gap: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    justify-items: center;
    margin: 5px;
    width: 100%;
    justify-content: space-around;
    padding-block: 10px;
    border-radius: 20px;
}

.show-links {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.show-pages-count {
    background-color: rgba(0, 0, 0, 0.8);
    margin: 5px;
    width: 33%;
    padding-block: 5px;
    border-radius: 20px;
    text-align: center;
    font-weight: bold;
}

.show-venue {
    font-weight: bold;
    text-decoration: underline;
    font-size: 1.2em;
    text-align: center;
}

.show-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    align-items: center;
}

.header-show {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #b8b8b8;
    font-size: 0.75em;
    margin-top: 10px;
    padding-inline: 50px;
    border-radius: 25px;
    padding-block: 5px;
    justify-content: center;
}

.header-show p {
    color: #333333;
}

#header-show-title {
    font-weight: bold;
    text-decoration: underline;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.top-info {
    flex-direction: column;
}

.button-container {
    display: flex;
    width: 100%;
    justify-content: space-around;

}

button {
    padding-inline: 40px;
    font-size: 1.5em;
    border-radius: 20px;
    box-shadow: 4px 4px 7px 2px black;
}

.nav {
    position: absolute;
    background: #000000c2;
    padding: 20px;

    font-size: 2em;
    bottom: 15%;
}

.nav-container {
    display: flex;
    justify-content: center;
}

a {
    display: flex;
    align-items: center;
}

a #right-image {
    margin-inline-start: 30px;
}

a #left-image {
    margin-inline-end: 30px;
}

.sample-video-holder {
    display: flex;
    width: 90%;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
}

.sample-video {
    margin: 20px
}


@media screen and (min-width:800px) {
    h1 {
        font-size: 4em;
        letter-spacing: 16px;
        margin-inline-start: 20px;
    }

    h2 {
        font-size: 1.5em;
        letter-spacing: 2px;
    }

    .info {

        padding-inline: 20px;
        justify-content: space-around;
    }

    .header-show {
        font-size: 1em;
    }

    .top-info {
        flex-direction: row;
    }

    p {
        padding-inline: 10px;
    }

    .show {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        /* Creates 4 columns with equal width */
        grid-gap: 10px;
        /* Adjust the gap between columns as needed */
        grid-template-rows: unset;
        padding: 10px;
        margin: 5px;
        width: 90%;
        justify-content: space-around;
        align-items: center;
        justify-items: start;
    }

    .show-container {
        display: flex;
        flex-direction: column;
        width: 90%;
        align-items: center;
        height: 65%;
        justify-content: center;
    }

    a {
        padding-inline: 20px;
    }

    .show-links {
        justify-content: flex-start;
    }

    .show-venue {
        padding-left: 15px;
    }

    .sample-video-holder{
        flex-direction: row;
    }
}