:root {
    --main-background: #0a0a0a;
    --main-text: #f3f4f6;
    --secondary-text: #9ca3af;
    --accent-pink: #ff2d55;
    --accent-purple: #8a2be2;
    --accent-silver: #c0c0c0;
    --pricing-header: #00ced1;
    --pricing-button: #20b2aa;
    --card-background: #ffffff;
    --card-text: #1a1a1a;
    --container-max-width: 1280px;
    --border-radius: 12px;
}

*,
::before,
::after {
    box-sizing: border-box;
}

body {
    background-color: var(--main-background);
    color: var(--main-text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover,
a:focus {
    text-decoration: none;
    opacity: 0.8;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

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

@media (max-width: 768px) {
    h1 {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
    }

    h2 {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    h3 {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
    }

    .long-text-fix {
        word-break: break-all;
        font-size: 0.9rem;
    }
}

/* ===== header_section ===== */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1)
}

.mobile-menu.open {
    max-height: 500px
}

.nav-link-underline {
    position: relative
}

.nav-link-underline::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-pink);
    transition: width 0.3s ease
}

.nav-link-underline:hover::after {
    width: 100%
}

/* ===== hero_section ===== */
.animate-morph {
    animation: morph 15s ease-in-out infinite;
}

.animate-morph-delayed {
    animation: morph 20s ease-in-out infinite reverse;
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(50px, 100px) rotate(180deg);
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0, 0) rotate(360deg);
    }
}

/* ===== about_section ===== */
.timeline-container::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-purple), var(--accent-pink));
}

.js-timeline-item {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== benefits_section ===== */
#benefits {
    width: 100%;
}

/* ===== gallery_section ===== */
#gallery {
    scroll-margin-top: 2rem;
}

.gallery-overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0) 100%);
}

/* ===== booking_process ===== */
#process {
    width: 100%
}

.js-step {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out
}

/* ===== ticket_types ===== */
.js-pricing-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== faq_section ===== */
#faq {
    width: 100%;
}

.js-faq-toggle {
    cursor: pointer;
}

.js-faq-icon {
    display: inline-block;
}

/* ===== booking_form ===== */
#contact {
    background-attachment: fixed
}

.js-booking-form input::placeholder {
    color: var(--secondary-text);
    opacity: 0.6
}

/* ===== footer ===== */
.js-newsletter-form input:focus {
    border-color: var(--accent-pink);
}

.js-newsletter-form button {
    box-shadow: 0 4px 15px rgba(255, 45, 85, 0.3);
}

.header_logo{
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.header_logo img{
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.header_logo h2{
    font-size: 18px !important;
    margin: 0;
}