/* Default ================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: sans-serif;
    font-size: 16px;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

::selection {
    background: var(--yellow);
    color: var(--black);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
    height: auto;
    font-style: italic;
    -webkit-user-drag: none;
}

.inner {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.thin-line {
    border: none;
    height: 1px;
    background: var(--black);
}

ul,
ol {
    list-style: none;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: normal;
}

/* font&color ================== */
@font-face {
    font-family: 'ThunderBoldHC';
    src: url('../fonts/Web-TT/Thunder-BoldHC.woff2') format('woff2'),
        url('../fonts/Web-TT/Thunder-BoldHC.woff') format('woff'),
        url('../fonts/Web-TT/Thunder-BoldHC.ttf') format('truetype');
}

@font-face {
    font-family: 'ThunderBoldLC';
    src: url('../fonts/Web-TT/Thunder-BoldLC.woff2') format('woff2'),
        url('../fonts/Web-TT/Thunder-BoldLC.woff') format('woff'),
        url('../fonts/Web-TT/Thunder-BoldLC.ttf') format('truetype');
}

@font-face {
    font-family: 'MediumHCItalic';
    src: url('../fonts/Web-TT/Thunder-MediumHCItalic.woff2') format('woff2'),
        url('../fonts/Web-TT/Thunder-MediumHCItalic.woff') format('woff'),
        url('../fonts/Web-TT/Thunder-MediumHCItalic.ttf') format('truetype');
}

:root {
    --white: #FFFBE8;
    --black: #0B0500;
    --yellow: #F0BF1E;
    --green: #158136;

    --title: clamp(64px, 9.6vw, 9rem);
    --title-italic: clamp(64px, 9.6vw, 9rem);
    --subtitle: clamp(48px, 6.4vw, 5.8rem);
    --logo: clamp(28px, 3.6vw, 3rem);
    --quote: clamp(24px, 3.2vw, 2.6rem);
    --text: clamp(16px, 1.8vw, 1.2rem);
    --bold: clamp(16px, 1.8vw, 1.2rem);
    --small-italic: clamp(20px, 2.8vw, 2.2rem);
}

h1 {
    font-family: 'ThunderBoldLC';
    font-size: var(--logo);
    text-transform: uppercase;
}

h2 {
    font-family: 'ThunderBoldHC';
    font-size: var(--title);
}

h3,
.clock {
    font-family: 'ThunderBoldLC';
    font-size: var(--subtitle);
    text-transform: uppercase;
}

h4 {
    font-family: 'MediumHCItalic';
    font-size: var(--small-italic);
}

i {
    font-family: 'MediumHCItalic';
    font-size: var(--title-italic);
}

.italic {
    font-style: italic;
    color: var(--green);
}

p,
input,
textarea,
.time-label,
td {
    font-family: 'Inter';
    font-size: var(--text);
    font-weight: 400;
    line-height: 1.4;
}

.cta {
    font-family: "Poppins";
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    text-decoration-color: var(--green);
    font-size: var(--bold);
}

li,
label,
button,
.media-section p,
footer .contact-info p,
footer .credit p,
th {
    font-family: "Poppins";
    font-weight: 600;
    text-transform: uppercase;
    list-style: none;
    font-size: var(--bold);
}

.highlight {
    color: var(--green);
    font-weight: 600;
}

.quote-text {
    font-size: var(--quote);
    max-width: 700px;
    font-family: "Poppins";
    font-weight: 400;
}

/* underlines ================== */
nav ul li a:hover,
footer a h3,
.cta:hover,
header nav .active a,
.info-block .cta {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    text-decoration-color: var(--yellow);
}

header nav .active a,
footer a h3,
.info-block .cta,
footer .credit p,
.cta:hover {
    text-decoration-color: var(--green);
    transition: text-decoration-color .2s ease;
}

footer a h3 {
    text-underline-offset: 8px;
    text-decoration-thickness: 4px;
}

footer a h3:hover,
.info-block .cta:hover,
.cta:hover {
    text-decoration-color: var(--yellow);
}

