@font-face {
    font-family: 'Nohemi';
    src: url('Nohemi-Medium.woff2') format('woff2'), /* Modern Browsers */
         url('Nohemi-Medium.otf') format('opentype'); /* Safari, Android, iOS */
             font-style: normal;
    font-weight: medium;
    text-rendering: optimizeLegibility;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #131313;
    color: #ebebeb;
    font-size: 16px;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #fff;
    font-family: 'Nohemi', sans-serif;
    text-rendering: optimizeLegibility;
    font-weight: medium;
    /* spacing */
    letter-spacing: 0.7px;
}


header {
    background: #02331e;
    color: #fff;
    padding: 1em 0;
    text-align: center;
}

header h1 {
    font-size: 2em;
    color: #fff;
}

header img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

#tickets {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    margin-top: 0px;
}

#tickets video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    opacity: 0.5;
}

@media (min-width: 800px) {
    #tickets video {
        display: none;
    }
    #tickets {
        height: auto;
    }
    .product-info {
        margin-top: 20px;
    }
}

.grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.grid-three {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

@media screen and (max-width: 800px) {
    .grid-two, .grid-three {
        grid-template-columns: 1fr;
    }
    .vidnext {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    section {
        text-align: left;
    }
    .event {
        text-align: left;
    }
}

#video {
    width: 100%;
    height: 500px;
}

main {
    padding: 0px;
    margin: 0 auto;
    max-width: 1200px;
}

.wrapper-pad20 {
    padding: 20px;
}

footer {
    display: flex;
    background: #02331e;
    color: #fff;
    padding: 1.5em;
    justify-content: space-between;
}

footer p {
    margin: 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background: #02331e;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin: 20px 0;
    width: fit-content;
}

.button-large {
    color: #000000;
    font-size: 1.5em;
    font-family: 'Nohemi', sans-serif;
    background: #fff;
    padding: 15px 40px;
    border-radius: 15px;
    margin: 0 auto !important;
}

.button-large:hover {
    text-decoration: underline;
}

p {
    margin-top: 10px;
}

.vidnext {
    display: flex;
    justify-content: center;
    flex-direction: column; 
}

.event {
    position: relative;
    background-color: #0c0c0c;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px; 
}

.image-wrapper {
    overflow: hidden;
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.event img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.event img:hover {
    transform: scale(1.2);
}

.event-info {
    position: absolute;
    top: 157px;
    left: 25px;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 5px;
}

.event-info h3.day {
    font-size: 24px;
    margin: 0;
}


.event p.description {
    font-size: 16px;
    margin-top: 10px;
}





section {
    margin: 20px 0;
}

section h2 {
    font-size: 2em;
}

.center-item {
    display: block;
    margin: 0 auto;
}

.product-card {
    position: relative;
    width: 300px;
    margin: 0 auto;
}

.remaining {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: rgb(255, 93, 93);
    color: #000;
    font-weight: bold;
    padding: 5px;
    margin: 0;
    border-radius: 5px;
    font-size: 12px;
}

.product-info {
    padding: 20px;
    margin-top: 50px;
    border: 1px solid #ccc;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.price {
    margin-top: 10px;
}

/* nav styles */

.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}

.nav-collapse, .nav-collapse * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.nav-collapse, .nav-collapse ul {
    list-style: none;
    width: 100%;
    float: left;
}

.nav-collapse li {
    float: left;
    width: 100%;
}

@media screen and (min-width: 40em) {
  .nav-collapse li {
    width: calc(100% / 2);
  }
}

.nav-collapse a {
    color: #fff;
    text-decoration: none;
    width: 100%;
    background: #09aa31;
    border-bottom: 1px solid white;
    padding: 0.7em 1em;
    float: left;
    transition: background 0.3s;
}

.nav-collapse a:hover {
    background: #0ddd41;
}

@media screen and (min-width: 40em) {
    .nav-collapse a {
        margin: 0;
        padding: 1em;
        float: left;
        text-align: center;
        border-bottom: 0;
        border-right: 1px solid white;
    }
}

.nav-collapse ul ul a {
    background: #09aa31;
    padding-left: 2em;
}

.nav-collapse ul ul a:hover {
    background: #0ddd41;
}

@media screen and (min-width: 40em) {
    .nav-collapse ul ul a {
        display: none;
    }
}

.nav-toggle {
    position: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
    text-indent: -999px;
    position: relative;
    overflow: hidden;
    width: 70px;
    height: 55px;
    float: right;
}

.nav-toggle:before {
    color: #09aa31;
    font-family: "responsivenav", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    font-size: 28px;
    text-transform: none;
    position: absolute;
    content: "≡";
    text-indent: 0;
    text-align: center;
    line-height: 55px;
    width: 100%;
    top: 0;
    left: 0;
}

.nav-toggle:before:hover {
    color: #0ddd41;
}

.nav-toggle.active::before {
    font-size: 24px;
    content:"x";
}

/* scroll styles */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
