@font-face {
    font-family: 'Anguila';
    src: url('fonts/AngillaTattoo.ttf') format('truetype');
    font-display: swap;}
@font-face {
    font-family: 'Orb-Black'; 
    src: url('fonts/Orbitron-Black.ttf') format('truetype');
    font-display: swap;}
    @font-face {
    font-family: 'Orb-Bold'; 
    src: url('fonts/Orbitron-Bold.ttf') format('truetype');
    font-display: swap;}
    @font-face {
    font-family: 'Orb-ExtraBold'; 
    src: url('fonts/Orbitron-ExtraBold.ttf') format('truetype');
    font-display: swap;}
    @font-face {
    font-family: 'Orb-Medium'; 
    src: url('fonts/Orbitron-Medium.ttf') format('truetype');
    font-display: swap;}
    @font-face {
    font-family: 'Orb-Regular'; 
    src: url('fonts/Orbitron-Regular.ttf') format('truetype');
    font-display: swap;}
    @font-face {
    font-family: 'Orb-SemiBold'; 
    src: url('fonts/Orbitron-SemiBold.ttf') format('truetype');
    font-display: swap;}

:root {
    --primary-color: #fff;
    --secondary-color: #0f0f0f;
    --third-color:#373737;
    --gradient1: #c07715;
    --gradient2: #fdcb3d;
    --text-color: #fff;
    --text-contrast: #000;
    --white: #fff;
    --black: #000;
    --blackTrans: #000000e7;
    --blackOpac70: rgba(0, 0, 0, 0.7);
    --blackOpac30: rgba(0, 0, 0, 0.3);
    
    --primary-font: 'Orb-Regular';
    --heading-font: 'Anguila';
    --span-font: 'Orb-ExtraBold';
    --font-size-mobile-head: 1.5rem;
    --font-size-mobile-subHead:1rem;
    --font-size-mobile-p: 0.8rem;
    
    --container-width: 1860px;
    --section-padding: 4rem 0;
    --card-padding: 2rem;
    --gap: 1.5rem;

    --border-radius: 8px;
    --border-radius-sm: 4px;

    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--primary-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--black);
}

h1, h2 {
    font-family: var(--heading-font);
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--dark-color);
    text-shadow: 
    0 0 3px black, 
    0 0 6px black,
    0 0 14px black;
}

h1{
    font-size: 5rem;
}

h2{
    font-size: 3rem;
}

h3 {
    font-family: var(--span-font);
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-size: 1.7rem;
    text-shadow:
    0 0 3px black, 
    0 0 6px black,
    0 0 14px black;
}