/* header ================== */
header {
    width: 100%;
    padding: 20px 0;
    position: fixed;
    background: var(--white);
    border-bottom: 1px solid var(--black);
    z-index: 100;
    transition: transform .4s ease-in-out;

}

.nav-links {
    display: flex;
    gap: 20px;
}

nav ul {
    display: flex;
}

#burger {
    display: none;
}

header nav {
    position: static;
}

.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: var(--green);
    transition: width .4s ease-out;
    z-index: -2;
}

/* hero ================== */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.hero img {
    width: 100%;
    margin-top: 60px;
    max-height: 60vh;
    min-height: 60vh;
    object-fit: cover;
    border-bottom: 1px solid var(--black);
    padding-bottom: 5px;
}

.hero .inner {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    width: 100%;
    height: 100%;
}

.hero .hero-text {
    grid-column: 1;
    grid-row: 1;
}

.hero .arrow-icon {
    grid-column: 2;
    grid-row: 1;
    margin-left: 60px;
    background: var(--yellow);
    padding: 20px;
    transition: background 0.2s ease;
}

.hero .arrow-icon svg path {
    stroke: var(--black);
    transition: stroke 0.2s ease;
}

.hero .arrow-icon:hover {
    background: var(--green);
}

.hero .arrow-icon:hover svg path {
    stroke: var(--white);
}

/* section home ================== */
.section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
}

.section img {
    width: 50%;
    height: 100vh;
    object-fit: cover;
    border-left: 1px solid var(--black);
    border-right: 1px solid var(--black);
}

.section .inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-grow: 1;
    max-width: 50%;
    height: 100vh;
    padding: 0 20px;

}

.section .inner .content {
    max-width: 860px;
    width: 100%;
}

.section .inner .content h3 {
    margin-bottom: 40px;
}

.section .inner .content .cta {
    margin-top: 60px;
    display: block;

}

.reverse {
    flex-direction: row-reverse;
}

.reverse .inner .content {
    margin-left: auto;
}

/* social-media ================== */
.social-media .inner {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    padding: 25vw 20px;
}

.social-media .social-icons {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-left: 60px;
}

.social-media .social-text {
    grid-column: 1;
    grid-row: 0;
}

.social-media .social-icons a {
    padding: 20px;
    background: var(--yellow);
    transition: background 0.2s ease;
}

.social-media .social-icons svg path {
    fill: var(--black);
    transition: fill 0.2s ease;
}

.social-media .social-icons a:hover {
    background: var(--green);
}

.social-media .social-icons a:hover svg path {
    fill: var(--white);
}

/* Footer ================== */
footer {
    display: flex;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    margin-top: 5px;
    height: 50vh;
}

footer .inner {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
}

footer .credit-line {
    display: flex;
    align-items: center;
    gap: 20px;
    grid-row: 3;
}

footer .credit p {
    background: var(--green);
    color: var(--white);
    padding: 5px 10px;
    transition: background .2s ease;

}

footer .credit p:hover {
    background: var(--yellow);
    color: var(--black);
}

footer .inner .arrow-icon {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    transition: background .2s ease;
    display: flex;
    transform: rotate(180deg);
    background: var(--green);
    padding: 20px;
}

