.blob {
    width: 100%;
    box-shadow: 0 0 0 0#000;
    transform: scale(1);
    animation: pulse 2s infinite
}

@keyframes pulse {
    0% {
        transform: scale(.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, .7)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px transparent
    }

    to {
        transform: scale(.95);
        box-shadow: 0 0 0 0 transparent
    }
}

.promocode {
    border-style: dashed;
    font-size: 2em;
    margin: auto;
    width: 50%;
    padding: 10px;
    text-align: center;
    display: block
}

.cta-button {
    display: inline-block;
    padding: .5rem 1rem;
    background-color: #07c;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color .3s
}

.cta-button:hover {
    background-color: #005fa3;
    text-decoration: none
}

@media (max-width:767px) {
    .hide-on-mobile {
        display: none
    }
}

:root {
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #433f39;
    --accent-color: #ffb03b;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --swiper-theme-color: #007aff;
    --background-color: rgba(21, 17, 13, 0.85);
    --nav-color: #ffffff;
    --nav-hover-color: #ffb03b;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #444444;
    --nav-dropdown-hover-color: #ffb03b
}

.header a {
    color: var(--accent-color);
    text-decoration: none;
    transition: .3s
}

.header a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none
}

.header {
    --background-color: rgba(255, 255, 255, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    transition: all .5s;
    z-index: 997;
    background-color: var(--background-color)
}

@media (min-width:1200px) {
    .navmenu {
        padding: 0
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center
    }

    .navmenu li {
        position: relative
    }

    .navmenu a,
    .navmenu a:focus {
        color: #444;
        padding: 18px 15px;
        font-size: 14px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: .3s
    }

    .navmenu li:last-child a {
        padding-right: 0
    }

    .navmenu li:hover>a {
        color: var(--nav-hover-color)
    }
}

@media (max-width:1199px) {
    .mobile-nav-toggle {
        color: #444;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color .3s
    }

    .navmenu {
        padding: 0;
        z-index: 9997
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: .3s;
        z-index: 9998;
        box-shadow: 0 0 30px rgba(0, 0, 0, .1)
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: .3s
    }

    .navmenu a:hover {
        color: var(--nav-dropdown-hover-color)
    }
}

.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw;
    padding: 1rem 0
}

.page-title .heading {
    padding: 70px 0 37px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700
}

.page-title .heading p {
    color: #fff
}

h1 {
    font-size: clamp(2rem, 4vw, 2.5rem) !important
}

.scrolled .header {
    --background-color: rgba(21, 17, 13, 0.85)
}

@media (max-width:1199px) {
    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999
    }

    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color .3s
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: #fff;
        overflow-y: auto;
        transition: .3s;
        z-index: 9998;
        box-shadow: 0 0 30px rgba(0, 0, 0, .1)
    }

    .mobile-nav-active .navmenu>ul {
        display: block
    }

    .navmenu {
        padding: 0;
        z-index: 9997
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, .8);
        transition: .3s
    }
}

@media (min-width:1200px) {

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 14px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: .3s
    }
}

h1 {
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2rem) !important;
}

h3 {
    font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}

p {
    margin-bottom: 0.5rem !important;
}

.footer {
    color: #fff;
    background-color: #282828;
    font-size: 14px;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw
}

.error_page {
    min-height: 80vh;
}

.section-title {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.8rem;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.night-theme {
    background: linear-gradient(to right, #1e3c72, #2a5298);
}

.event-theme {
    background: linear-gradient(to right, #6a11cb, #2575fc);
}

.section-paragraph {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cdcdcd;
    font-family: 'Segoe UI', sans-serif;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.link-highlight {
    color: #2575fc;
    text-decoration: underline;
}

.box-first {
    background: linear-gradient(135deg, #1e215d, #3a0ca3);
    color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(58, 12, 163, 0.5);
}

.box-second {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(44, 83, 100, 0.5);
}

/* Optional: Add responsive spacing */
@media (max-width: 991px) {

    .box-first,
    .box-second {
        margin-bottom: 1.5rem;
    }
}

.img_el {
    padding: 60px 0;
    position: relative;
}

.img_el:before {
    content: "";
    background: color-mix(in srgb, #00000091, transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.img_el .img_el-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("/assets/images/content/see-the-sky.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.img_el .container {
    position: relative;
    z-index: 3;
}

.img_el .container h2,
.img_el .container p {
    color: white !important;
}

.img_el .container h3 {
    color: #EF8A54;
}

.full-width-section {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}