@font-face {
    font-family: 'Lovescooter';
    src: url('../fonts/LOVESCOOTER.otf') format('opentype'),
         url('../fonts/LOVESCOOTER.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body,
html {
    background-color: black;
}

.text-info {
    color: darkorange !important;
    text-decoration: none;
}

.contact-form h2 {
    background-color: darkorange !important;
}

#changing-text {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

#intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#intro-logo {
    max-width: 80%;
    max-height: 80%;
    opacity: 0;
    transition: opacity 1s ease-in;
}

.line {
    position: absolute;
    left: 50%;
    width: 1px;
    background-color: #f7dd36;
    transform: translateX(-50%);
    transition: height 1s ease-out;
}

#line-top {
    bottom: 50%;
    height: 0;
}

#line-bottom {
    top: 50%;
    height: 0;
}

#main-content {
    display: none;
}

.gradient-text {
    background: rgb(131, 58, 180);
    background: linear-gradient(90deg, rgba(131, 58, 180, 1) 0%, rgba(240, 67, 147, 1) 0%, rgba(249, 194, 74, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.video-wrap {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.custom-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: black;
    z-index: 1;
}

.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 15px;
    background-color: #212529;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 10px;
    color: white;
    text-decoration: none;
    font-size: smaller;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
    color: orange;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 20px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    opacity: 0.7;
    transition: opacity 0.15s ease-in-out;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: green;
    cursor: pointer;
    margin-top: -7px;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: green;
    cursor: pointer;
    margin-top: -7px;
}

.event-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.event {
    text-align: center;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 24px 0 0;
    padding: 0 12px;
    filter: drop-shadow(0 0.5rem 1rem rgba(0, 0, 0, 0.15));
    border-radius: 15px;
    background: white;
    max-width: 350px;
}

.event:hover {
    transform: scale(1.1);
}

.event-image {
    width: 300px;
    height: 275px;
    background-color: #ccc;
    margin-top: 15px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
}

.event-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    padding: 15px;
}

.event-title {
    font-size: larger;
    font-weight: bold;
    align-content: center;
    text-align: left;
    margin-right: 5px;
}

.event-date {
    font-size: larger;
    color: #666;
    border: 2px solid darkorange;
    padding: 10px;
    font-weight: 700;
    border-radius: 10px;
}

.event-subinfo {
    width: 100%;
    padding: 0 15px 15px;
    text-align: left;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #eee;
    margin-top: 4px;
}

.event-period {
    margin-top: 6px;
    margin-bottom: 4px;
    font-weight: 500;
    color: #555;
}

.event-location {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.event-location-icon {
    color: darkorange;
    font-size: 1rem;
    line-height: 1.2;
    margin-top: 1px;
}

.event-location-text {
    line-height: 1.3;
}

.pricing-thumb {
    min-height: 380px;
}

.carousel-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-wrap {
    position: relative;
}

.carousel-button-container {
    position: absolute;
    display: flex;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 8;
    text-align: center;
    padding: 10px;
}

.carousel-button {
    background-color: white;
    color: red;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 100%;
}

.carousel-button:hover {
    background-color: var(--secondary-color);
    color: white;
}

.carousel-button img {
    height: 30px;
}

#calendar-table th,
#calendar-table td {
    padding: 2px 3px;
    font-size: 11px;
    text-align: center;
    min-width: 32px;
}

#calendar-table th {
    background: #e3f2fd;
    color: #1565c0;
}

#calendar-table td.available {
    background: #eafbe6;
    color: #257e3e;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}

#calendar-table td.available:hover {
    background: #a2f1a4;
    color: #1565c0;
}

#calendar-table td.unavailable {
    background: #f1f1f1;
    color: #888;
    font-size: 9px;
    font-style: italic;
    cursor: not-allowed;
}

#calendar-table th:first-child,
#calendar-table td:first-child {
    min-width: 70px;
    font-size: 11px;
}

#calendar-dropdown.open #calendar-popup {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#calendar-nav-item:hover #calendar-popup,
#calendar-popup:hover {
    opacity: 1;
    pointer-events: auto;
    display: block !important;
}

.calendar-popup {
    display: none;
    position: absolute;
    top: 120%;
    right: 0;
    left: auto;
    z-index: 100;
    min-width: 760px;
    background: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(40, 80, 120, 0.2);
    transition: opacity 0.25s cubic-bezier(.44, .44, .08, 1.18);
    opacity: 0;
    pointer-events: none;
    padding-bottom: 50px;
    padding-top: 50px;
}