footer .inner .social-icons {
    grid-column: 2;
    grid-row: 3;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

footer .contact-info p {
    margin-bottom: 5px;
}

footer .social-icons a svg path {
    fill: var(--white);
    transition: fill .2s ease;

}

footer .social-icons a:hover svg path {
    fill: var(--yellow);
}

footer .inner .arrow-icon:hover {
    background: var(--yellow);
}

footer .arrow-icon:hover svg path {
    stroke: var(--black);
}

/* hero services & about ================== */
.services-page .hero img,
.about-page .hero img {
    margin-top: 0px;
    border-bottom: 1px solid var(--black);
    border-top: 1px solid var(--black);
    padding-bottom: 0px;
    padding-top: 5px;
}

.services-page .hero .inner,
.about-page .hero .inner {
    margin-top: 80px;
}

.services-page .hero h2,
.about-page .hero h2 {
    grid-column: 1;
    grid-row: 2;
}

.services-page .hero .arrow-icon,
.about-page .hero .arrow-icon {
    grid-column: 2;
    grid-row: 2;
}

/* section services ================== */
.services-page .section {
    border-top: 0;
}

/* Events services ================== */
.events {
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.events-table {
    border-collapse: collapse;
}

.events-table th {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--black);
}

.events-table td {
    border-bottom: 1px solid var(--black);
    padding: 20px;
    text-align: left;
    cursor: pointer;
    transition: color .1s ease-in-out, stroke .1s ease-in-out;
    stroke: var(--black);
}

.events h3 {
    margin-bottom: 20px;
}

.events-table tbody tr {
    transition: background .3s ease-in-out;
}

.events-table tbody tr:hover {
    background: var(--green);
    color: var(--white);
}

.events-table tbody tr:hover td path {
    stroke: var(--white);
}

/* quote ================== */
.quote-section {
    background: var(--yellow);
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.quote-section .border {
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--black);
}

.quote-section .border.top {
    top: 5px;
}

.quote-section .border.bottom {
    bottom: 5px;
}

.quote-section .arrow-icon {
    position: absolute;
    bottom: 60px;
    background: var(--green);
    padding: 20px;
    transition: background 0.2s ease;
}

.quote-section .arrow-icon svg path {
    stroke: var(--white);
    transition: stroke 0.2s ease;
}

.quote-section .arrow-icon:hover {
    background: var(--white);
}

.quote-section .arrow-icon:hover svg path {
    stroke: var(--black);
}

/* slider about ================== */
.slider {
    width: 100vw;
    height: 50vh;
    display: flex;
    align-items: center;
    border-bottom: var(--black) solid 1px;
    overflow-x: hidden;
}

.slide-track {
    display: flex;
    width: calc(2000% + 40px);
    animation: scroll 20s linear infinite;
    gap: 40px;
}

.slide {
    width: 600px;
    height: 40vh;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* media ================== */
.media-wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-section {
    width: 100%;
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 20px;
}

.media-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.media-header svg {
    width: 100%;
    height: 100%;
    background: var(--yellow);
    padding: 20px;
    transition: background .2s;
}

.media-header svg path {
    fill: var(--black);
    transition: fill .2s;
}

.media-header svg:hover {
    background: green;
}

.media-header svg:hover path {
    fill: white;
}

.youtube-banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    display: block;
}

.banner-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.banner-wrapper h3 {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: var(--white);
    margin: 0;
    transition: color .4s ease;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-item {
    display: flex;
    flex-direction: column;
}

.video-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}

.video-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.video-image:hover img,
.youtube-banner:hover img {
    transform: scale(1.03);
}

.youtube-banner:hover .banner-wrapper h3 {
    color: var(--yellow);
}

.video-caption {
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--black);
}

.video-caption p {
    margin: 0;
}

/* contact ================== */
.page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.contact-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-page .contact-info,
.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 120px;
    width: 100%;
    justify-content: center;
}

.info-block a {
    text-decoration: underline;
    color: var(--black);
}

.time-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    text-transform: uppercase;
    margin-bottom: 5px;
}

input,
textarea {
    padding: 10px;
    font-family: inherit;
    border: none;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    background: transparent;
    border-radius: 0;
    caret-color: var(--yellow);
    transition: border-color .2s;
}

input:focus,
textarea:focus {
    outline: none;
    border-top: 1px solid var(--yellow);
    border-bottom: 1px solid var(--yellow);
    background: #fff7df;
}

input::placeholder,
textarea::placeholder {
    color: #999;
}

textarea {
    resize: vertical;
    min-height: 100px;
    overflow-y: auto;
}

button {
    padding: 15px;
    background: var(--yellow);
    color: var(--black);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 10px;
    transition: 0.2s ease;
}