h4{
  font-size: 1.2rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-shadow: 
    0 0 5px black, 
    0 0 10px black,
    0 0 15px black,
    0 0 20px black;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

html {
  scroll-padding-top: 100px;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    font-family: 'Orb-ExtraBold';
    background-image: linear-gradient(to right, var(--gradient1), var(--gradient2), var(--gradient1));
    color: var(--black);
    padding: 1rem 1.7rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn:hover {
    border: 1px solid var(--gradient2);
    box-shadow: 0 0 30px var(--gradient2);
    transition: all 0.3s ease;
}

.btn-alt{
    display: inline-block;
    font-family: 'Orb-ExtraBold';
    color: var(--primary-color);
    padding: 1rem 1.7rem;
    transition: all 0.3s ease;
    border: 1px solid white;
    cursor: pointer;
    background-color: var(--blackOpac30);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.btn-alt:hover {
    box-shadow: 0 0 20px var(--white);
    transition: all 0.3s ease;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    margin: 0;
    padding: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.5s ease;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.navbar.scrolled, .navbar.menu-open {
    background-color: var(--blackOpac70);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    transition: all 0.3s ease;
}

.logo {
    display: inline-block;
    height: auto;
}

.logo img {
    height: 100%; 
    width: auto; 
    max-height: 115px;
}

.nav-links {
    display: flex;
    gap: var(--gap);
    align-items: center;
}

.nav-links a, .mobile-nav-group a {
    color: var(--text-color);
    transition: all 0.3s ease;
    text-shadow: 2px 2px 1px black;
}

.mobile-nav-group a {display: block; text-align: center; width: fit-content; align-self: center;}

.nav-links a:hover, .mobile-nav-group a:hover {
    color: var(--gradient2);
    text-shadow: 0 0 20px var(--gradient2);
    transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  padding: 2rem 2rem 20rem 2rem;
  transform-origin: top;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.4s forwards;
}

.mobile-menu-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease 0.2s;
}

.mobile-menu.active .mobile-menu-container {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-group a {
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.active .mobile-nav-group a {
  transform: translateX(0);
  opacity: 1;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu.active .mobile-nav-group a:nth-child(1) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-group a:nth-child(2) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-group a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-group a:nth-child(4) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-nav-group a:nth-child(5) { transition-delay: 0.4s; }

@keyframes slideDown {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    margin-left: -12px;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Hero Section */
.hero , .about{
    justify-content: start;
}

.hero .container {
    display: flex;
    padding: 8rem 2rem 4rem 2rem;
    text-align: center;
    background-image: url(img/hero-image.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    justify-content: space-evenly;
}

.about .container {
    display: flex;
    padding: 6rem 2rem;
    /*gap: 100px;*/
    background-image: url(img/about.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
    justify-content: space-around;
}

.hero-image img{
    max-width: 800px;
    width: 100%;
    height: auto;
}

.hero-content {
    display: flex; flex-direction: column;
    max-width: 700px;
    text-emphasis: center;
    justify-content: center;
    padding: 2rem 0;
}

.about-content{
    display: flex; flex-direction: column;
    max-width: 35%;
    text-align: left;
    justify-content: center;
}

.about-content p span{
    font-family: var(--span-font);
}

.about-host{
    font-family: var(--span-font);
    color: var(--gradient2);
}

.about-images {
    position: relative;
    width: 65%;
    max-width: 600px;
    height: 650px;
}

.stacked-images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-item {
    position: absolute;
    transition: all 0.5s ease;
    width: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.about-image-item picture img{
  display: flex;
  border-radius: var(--border-radius-sm);
}

.about-image-item:first-child {
    z-index: 2;
    transform: translateX(-10%) rotate(-5deg);
}

.about-image-item:last-child {
    z-index: 1;
    transform: translateX(10%) rotate(5deg);
}

.about-image-item.front {
    z-index: 2;
    transform: translateX(-10%) rotate(-5deg);
}

.about-image-item.back {
    z-index: 1;
    transform: translateX(10%) rotate(5deg);
}

.hero-buttons{
    display: flex;
    gap: .4rem;
    margin: 0 auto;
    justify-content: center;
}

.hero h1 {
    color: var(--dark-color);
}

.hero p {
    margin-bottom: 2rem;
}

/*Video Section*/
.video{
    position: relative;
    width: auto;
    height: 800px;
    overflow: hidden;
}

.video .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-height: 850px;
}

.video .container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-over-video {
    position: relative;
    z-index: 1;
    padding: 1rem;
    width: fit-content;
    margin: 0 auto;
    top: 570px;
}

.cards-over-video{
    display: flex;
    gap: 1rem;
}

.card-video-item{
    padding: 1rem;
    border-radius: var(--border-radius);
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card-video-head{
    font-family: var(--span-font);
    color: var(--gradient2);
    text-transform: uppercase;
    font-size: 1.1rem;
}

.card-video-p{
    line-height: 1;
}

/* Gallery Section */
.gallery {
    padding: var(--section-padding);
    background-color: var(--secondary-color);    
}

.gallery h2 {
    display: flex;
    align-items: center;
}

.gallery h2 img{
    display: flex;
    margin: 0;
}

.gallery .container{
    position: relative;
}

.gallery .container::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(90deg, #0f0f0f 20%, #0f0f0f00 80%);
  z-index: 2;
  pointer-events: none;
}

.gallery .container::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(90deg, #0f0f0f00 20%, #0f0f0f 80%);
  z-index: 2;
  pointer-events: none;
}

.gallery-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.gallery-container {
  width: 100%;
  min-width: 1920px;
  margin: 0 auto;
  height: 600px;
  position: relative;
}

.gallery-track {
    display: grid;
    grid-template-columns: repeat(7, 380px);
    grid-auto-rows: minmax(0, 1fr);
    gap: 20px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: calc(380px * 14 + 20px * 13);
    will-change: transform;
}

.gallery-item {
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.item1 { grid-column: 1; grid-row: 1; }
.item2 { grid-column: 1; grid-row: 2; }
.item3 { grid-column: 2; grid-row: 1 / span 2; }
.item4 { grid-column: 3; grid-row: 1; }
.item5 { grid-column: 4; grid-row: 1; }
.item6 { grid-column: 3 / span 2; grid-row: 2; }
.item7 { grid-column: 5; grid-row: 1 / span 2; }
.item8 { grid-column: 6; grid-row: 1; }
.item9 { grid-column: 6; grid-row: 2; }
.item10 { grid-column: 7; grid-row: 1 / span 2;}

.gallery-item:nth-child(11) { grid-column: 8; grid-row: 1; }
.gallery-item:nth-child(12) { grid-column: 8; grid-row: 2; }
.gallery-item:nth-child(13) { grid-column: 9; grid-row: 1 / span 2; }
.gallery-item:nth-child(14) { grid-column: 10; grid-row: 1; }
.gallery-item:nth-child(15) { grid-column: 11; grid-row: 1; }
.gallery-item:nth-child(16) { grid-column: 10 / span 2; grid-row: 2; }
.gallery-item:nth-child(17) { grid-column: 12; grid-row: 1 / span 2; }
.gallery-item:nth-child(18) { grid-column: 13; grid-row: 1; }
.gallery-item:nth-child(19) { grid-column: 13; grid-row: 2; }
.gallery-item:nth-child(20) { grid-column: 14; grid-row: 1 / span 2;}

/* Booth */
.booth-section {
  padding: 4rem 0;
  background-color: var(--black);
  background-image: url(img/boothBack.webp);
  background-size:contain;
  background-position: center top;
  background-repeat: no-repeat;
}

.booth-section .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.booth-title {
  text-align: center;
  margin-bottom: 1rem;
}

.booth-description {
  text-align: center;
  max-width: 60%;
  margin: 0 auto 3rem;
}

.booth-subtitle{
    text-align: center;
    color: black;
    text-shadow: none;
}

.booth-prices-container{
    background-color: var(--secondary-color);
    background-image: linear-gradient(to right, var(--gradient1), var(--gradient2), var(--gradient1));
    padding: 2rem;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 2rem;
    border-radius: var(--border-radius-sm);
}

.booth-prices{
    width: fit-content;
    margin: 1rem auto;
    color: black;
}
.booth-prices span, .terms-text span, .hero-content span{
    font-family: var(--span-font);
}

.booth-carousel {
  position: relative;
  margin-bottom: 4rem;
  overflow: visible;
}

    .cards-container {
        justify-content: flex-start; 
        padding-left: calc(50% - 175px);
    }
    
    .service-card {
        flex: 0 0 350px;
        min-height: 350px;
        overflow-y: auto;
    }
    
    .service-card.active {
        flex: 0 0 350px;
         transform: none;
        min-height: 350px;
    }

.cards-container {
    display: flex;
    gap: 1rem;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: flex-start; 
    
}

.cards-container::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 590px;
  scroll-snap-align: center;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 0 12px rgba(0,0,0,.3);
  padding: 2rem;
  transition: all 0.3s ease;
  transform-origin: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.service-card.active {
  flex: 0 0 590px;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 2;
  border: 2px solid var(--gradient2);
    margin-left: 1rem;
    margin-right: 1rem;
    background: linear-gradient(180deg, #0f0f0f 0%, #3c2404 100%);
    transition: all ease 0.3s;
}

.card-title {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--gradient2);
}

.card-description {
  margin-bottom: 1.5rem;
}

.card-features {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.card-features li {
  margin-bottom: 0.5rem;
}

.card-price {
  color: var(--gradient1);
  margin-top: auto;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #212121;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--gradient2);
}

/* Booth Form */
.terms-section {
    margin: 4rem auto 2rem auto;
    padding: 1rem;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    max-width: var(--container-width);
    display: flex;
    gap: 1rem;
    background-image: url(img/infoBack.webp);
    background-size:contain;
    background-position: center left;
    background-repeat: no-repeat;
}

.terms-container, .booth-form{
    width: 100%;
}

.terms-container {
    padding: 2rem;
}

.terms-title {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--gradient2);
}

.terms-text {
  line-height: 1.6;
}

.terms-text a, .terms-section ul li a{
    color: var(--gradient1);
    border-bottom: 1px solid var(--gradient1);
}

.terms-section ul li{
    padding-left: 2rem;
}

.booth-form{
    margin: 0 auto;
    background-color: var(--secondary-color);
    background: linear-gradient(180deg, #3c2404 0%, #0f0f0f 100%);
    border: 2px solid var(--gradient1);
    box-shadow: 0 0 24px var(--gradient1);
    padding: 2rem;
    border-radius: var(--border-radius-sm);
}

.booth-form h3{
    text-shadow: none;
}

.form-group {
    margin-bottom: 15px;
}
.form-row {
    display: flex;
    gap: 1rem;
}
.form-row .form-group {
    flex: 1;
}
label {
    display: block;
    margin-bottom: 0.5rem;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: .5rem;
    font-size: 1rem;
    border: none;
    color: white;
    background-color: black;
    border-radius: var(--border-radius-sm);
    box-sizing: border-box;
}

input:focus {
    outline: 1px solid #c07715;
}

.required::after {
    content: " *";
    color: var(--gradient2);
}
.form-submit {
   background-color: var(--gradient2);
   background-image: linear-gradient(to right, var(--gradient1), var(--gradient2), var(--gradient1));
    color: black;
    padding: 1rem 2rem;
    border: 1px solid transparent;
    cursor: pointer;
    align-self: flex-end;
    font-family: var(--span-font);
    font-size: 1rem;
}
.form-submit:hover {
    border: 1px solid var(--gradient2);
    box-shadow: 0 0 30px var(--gradient2);
    transition: all 0.3s ease;
}
#form-success-message {
    display: none;
    color: var(--gradient2);
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.25rem;
    margin-top: 1rem;
    text-align: center;
}

.error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-border {
    border-color: #dc3545 !important;
}

/* Sponsor */
#sponsor-form-container, #vendor-form-container{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.sponsor-section, .vendor-section {
  padding: 4rem 0;
  background-color: var(--black);
  background-image: url(img/boothBack.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

.sponsor-section .container h2, .vendor-section .container h2{
  text-align: center;
}

.sponsor-carousel {
  margin-bottom: 3rem;
}

.sponsor-subtitle {

  margin-bottom: 1.5rem;
  color: var(--gradient1);
}

/* Schedule */
.event-calendar {
  background-color: black;
  background-image: url(img/schedule-back.webp);
  background-size:contain;
  background-position: center top;
  background-repeat: no-repeat;
  color: white;
  font-family: var(--primary-font);
}

.event-calendar .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 2rem 0;
  background: linear-gradient(90deg,rgba(0, 0, 0, 0) 30%, rgba(82, 49, 17, 0.4) 50%, rgba(0, 0, 0, 0) 70%);
}

.calendar-title {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 1rem;
  margin-top: 4rem;
  position: relative;
  display: inline-block;
  text-shadow: none;
}

.calendar-description {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.2;
  color: #ccc;
  text-shadow: none;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 100%;
  background: var(--secondary-color);
}

.timeline-day {
  margin-bottom: 3rem;
  position: relative;
}

.day-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.day-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--gradient2);
  text-shadow: none;
}

.day-date {
  display: inline-block;
  background: var(--gradient2);
  font-family: var(--span-font);
  color: black;
  padding: 0.2rem 1rem;
  border-radius: var(--border-radius-sm);
}

.events-container {
  position: relative;
}

.event {
  display: flex;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.event.visible {
  opacity: 1;
  transform: translateY(0);
}

.event-time {
  width: 200px;
  padding-right: 1rem;
  text-align: right;
  color: var(--gradient2);
  font-family: var(--span-font);
  position: relative;
}

.event-details {
  flex: 1;
  padding-left: 2rem;
  position: relative;
}

.event-details:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 15px;
  height: 4px;
  background: var(--gradient1);
}

.event-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.event-description {
  line-height: 1.2;
}

.with-subitems .event-details {
  padding-bottom: 1rem;
  margin-left: 12.4rem;
}

.sub-events {
  margin-top: 0.5rem;
  padding-left: 1rem;
  border-left: 4px solid var(--gradient1);
}

.sub-event {
  display: flex;
  padding: 0.5rem;
}

.calendar-paragraph-group{
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-sm);
  background-image: url(img/back-terms.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.calendar-paragraph-group p{
  margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
    color: #bbb;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #bbb;
}

.footer-bottom a:hover{
  color: var(--gradient2); 
}

.grecaptcha-badge {
    visibility: hidden !important;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Responsive */
@media (max-width: 1700px) {
    .content-over-video {left: 0;}

    .hero .container {background-position: center;}
}

@media (max-width: 1350px) {
    .btn {
      padding: 1rem;
    }
    .hero-content{
      min-width: 560px;
    }
}

@media (max-width: 1100px) {

    .logo img {
        margin-left: 30px;
    }

    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: var(--black);
        padding: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .menu-toggle.active .hamburger {
        background-color: transparent;
    }
    
    .menu-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .menu-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
    }

    .logo{
        width: 100%;
        text-align: center;
    }

    .mobile-menu.active {
        display: block;
        top:0;
    }

    .hero .container {
      flex-direction: column;
        padding: 10rem 0;
        justify-content: center;
        align-items: center;
    }

    .hero-content{
      min-width:fit-content;
      width: auto;
      padding: 0 2rem;
      margin: 0 auto;
    }

    .hero-image img{
      max-width: unset;
      width: 80%;
    }

    .hero-image{
      margin-bottom: -10rem;
    }

    .content-over-video {
      top: 460px;
      margin-left: 10px;
    }

    .cards-over-video{
        flex-direction: column;
        gap: .5rem;
    }

    .card-video-item{
        padding: .5rem;
    }

    .card-video-head{
        font-size: 1rem;
        margin: 0;
    }

    .card-video-p{
        line-height: 1.2;
        margin: 0;
        padding: 0;
    }

    .about .container {
      flex-direction: column;
      padding: 4rem 1rem;
      gap: 1rem;
      align-items: center;
    }

    .about-content{
        max-width: 100%;
    }

    .about-images {
      width: 100%;
    }

    .cards-container {
        padding-left: calc(50% - 300px);
        padding-right: calc(50% - 300px);
        scroll-padding: 0 calc(50% - 300px);
    }

    .terms-section {
      flex-direction: column;
      margin: 4rem auto 2rem auto;
      padding: 1rem;
      gap: 1rem;
    }

}

@media (max-width: 880px) {
    .logo img {
        max-height: 70px;
    }

    .hamburger {
      width: 17px;
      height: 3px;
    }

    .hamburger::before, .hamburger::after {
      margin-left: -8px;
    }

    .hamburger::before {
      top: -6px;
    }

    .hamburger::after {
        top: 6px;
    }

    .navbar .container {
        padding: 1rem 2rem;
    }

    #mobile-btn-star{
      font-size: 1rem;
    }
    
    .video{
        height: 650px;
    }

    .content-over-video {
        top: 330px;
    }

    p, .btn, .btn-alt, .card-features, .required, .booth-prices, .terms-text, .sub-events {
        font-size: .9rem;
    }

    h1{
        font-size: 3.8rem;   
    }

    h2{
        font-size: 2.3rem;
    }

    h3{
      font-size: 1.3rem;
    }
    
    h4, .card-video-head{
        font-size: 1rem;
    }

    .card-title, .terms-title, .event-title{
      font-size: 1.1rem;
    }

    .day-title{
      font-size: 1.3rem;
    }

    .card-features{line-height: 1.3;}

    .form-group{
      display: flex;
      flex-direction: column;
      align-items: start;
      justify-content: end;
    }

    .cards-container {
        justify-content: flex-start; 
        padding-left: calc(50% - 175px);
    }
    
    .service-card {
        flex: 0 0 350px;
        min-height: 350px;
        overflow-y: auto;
    }
    
    .service-card.active {
        flex: 0 0 350px;
         transform: none;
        min-height: 350px;
    }

    .cards-container {
        justify-content: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

}

@media (max-width: 690px) {

    p, .btn, .btn-alt, .card-features, .required, .booth-prices, .terms-text, .sub-events {
        font-size: .8rem;
    }

    h1{
        font-size: 3rem;   
    }

    h2{
        font-size: 2.2rem;
    }

    h3{
      font-size: 1.1rem;
    }
    
    h4, .card-video-head{
        font-size: 0.9rem;
    }

    .card-title, .terms-title, .event-title{
      font-size: 1rem;
    }

    .terms-section ul li{
        padding-left: 1rem;
    }

    .day-title{
      font-size: 1.1rem;
    }

    .card-features{line-height: 1.1;}

    .hero-buttons{
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons a{
        width: fit-content;
    }

    .gallery-container {
        height: 400px;
    }

    .gallery-track {
        grid-template-columns: repeat(7, 250px);
        gap: 10px;
        width: calc(250px * 14 + 10px * 13);
    }

    .gallery .container::before {
      background: linear-gradient(90deg, #0f0f0f 10%, #0f0f0f00 40%);
    }

    .gallery .container::after {
      background: linear-gradient(90deg, #0f0f0f00 60%, #0f0f0f 90%);
    }

    .event {
      margin-bottom: 0.5rem;
      margin-left: 1rem;
    }

    .event-details {
      flex: 1;
      padding-left: 2rem;
    }

    .event-details:before {
      width: 10px;
    }

    .with-subitems .event-details {
      padding-bottom: 0;
      margin-left: 0;
    }

    .sub-events {
      padding-left: 0.5rem;
      border-left: 2px solid var(--gradient1);
    }

    .event {
      flex-direction: column;
    }

    .event-time {
      width: 80%;
      text-align: left;
      padding-left: 2rem;
      margin-bottom: 0.5rem;
    }

    .event-time:after {
      left: 10px;
    }

    .event-details {
      padding-left: 2rem;
    }

    .about-images{
      width: 50%;
      height: 380px;
    }

}