html {
    scroll-behavior: smooth;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.rampart-one-regular {
    font-family: "Rampart One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.unbounded-regular {
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.unbounded-bold {
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.mountains-of-christmas-regular {
    font-family: "Mountains of Christmas", serif;
    font-weight: 400;
    font-style: normal;
}

.mountains-of-christmas-bold {
    font-family: "Mountains of Christmas", serif;
    font-weight: 700;
    font-style: normal;
}

.text {
    color: #000010;
    line-height: 150%;
    letter-spacing: 1px;
    padding: 30px 40px;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

nav {
    background-color: #ff79cd;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

nav a {
    font-size: 16px;
    font-family: Verdana, sans-serif;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.brand {
    font-size: 3rem;
    font-weight: bold;
    color: #131610;
    line-height: normal;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a,
nav a {
    text-decoration: none;
    color: #131610;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ebeae5;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger to X animation */
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.shake-img {
    display: inline-block;
    transition: transform 0.2s ease-in-out;
}

.shake-img:hover {
    animation: shake 0.5s infinite;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

.section-bkg {
    height: 100%;
    max-height: 5000px;
    background: #FF0065;
    background: linear-gradient(0deg, rgba(255, 0, 101, 1) 0%, rgba(255, 0, 169, 1) 25%, rgba(255, 191, 211, 1) 100%, rgba(251, 88, 88, 1) 50%, rgba(251, 159, 159, 1) 77%);
}

.header {
    text-align: center;
    padding: 0 0 30px 0;
}

.main {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.headshot {
    border-radius: 11px;
}

.backlit img {
    display: block;
    width: 600px;
    height: auto;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
}

.backlit {
    border-radius: 11px;
    max-height: fit-content;
    animation: pulse-glow 3s ease-in-out infinite;
}

.form-container {
    background: #e3b0d8;
    padding: 25px;
    max-width: 600px;
    margin: auto;
    border-radius: 11px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    font-family: "Unbounded", sans-serif;
    display: block;
    margin-top: 15px;
}

input,
textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

button {
    font-size: 18px;
    font-family: Verdana, sans-serif;
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    background-color: #ff0065;
    color: #ffbfd3;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #ffbfd3;
    color: #ff0065;
}

#response {
    margin-top: 15px;
    text-align: center;
    color: #131610;
}

.wave-gallery-container {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.wave-gallery-track {
    display: flex;
    width: max-content;
    animation: scrollGallery 30s linear infinite;
}

.wave-gallery-track:hover {
    animation-play-state: paused;
}

.wave-image {
    width: 300px;
    height: 200px;
    margin: 0 10px;
    border-radius: 16px;
    object-fit: cover;
    animation: waveMotion 4s ease-in-out infinite;
}

.wave-gallery-track>div {
    animation-delay: calc(var(--i) * 0.2s);
    display: flex;
    align-items: center;
    justify-content: center;
}

table {
    background-color: #ebeae5;
    border-collapse: collapse;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(18, 16, 16, 0.3);
    margin: 80px auto 0px;
    max-width: 900px;
    overflow: hidden;
    width: 90%;
}

thead {
    background-color: #ddd1c0;
}

th,
td {
    font-family: "Unbounded", sans-serif;
    padding: 16px 20px;
    text-align: left;
}

tr:nth-child(even) {
    background-color: #e3b0d8;
}

tr:hover {
    background-color: #ff79cd;
    color: #fff;
    transition: background-color 0.3s ease;
}

th {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

td:last-child {
    text-align: center;
}

.ticket-button {
    background-color: #6c6a65;
    color: #ffffff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ticket-button a {
    color: #ffffff;
    text-decoration: none;
}

.ticket-button a:hover {
    text-decoration: underline;
}


.ticket-button:hover {
    background-color: #ddd1c0;
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes waveMotion {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.wave-gallery-track:hover {
    animation-play-state: paused;
}


@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 60px rgba(255, 255, 255, 0.8);
    }
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 1140px) {
    .brand {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .main {
        flex-wrap: wrap;
    }

    .backlit img {
        width: 420px;
    }
    
    .image-item {
        width: 200px;
        height: 140px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        right: 20px;
        background: white;
        flex-direction: column;
        width: 200px;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width:767px) {
    .shake-img {
        width:65px;
    }
    .nav-container {
        justify-content: space-evenly;
    }
    .wave-image {
        width: 150px;
        height: 100px;
    }
    .container {
        padding: 40px 0;
    }
    .brand {
        text-align: center;
        font-size: 1.0rem;
    }
    .hamburger span {
        width: 90%;
    }
    table {
        margin: 40px auto 0px;
    }
}

@media (max-width:425px) {
    .backlit img {
        width: 320px;
    }

    th, td {
        padding: 10px 5px;
        font-size: 14px;
    }

    .ticket-button {
        padding: 8px;
    }
}

@media (max-width:320px) {
    .backlit img {
        width: 220px;
    }
}