button:hover {
    background: var(--green);
    color: var(--white);
}

textarea::-webkit-scrollbar {
    width: 8px;
}

textarea::-webkit-scrollbar-track {
    background: var(--white);
}

textarea::-webkit-scrollbar-thumb {
    background: var(--yellow);
}

textarea::-webkit-scrollbar-thumb:hover {
    background: #e1b700;
}

/* Thank you message styles */
.thank-you-message {
    display: none;
    background: var(--yellow);
    color: var(--black);
    padding: 15px;
    text-align: center;
    margin-top: 20px;
}

/* 404 page */



@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 20px));
    }
}

@media screen and (max-width: 768px) {

    /* header ================== */
    header nav {
        position: fixed;
        right: -100%;
        bottom: 0%;
        width: 100%;
        min-height: 100%;
        background: var(--white);
        transition: right .6s ease-in-out;
        padding: 100px 20px;
        border-left: 1px var(--black) solid;
        z-index: -1;
    }

    .menu-on header nav {
        right: 0;
    }

    #burger {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .menu-toggle {
        all: unset;
        cursor: pointer;
    }

    /* hero ================== */
    .hero {
        height: inherit;
    }

    .hero img {
        max-height: inherit;
        min-height: inherit;
        height: 350px;
    }

    .hero .arrow-icon {
        grid-row: 2;
        grid-column: 1;
        justify-self: end;
        align-self: start;
    }

    .hero .inner {
        padding: 40px 20px;
    }

    .hero h2 {
        grid-row: 1;
        grid-column: 1;
    }

    /* section ================== */
    .section {
        height: 100%;
        display: block;
        border-top: 0;
        border-bottom: 0;
    }

    .section img {
        width: 100%;
        height: 100%;
        margin-bottom: 60px;
        border-top: 1px solid var(--black);
        border-bottom: 1px solid var(--black);
    }

    .section .inner {
        display: block;
        max-width: 100%;
        height: 100%;
    }

    .margin {
        margin-top: 120px;
    }

    /* social-media ================== */
    .social-media {
        border-top: 1px solid var(--black);
        margin-top: 180px;
    }

    .social-media .social-icons {
        grid-column: 1;
        grid-row: 2;
        gap: 20px;
        margin-left: 0px;
        margin-top: 60px;
    }

    /* Footer ================== */
    footer .inner .copyright {
        margin-bottom: 40px;
    }

    footer .inner .arrow-icon {
        grid-row: 3;
        grid-column: 1;
        margin: 40px 0;

    }

    footer .credit-line {
        grid-row: 7;
        display: inline;
    }

    footer .credit-line .credit {
        width: fit-content;
        margin-bottom: 20px;

    }

    footer {
        height: 100%;
    }

    footer .contact-info {
        padding: 40px 0;
    }

    footer .inner .social-icons {
        grid-column: 1;
        grid-row: 5;
        margin: 40px 0;
    }

    .break {
        display: block;
        margin-top: 10px;
    }

    /* events */
    .events {
        height: inherit;
        padding: 120px 0;
    }

    /* quote */
    .quote-section {
        height: inherit;
        padding: 300px 0;
    }

    /* slider about */
    .slide-track {
        width: calc(2000% + 20px);
        animation: scroll 10s linear infinite;
        gap: 20px;
    }

    .slide {
        width: 200px;
        height: 300px;
    }

    .slider {
        height: inherit;
        padding: 60px 0;
    }

    @keyframes scroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(calc(-50% - 10px));
        }
    }

    /* contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .page-wrapper {
        padding: 650px 0;
    }

    /* media */
    .banner-wrapper h3 {
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--yellow);
        text-align: center;
        text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
    }

    .media-section {
        gap: 60px;

    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .media-wrapper {
        height: 100%;
        padding: 100px 0;
    }

    .video-image {
        height: 350px;
    }

}

body.touch-device a:hover {
    color: inherit;
    background: none;
    pointer-events: auto;
    stroke: none;
}