.calendar-popup.open {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.carousel-image-button img:hover {
    transform: scale(1.06);
    opacity: 1;
}

.hero {
    position: relative;
    min-height: 100vh;
}

.credits-section-intro {
    max-width: 980px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.credits-card {
    background: #f8f9fb;
    border: 1px solid #dfe6ee;
    border-radius: 32px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    padding: 26px;
    max-width: 1200px;
    margin: 0 auto;
}

.credits-card-inner {
    background: #ffffff;
    border: 1px solid #edf1f5;
    border-radius: 28px;
    padding: 34px 34px 28px 34px;
    position: relative;
}

.credits-main-title {
    text-align: center;
    font-size: clamp(1.9rem, 2.7vw, 2.8rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.credits-main-subtitle {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 26px auto;
    color: #475569;
    font-size: 1rem;
    line-height: 1.65;
}

.credits-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 28px;
    align-items: stretch;
}

.credits-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 28px;
    align-items: start;
    margin-top: 28px;
    margin-bottom: 24px;
}

.credits-offers {
    display: grid;
    gap: 14px;
}

.credit-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e6eef7;
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.credit-badge {
    min-width: 88px;
    text-align: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
}

.credit-badge.gold {
    background: linear-gradient(135deg, #ff9f1c, #ffb347);
}

.credit-badge.blue {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.credit-badge.green {
    background: linear-gradient(135deg, #16a34a, #4ade80);
}

.credit-badge.red {
    background: linear-gradient(135deg, #dc2626, #f87171);
}

.credit-text {
    color: #0f172a;
    font-size: 1.1rem;
    line-height: 1.5;
}

.credit-text strong {
    font-weight: 800;
}

.credit-text span {
    color: #475569;
}

.credits-box {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e6eef7;
    border-radius: 24px;
    padding: 26px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.credits-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    background: #e8f0ff;
    color: #1d4ed8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.credits-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.credits-lead {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 22px;
}

.credits-highlight {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.credits-highlight-item {
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 18px;
    padding: 16px 14px;
    text-align: left;
}

.credits-highlight-label {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.credits-highlight-value {
    display: block;
    font-size: 1rem;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.4;
}

.credits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.credits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #334155;
    line-height: 1.6;
}

.credits-list-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e8fff2;
    color: #15803d;
    font-weight: 800;
}

.credits-steps {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.credit-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 18px;
    padding: 15px 16px;
}

.step-number {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(255, 122, 24, 0.25);
}

.step-content {
    color: #475569;
    line-height: 1.6;
    font-size: 0.96rem;
}

.step-content strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
    color: #0f172a;
    font-weight: 800;
}

.step-content small {
    color: #475569;
    font-size: 0.92rem;
}

.store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #334155;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 700;
}

.store-badge:hover {
    color: #0f172a;
    background: #eef6ff;
}

.credits-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 18px;
    padding: 15px 16px;
}

.credits-step-number {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(255, 122, 24, 0.25);
}

.credits-step-content h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: #0f172a;
    font-weight: 800;
}

.credits-step-content p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
    font-size: 0.96rem;
}

.credits-price-panel {
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
    color: #fff;
    border-radius: 24px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.credits-price-panel::before {
    content: "";
    position: absolute;
    inset: auto -60px -80px auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 179, 71, 0.35) 0%, rgba(255, 179, 71, 0) 70%);
    pointer-events: none;
}

.credits-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 18px;
}

.credits-price-title {
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.credits-price-text {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin-bottom: 22px;
}

.credits-price-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 22px;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
}

.credits-price-label {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.64);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    font-weight: 700;
}

.credits-price-value {
    display: block;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 10px;
}

.credits-price-note {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    font-size: 0.95rem;
}

.credits-price-includes {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.credits-price-includes li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
}

.credits-price-includes li span {
    color: #ffb347;
    font-weight: 800;
}

.credits-cta-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.credits-playtomic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: white;
    text-decoration: none;
    font-weight: 800;
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 14px 34px rgba(255, 122, 24, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.credits-playtomic-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(255, 122, 24, 0.38);
    filter: brightness(1.03);
    color: white;
}

.credits-playtomic-btn i {
    font-size: 1.05rem;
}

.credits-mini-note {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .credits-grid {
        grid-template-columns: 1fr;
    }

    .credits-layout {
        grid-template-columns: 1fr;
    }

    .credits-card-inner {
        padding: 24px 20px;
    }

    .credits-highlight {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 600px) {
    .carousel-button {
        flex-direction: column;
        font-size: 14px;
        padding: 10px;
    }

    .carousel-button img {
        margin: 5px 0 !important;
    }
}

@media (max-width: 768px) {
    .credit-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .credit-badge {
        min-width: 100%;
    }

    .navbar-toggler {
        margin-right: 15%;
    }

    .custom-video {
        position: relative !important;
    }

    .overlay {
        background: none !important;
    }

    .highlight-thumb {
        padding: 0 3% 0 3% !important;
    }

    .highlight {
        background: white !important;
        margin-top: 100px;
    }

    .custom-btn,
    .navbar-expand-lg .navbar-nav .nav-link.custom-btn,
    .navbar-nav .nav-link.custom-btn {
        background-color: darkorange !important;
    }

    .hero-text {
        top: 50% !important;
        font-size: small !important;
    }

    .hero .arrow-icon {
        display: none;
    }

    .event {
        width: 100% !important;
        margin: 12px 0 !important;
    }

    #dalurenclass,
    #piekurenclass {
        zoom: 0.9;
    }

    .venue-thumb {
        zoom: 0.7;
    }

    .social-icon,
    #footerlogo {
        display: none;
    }

    .pricing-thumb {
        zoom: 0.7;
    }

    #photo_1 {
        display: none;
    }

    #photo_2,
    #photo_3 {
        background-color: black;
        z-index: 1;
    }

    .highlight-info h3 {
        font-size: 20px;
    }

    .bi-calendar-week,
    .bi-calendar-week-fill {
        display: none;
    }

    #creditsclass {
        margin-top: 15px;
    }

    #sticky-wrapper {
        height: auto !important;
    }

    .carousel-button-container {
        top: 5%;
    }

    .navbar {
        position: relative !important;
        top: auto !important;
        width: 100% !important;
        zoom: 0.7;
    }

    .navbar-toggler {
        margin-right: 0%;
    }

    body {
        padding-top: 0 !important;
    }

    .hero {
        padding-top: 0 !important;
    }
}
