.playwrite-font {
    font-family: "Playwrite NG Modern", cursive;
}

.navbar {
    background: #353b48;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.tribute-loader {
    position: fixed;
    inset: 0;
    background: #0f0f0f;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.tribute-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.tribute-loader-content {
    max-width: 760px;
    color: #f3efe6;
}

.tribute-loader-content h2 {
    font-size: clamp(24px, 3.2vw, 42px);
    margin-bottom: 16px;
    font-family: "Courgette", cursive;
}

.tribute-loader-content img {
    width: min(100%, 420px);
    border: 3px solid #d6c091;
    border-radius: 10px;
    margin-bottom: 16px;
}

.tribute-loader-content p {
    margin: 0 0 10px;
    line-height: 1.6;
    font-size: clamp(14px, 1.7vw, 20px);
    font-family: "Playwrite NG Modern", cursive;
}

.tribute-loader-content .tribute-note {
    color: #ead3a3;
}

.navbar p {
    font-size: 23px;
    font-family: "Poetsen One", sans-serif;
    font-style: italic;
}

.navbar-brand {
    color: white;
}

.navbar-brand:hover {
    color: white;
}

/* .navbar .navbar-nav .nav-item {
    color: white;
    font-weight: 500;
    font-size: 15px;
    font-family: "Poetsen One", sans-serif;
    font-style: italic;
} */
/* =====================================================
   AMOROUS GLANCES
   MODERN RESPONSIVE NAVBAR
===================================================== */

.ag-navbar {
    min-height: 76px;
    background: rgba(15, 15, 18, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1030;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.ag-navbar.ag-scrolled {
    background: rgba(10, 10, 12, 0.98);
    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.25);
}

/* Ensure bootstrap modals open in front of sticky navbar */
.modal-backdrop {
    z-index: 1050 !important;
}

.modal {
    z-index: 1055 !important;
}

/* Scroll offset so sections land after top menu bar */
html {
    scroll-behavior: smooth;
}

#authors,
#books,
#accolades,
#co-sponsors,
#contact,
section[id] {
    scroll-margin-top: 85px;
}

@media (max-width: 991.98px) {

    #authors,
    #books,
    #accolades,
    #co-sponsors,
    #contact,
    section[id] {
        scroll-margin-top: 75px;
    }
}



.ag-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 1;
    padding: 8px 0;
    margin-right: 25px;
    font-style: italic;
}


.brand-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}


/* .brand-subtitle {
    margin-top: 5px;
    color: #d9f701;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
} */

.ag-navbar .navbar-nav {
    gap: 3px;
}


.ag-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 76px;
    padding: 0 11px !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
    font-family: "Poetsen One", sans-serif;
    font-style: italic;
}

.ag-link::before {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 17px;
    height: 2px;
    background: #d9f701;
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: center;
    transition:
        transform 0.25s ease;
}

.ag-link:hover {
    color: #ffffff !important;
}

.ag-link:hover::before {
    transform: scaleX(1);
}

.ag-dropdown-wrapper {
    position: relative;
    flex-shrink: 0;
}


.ag-dropdown-toggle {
    cursor: pointer;
}

.ag-dropdown-toggle i {
    font-size: 9px;
    transition:
        transform 0.25s ease;
}

.ag-dropdown-wrapper.open .ag-dropdown-toggle i {
    transform: rotate(180deg);
}

.ag-dropdown-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    width: 225px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: rgba(22, 22, 26, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.40);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform:
        translate(-50%, 12px);

    transform-origin: top center;
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;
    z-index: 1040;
}

.ag-dropdown-wrapper.open .ag-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform:
        translate(-50%, 0);
}

.ag-dropdown-menu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}


.ag-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 45px;
    padding: 11px 12px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 500;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        padding-left 0.25s ease;
}

.dropdown-left {
    display: flex;
    align-items: center;
    gap: 10px;
}


.dropdown-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #d9f701;
    background: rgba(217, 247, 1, 0.08);
    border-radius: 8px;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.dropdown-icon i {
    font-size: 12px;
}

.dropdown-arrow {
    color: rgba(255, 255, 255, 0.35);
    font-size: 10px;
    opacity: 0;
    transform: translateX(-5px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.ag-dropdown-item:hover {
    color: #ffffff;
    background: rgba(217, 247, 1, 0.08);
    padding-left: 16px;
}


.ag-dropdown-item:hover .dropdown-icon {
    background: rgba(217, 247, 1, 0.18);
    transform: scale(1.05);
}


.ag-dropdown-item:hover .dropdown-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #d9f701;
}

.ag-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: auto;
    margin: 16px 4px;
    padding: 10px 15px !important;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.ag-cta::before {
    display: none;
}

.ag-book {
    color: #f60000 !important;
    font-size: 12px;
}


.ag-book:hover {
    color: #ffffff !important;
    background: #ff2525;
    transform: translateY(-2px);
    box-shadow:
        0 10px 28px rgba(246, 0, 0, 0.32);
}

.ag-review {
    color: #d9f701 !important;
    /* background: #d9f701; */
    /* box-shadow:
        0 6px 20px rgba(217, 247, 1, 0.15); */
}


.ag-review:hover {
    color: #111111 !important;
    background: #e7ff2e;
    transform: translateY(-2px);
    box-shadow:
        0 10px 28px rgba(217, 247, 1, 0.25);
}


.ag-toggler {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #ffffff;
    border: none;

    border-radius: 10px;
    box-shadow: none !important;
}

.ag-toggler:focus {
    box-shadow: none !important;
}

.ag-toggler i {
    color: #111111;
    font-size: 19px;
}


.ag-close {
    display: none;
}

.ag-toggler[aria-expanded="true"] .ag-bars {
    display: none;
}

.ag-toggler[aria-expanded="true"] .ag-close {
    display: block;
}

@media (min-width: 992px) {
    .ag-navbar>.container {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        width: 100%;
    }

    .ag-navbar .ag-brand {
        flex-shrink: 0;
        margin-right: 20px;
    }

    .ag-navbar .navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        flex: 1 1 auto;
        min-width: 0;
    }


    .ag-navbar .navbar-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 5;
        min-width: 0;
        white-space: nowrap;
    }

    .ag-navbar .ag-link {
        min-height: 76px;
        padding-left: 8px !important;
        padding-right: 8px !important;
        font-size: 16px;
    }

    .ag-navbar .ag-link::before {
        left: 8px;
        right: 8px;
        bottom: 17px;
    }

    .ag-navbar .ag-dropdown-wrapper {
        position: relative;
        flex-shrink: 0;
    }


    .ag-navbar .ag-dropdown-menu {
        position: absolute !important;
        top: calc(100% - 1px) !important;
        left: 50% !important;
        width: 220px !important;
        margin: 0 !important;
        padding: 8px !important;
        display: block !important;
        z-index: 1040;
        transform:
            translate(-50%, 12px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }


    .ag-navbar .ag-dropdown-wrapper.open .ag-dropdown-menu {

        display: block !important;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform:
            translate(-50%, 0);
    }


    .ag-navbar .ag-cta {

        flex-shrink: 0;

        margin: 16px 3px;

        padding-left: 11px !important;

        padding-right: 11px !important;

        font-size: 12px;
    }

    .ag-navbar .ag-dropdown-menu .ag-dropdown-item {

        display: flex !important;

        align-items: center !important;

        justify-content: space-between !important;

        width: 100% !important;
    }

}



@media (max-width: 991.98px) {

    .ag-navbar {
        min-height: 68px;
    }

    .ag-brand {
        margin-right: 0;
    }

    .ag-navbar .navbar-collapse {
        margin-top: 12px;
        padding: 14px 16px;
        background: rgba(24, 24, 28, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    }

    .ag-navbar .navbar-nav {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* ---------------------------------------------
       MOBILE LINKS & BUTTONS (UNIFORM SPACING & HEIGHT)
    --------------------------------------------- */
    .ag-link {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 10px 16px !important;
        margin: 0 !important;
        font-size: 15px;
        border-radius: 10px;
    }

    .ag-link::before {
        display: none;
    }

    .ag-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 44px;
        margin: 0 !important;
        padding: 10px 16px !important;
        border-radius: 50px;
        font-size: 13px;
    }

    /* ---------------------------------------------
       MOBILE DROPDOWN
    --------------------------------------------- */
    .ag-dropdown-wrapper {
        position: relative;
        width: 100%;
        margin: 0;
    }

    .ag-dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        min-height: 44px;
        padding: 10px 16px !important;
        margin: 0 !important;
    }

    .ag-dropdown-toggle>i {
        font-size: 11px;
        transition: transform 0.25s ease;
    }

    .ag-dropdown-wrapper.open .ag-dropdown-toggle>i {
        transform: rotate(180deg);
    }

    .ag-dropdown-menu {
        position: static !important;
        width: 100%;
        margin: 0;
        padding: 0;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 12px;
        box-shadow: none;
        transform: none !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        transition:
            opacity 0.25s ease,
            max-height 0.35s ease,
            margin 0.25s ease,
            padding 0.25s ease;
    }

    .ag-dropdown-wrapper.open .ag-dropdown-menu {
        position: static !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 350px;
        margin: 6px 0;
        padding: 6px;
        transform: none !important;
    }

    .ag-dropdown-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 42px;
        padding: 9px 14px;
        margin: 2px 0;
        font-size: 14px;
        border-radius: 8px;
    }

}


@media (max-width: 575.98px) {

    .brand-title {

        font-size: 19px;
    }

    /* .brand-subtitle {
        font-size: 9px;
        letter-spacing: 3px;
    } */

    .ag-navbar .navbar-collapse {

        margin-left: 3px;

        margin-right: 3px;
    }

    .ag-toggler {

        width: 42px;

        height: 42px;
    }
}

@media (max-width: 400px) {

    .brand-title {

        font-size: 18px;
    }

    /* .brand-subtitle {

        font-size: 8px;

        letter-spacing: 2.5px;
    } */


    .ag-toggler {

        width: 40px;

        height: 40px;
    }

}

.navbar .navbar-nav .nav-item {
    position: relative;
    color: white;
    font-weight: 500;
    font-size: 15px;
    font-family: "Poetsen One", sans-serif;
    font-style: italic;
}

.navbar .navbar-nav .nav-item .nav-link {
    position: relative;
    color: white;
    transition: color 0.3s ease;
}

.navbar .navbar-nav .nav-item:has(.dropdown-items) {
    position: relative;
}

.navbar .navbar-nav .nav-item .dropdown-items {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);

    min-width: 170px;
    margin: 0;
    padding: 10px;

    list-style: none;

    background: rgba(255, 255, 255, 0.98);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    opacity: 0;

    display: none;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
    z-index: 1040;
}


.navbar .navbar-nav .nav-item .dropdown-items li {
    margin: 0;
    padding: 0;
}

.navbar .navbar-nav .nav-item .dropdown-items li a {
    display: block;
    padding: 10px 14px;
    color: #222;
    text-decoration: none;
    font-size: 14px;
    font-style: normal;
    border-radius: 7px;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.navbar .navbar-nav .nav-item .dropdown-items li a:hover {
    background: #f3f3f3;
    color: #f60000;
    padding-left: 18px;
}



@media (min-width: 992px) {
    .navbar .navbar-nav .nav-item:has(.dropdown-items):hover .dropdown-items {
        opacity: 1;

        display: block;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .navbar .navbar-nav .nav-item:has(.dropdown-items):hover>.nav-link {
        color: #f60000;
    }
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-item .dropdown-items {
        position: static;
        width: 100%;
        min-width: 0;
        margin: 5px 0 8px;
        padding: 6px;
        transform: translateY(-8px);
        border-radius: 8px;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.08);
        opacity: 0;
        /* visibility: hidden; */
        display: block;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            max-height 0.35s ease,
            visibility 0.3s ease;
    }

    .navbar .navbar-nav .nav-item.dropdown-open .dropdown-items {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        max-height: 200px;
    }

    .navbar .navbar-nav .nav-item .dropdown-items li a {
        color: white;
        text-align: center;
        padding: 10px;
    }

    .navbar .navbar-nav .nav-item .dropdown-items li a:hover {
        background: rgba(255, 255, 255, 0.12);
        color: #f60000;
        padding-left: 10px;
    }
}

*/ .hero {
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
}

.btn-primary {
    background: #007bff;
    border: none;
}


.book-card {
    border: none;
}

.author-card img {
    border-radius: 50%;
}

.owl-theme .owl-nav {
    display: none;

}

.dropdown-itemsP {
    display: none;
}

.author-img-wrapper:hover .ambassador-img {
    transform: scale(1.05);
}

.author-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}


.sunflower {
    animation: rotateSunflower 10s linear infinite;
}

@keyframes rotateSunflower {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.author-content p {
    text-align: justify;
}

.book-card {
    text-align: center;
    padding: 10px;
    background: #a53232;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(90deg, #800000, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #800000;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.section-title:hover {
    transform: scale(1.05);
    text-shadow: 2px 2px 10px rgba(128, 0, 0, 0.6);
}

.section-title:hover::after {
    width: 120px;
}

.testimonial-card {
    border-radius: 12px;
    color: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card p {
    color: #141111;
    font-size: 17px;
}

.testimonial-card h5 {
    color: #800000;
}

.testimonial-card:hover {
    transform: scale(1.05);
    border: 1px solid #cfc9c9;

}

.testimonial .testimonial-card img {
    height: 131px;
    width: 128px;
    display: unset;
}

.author-sec .container {
    background: #f5eada;
}

.testimonial .owl-carousel .testimonial-card {
    border: 1px solid #cfc9c9;
    background: #eccba8;

}

.footer a {
    color: #bfbfbf;
}

.floating-logo {
    position: fixed;
    left: 0;
    bottom: 35%;
    z-index: 999;
}

.floating-logo img {
    width: 250px;
    opacity: 0.8;
    height: auto;
    display: block;
}

@media (max-width: 767px) {
    .floating-logo {
        top: auto;
        bottom: 4%;
    }

    .floating-logo img {
        width: 164px;
    }
}

.about img {
    border-radius: 31px;

}

.about p {
    text-align: justify;
}

.about h6 {
    font-size: 23px;
    font-family: serif;
    color: #a10b0b;
}

.about .section-title {
    font-size: 34px;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(90deg, #800000, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding: 4px 0;
    transition: all 0.3s ease;
}

.about .container {
    background: #eccba8;
    padding: 20px;
    border-radius: 11px;
}

.about .text img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 8px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    filter: grayscale(20%);
    transition: transform 0.3s ease-in-out;
}

.navbar .navbar-brand img {
    height: 57px;
    width: 65px;
    background: white;
    border-radius: 4px;
}

.book img {
    border-radius: 10px;
}

.book p {
    text-align: justify;
    font-weight: 400;
    font-family: "Playwrite NG Modern", cursive;
    font-size: 19px;
}

.book .text-1 {
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    background: #f1f2f6;
}

.book .text-2 {

    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.book h6 {
    font-family: "Courgette", cursive;
    font-size: 26px;
    font-weight: 600;
}

.book h4 {
    font-family: "Marck Script", cursive;
}

.book h5 {
    font-size: 26px;
    font-family: "Marck Script", cursive;
    font-weight: 600;
}

.book .image img {
    width: 311px;
}

.modal-header {
    background: #333945;
}

.book .text-1 img {
    width: 68%;
}

.modal .form-control {
    font-family: "Playwrite NG Modern", cursive;
    opacity: 0.8;
}

.modal h5 {
    font-family: "Playwrite NG Modern", cursive;
}

.author img {
    width: 400px;
}

.author p {
    font-family: "Playwrite NG Modern", cursive;
    text-align: justify;
    font-size: 17px;
}

.author h6 {
    font-family: "Courgette", cursive;
    font-size: 30px;
    font-weight: 600;
}


.testimonial-section .container {
    padding: 14px 0;
}

.testimonial-section h6 {
    font-family: "Courgette", cursive;
    font-size: 30px;
    font-weight: 600;
}

.testimonial-section {}

.testimonial-section .carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.testimonial-section .fa-star {
    color: #ffb400;
}

.testimonial-section h5 {
    font-family: "Playwrite NG Modern", cursive;
}

.testimonial-section p {
    font-family: "Playwrite NG Modern", cursive;
}

.contact img {
    border-radius: 13px;
}

.contact h2 {
    font-family: "Courgette", cursive;
}

.contact h4 {
    font-family: "Playwrite NG Modern", cursive;
}

.upload label {
    font-size: 18px;
}

.upload .text-1 {
    border: 1px solid #cfcfcf;
    border-radius: 10px;
}

.testimonial-text {
    font-family: "Playwrite NG Modern", cursive;
}

.form-label {
    font-family: "Playwrite NG Modern", cursive;
}

.form-control {
    font-family: "Playwrite NG Modern", cursive;
}

.btn {
    font-family: "Playwrite NG Modern", cursive;
}

.navbar a {
    color: white;
    text-decoration: none;
}

.author h2 {
    font-size: 22px;
    text-align: center;
    font-family: 'Poetsen One';
}

.blurb-sec h1 {
    font-family: "Courgette", cursive;
    font-size: 31px;
    font-weight: 600;
}

.blurb-sec .text {
    background: black;
    color: white;
    padding: 20px;
}

.blurb-sec p {
    text-align: justify;
    font-weight: 400;
    font-family: "Playwrite NG Modern", cursive;
    font-size: 19px;
}

.blurb-sec strong {
    color: #d10a0a;
    font-size: 22px;
    font-style: italic;
    font-family: cursive;
}

.blurb-sec {
    /* background: linear-gradient(135deg, #111, #2b2b2b); */
    color: #e0e0e0;
    border-radius: 12px;
}

.blurb-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.blurb-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #9e9e9e;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.blurb-content p {
    color: #cfcfcf;
    line-height: 1.7;
    font-size: 1rem;

}

.blurb-sec .blurb-content {
    background: black;
    padding: 10px;
}

.blurb-content strong {
    display: block;
    margin-top: 15px;
    color: #ffffff;
    font-size: 1.05rem;
}

.blurb-img {
    max-width: 100%;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.blurb-img:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .blurb-title {
        font-size: 1.8rem;
    }

    .blurb-img {
        max-width: 65%;
    }
}


.author .text img {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
}

.bookk .text-1 {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.bookk .text-2 {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.bookk p {
    font-family: "Playwrite NG Modern", cursive;
    text-align: justify;
    font-size: 17px;
}

.bookkk .row {
    border: 1px solid #cdc8c8;
    padding: 10px;
}

.bookkk h6 {
    font-family: "Courgette", cursive;
    font-size: 31px;
    font-weight: 600;
}

.bookkk .pageFace h1 {
    font-family: "Courgette", cursive;
    font-size: 30px;
    font-weight: 600;
}

.bookkk .pageFace p {
    font-family: "Playwrite NG Modern", cursive;
    text-align: justify;
    font-size: 17px;
}

.bookkk .bookWrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 652 / 422;
    max-width: 100%;
}

.bookkk .bookBg {
    position: relative;
    background-color: #000000;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.bookkk .centerClass {
    position: absolute;
    left: 50%;
    top: 50%;
}

.bookkk .pageBg {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    border-radius: 0px;
}

.bookkk .spineCenter {
    width: 2px;
    height: 100%;
    border-radius: 0px;
    background: rgba(101, 101, 101, .4);
}

.bookkk .pageWrapper {
    position: relative;
    width: 50%;
    height: 100%;
    float: left;
    -webkit-font-smoothing: antialiased;
}

.bookkk .pageFace {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
}

.bookkk .front {
    background: linear-gradient(to right, #d9d9d9 0%, #f9f9f9 3%, #ffffff 8%, #ffffff 100%);
}

.bookkk .back {
    background: linear-gradient(to right, #ffffff 0%, #ffffff 92%, #f9f9f9 97%, #d9d9d9 100%);
}

.bookkk .pageFoldRight {
    position: absolute;
    width: 0px;
    height: 0px;
    top: 0;
    right: 0;
    border-left-width: 1px;
    border-left-color: #DDDDDD;
    border-left-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #DDDDDD;
    border-bottom-style: solid;
    box-shadow: -5px 5px 10px #dddddd;
}

.bookkk .pageFoldLeft {
    position: absolute;
    width: 0px;
    height: 0px;
    top: 0;
    left: 0;
    border-right-width: 1px;
    border-right-color: #DDDDDD;
    border-right-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #DDDDDD;
    border-bottom-style: solid;
    box-shadow: 5px 5px 10px #dddddd;
}

.bookkk h2 {
    font-family: "Courgette", cursive;
    font-size: 30px;
    font-weight: 600;
}

@media screen and (max-width: 391px) {
    .bookkk .bookWrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 652 / 422;
    }

    .bookkk .pageWrapper {
        width: 50%;
        height: 100%;
        position: relative;
    }
}

.bookkk h1 {
    font-size: 22px;
    font-family: 'Poetsen One';
}

.bookkk .text-1 h1 {
    padding-top: 40%;
}

/* Flipbook responsive typography */
.bookkk .pageFace h1,
.bookkk .pageFace h2 {
    margin: 0.25rem 0;
}

.bookkk .pageFace p {
    font-size: clamp(12px, 2.5vw, 17px);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .bookkk .pageFace h1 {
        font-size: clamp(16px, 5vw, 22px);
    }

    .bookkk .pageFace h2 {
        font-size: clamp(14px, 4.5vw, 20px);
    }
}

/* .author .container {
    background: url(images/author-bg-7.png), linear-gradient(54deg, #edededd9, #fffffffa, #e1e1e1);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
} */
.author {
    background: linear-gradient(332deg, #ffffff, #ffffffad), url(images/piyano.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    /* scroll-margin-top: 80px; */
}

.author .container {
    /* background: #f9f9f9; */
    padding: 22px;
    border-radius: 10px;

}

.floating-icons {
    position: fixed;
    bottom: 35%;
    right: 0px;
    z-index: 1000;
}

.floating-icons a {
    display: block;
    text-align: center;
    margin: 2px 0;
    border-radius: 26px;
    font-size: 20px;
    width: 41px;
    height: 42px;
    line-height: 39px;
    background: black;
    color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .floating-icons {
        bottom: 4%;
    }
}

.x-icon {
    background: #0a130c;
}

.floating-icons a:hover {
    transform: scale(1.1);
}

.logline p {
    font-family: "Courgette", cursive;
    text-align: center;
    font-size: 18px;
}

.logline-big {
    padding: 27px 0;
    background-color: #e0e0e0;
    color: #333;
}

.logline-big .container {
    max-width: 1200px;
    margin: auto;
}

.logline-content {
    text-align: center;
    margin-bottom: 20px;
}

.logline-title {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #191717;
    margin-bottom: 15px;
    font-family: 'Courgette';
    font-weight: 800;
}

.logline-text {
    font-size: 20px;
    line-height: 1.8;
    max-width: 800px;
    margin: auto;
    font-family: 'Poetsen One';
}


.logline-image img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.logline-image img:hover {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .logline-text {
        font-size: 18px;
    }

    .logline-image img {
        max-height: 500px;
    }
}

@media (max-width: 767px) {
    .logline-text {
        font-size: 16px;
        padding: 0 15px;
    }

    .logline-image img {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .logline-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .logline-image img {
        max-height: 300px;
    }
}

.accolades h6 {
    font-family: "Courgette", cursive;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
}

.accolades p {
    font-family: 'Playwrite NG Modern';
    text-align: center;
}

.book-sec .demo-block h2 {
    font-family: "Courgette", cursive;
    font-size: 30px;
    font-weight: 600;
}

.book-sec h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.book-sec button {
    border-radius: 0;
}

.book-sec button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

.book-sec button {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.book-sec button {
    overflow: visible;
}

.book-sec button {
    text-transform: none;
}

[type="button"],
button {
    -webkit-appearance: button;
}

[type="button"]::-moz-focus-inner,
button::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

.book-sec h2 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.book-sec h2 {
    font-size: 2rem;
}

.book-sec .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .book-sec .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .book-sec .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .book-sec .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .book-sec .container {
        max-width: 1140px;
    }
}

@media (min-width: 576px) {
    .book-sec .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .book-sec .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .book-sec .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .book-sec .container {
        max-width: 1140px;
    }
}

.book-sec .btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .book-sec .btn {
        transition: none;
    }
}

.book-sec .btn:hover {
    color: #212529;
    text-decoration: none;
}

.book-sec .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.book-sec .btn:disabled {
    opacity: 0.65;
}

.book-sec .btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.book-sec .btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.book-sec .btn-primary:focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.book-sec .btn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.book-sec .btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.book-sec .btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}

.book-sec .btn-secondary:focus {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
    box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.book-sec .btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.book-sec .btn-dark {
    color: #fff;
    background-color: black;
    border-color: black;
}

.book-sec .btn-dark:hover {
    color: #fff;
    background-color: black;
    border-color: black;
}

.book-sec .btn-dark:focus {
    color: #fff;
    background-color: black;
    border-color: black;
    box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.book-sec .btn-dark:disabled {
    color: #fff;
    background-color: black;
    border-color: black;
}

.book-sec .btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.book-sec .btn-group {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
}

.book-sec .btn-group>.btn {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.book-sec .btn-group>.btn:hover {
    z-index: 1;
}

.book-sec .btn-group>.btn:active,
.btn-group>.btn:focus {
    z-index: 1;
}

.book-sec .btn-group>.btn:not(:first-child) {
    margin-left: -1px;
}

.book-sec .btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.book-sec .btn-group>.btn:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.book-sec .bg-light {
    background-color: #f8f9fa !important;
}

.book-sec .overflow-hidden {
    overflow: hidden !important;
}

.book-sec .mb-2 {
    margin-bottom: 0.5rem !important;
}

.book-sec .mt-3 {
    margin-top: 1rem !important;
}

.book-sec .mb-3 {
    margin-bottom: 1rem !important;
}

.book-sec .pt-3 {
    padding-top: 1rem !important;
}

.book-sec .pb-3 {
    padding-bottom: 1rem !important;
}

.book-sec .text-center {
    text-align: center !important;
}

@media print {

    *,
    ::after,
    ::before {
        text-shadow: none !important;
        box-shadow: none !important;
    }

    .book-sec h2 {
        orphans: 3;
        widows: 3;
    }

    .book-sec h2 {
        page-break-after: avoid;
    }

    .book-sec .container {
        min-width: 992px !important;
    }
}

.book-sec .demo-block {
    border-top: solid 1px #dcdcdc;
    border-bottom: solid 1px #dcdcdc;
}

.book-sec .flip-book {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    display: none;
}

.book-sec .page {
    /* padding: 10px; */
    background-color: #dddddd;
    color: #211f1c;
    border: solid 1px #9c9a99;
    overflow: hidden;
}

.book-sec .page .page-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

.book-sec .page .page-content .page-header {
    height: 30px;
    font-size: 100%;
    text-transform: uppercase;
    text-align: center;
}

.book-sec .page .page-content .page-image {
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.book-sec .page .page-content .page-text {
    height: 100%;
    flex-grow: 1;
    font-size: 110%;
    text-align: justify;
    margin-top: 10px;
    padding-top: 10px;
    box-sizing: border-box;
    border-top: solid 1px #f4e8d7;
    font-family: 'Playwrite NG Modern';
}

.book-sec .page .page-content .page-footer {
    height: 30px;
    padding: 0 10px;
    border-top: solid 1px #f4e8d7;
    font-size: 80%;
    color: #998466;
}

.book-sec .page.--left {
    border-right: 0;
    box-shadow: inset -7px 0 30px -7px rgba(0, 0, 0, 0.4);
    height: 550px;
    width: 50%;
}

.book-sec .page.--right {
    border-left: 0;
    box-shadow: inset 7px 0 30px -7px rgba(0, 0, 0, 0.4);
    height: 550px;
    width: 50%;
}

.book-sec .page.--right .page-footer {
    text-align: right;
    padding: 0 10px;
}


.book-sec .stf__wrapper {
    position: relative;
    display: block;
    box-sizing: border-box;
    transform: translateZ(0);
}

.book-sec .stf__wrapper canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.book-sec .stf__block {
    position: absolute;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.book-sec .stf__item {
    display: none;
    position: absolute;
}

/* Ensure left/right flip pages split container 50/50 with fixed height */
/* .book-sec .stf__item.--left,
.book-sec .stf__item.--right {
    width: 50%;
    height: 550px;
} */

.book-img h1 {
    font-family: 'Courgette';
    font-weight: 700;
    font-size: 33px;
}

.bg-white-light {
    background: #f9f9f98e;
    color: wheat;
}

.contact .form-control {
    background: #f9f9f94a;
    /* color: white; */
}

.marquee-text {
    border: 2px solid #31303065;
    padding: 10px 0;
}

.tree {
    width: 80% !important;
}

.co-sponsors {
    background: #ededed;
}

.co-sponsors h6 {
    font-family: "Courgette", cursive;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
}

.media-room h6 {
    font-family: "Courgette", cursive;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}

.works {
    background: #ededed;
}

.works h6 {
    font-family: "Courgette", cursive;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 18px;
}

.works .row {
    /* background: #fffdf8; */
    border: 1px solid #dfd8c9;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(51, 43, 30, 0.12);
    overflow: hidden;
}

.works img {
    width: 100%;
    /* max-height: 420px; */
    object-fit: cover;
}

.works p {
    margin: 0;
    padding: 20px 26px;
    font-family: "Playwrite NG Modern", cursive;
    font-size: 17px;
    line-height: 1.8;
    text-align: justify;
    color: #2d2922;
}

.show-poem {
    background: linear-gradient(180deg, #faf7f2 0%, #ffffff 100%);
}

.show-poem h6 {
    font-family: "Courgette", cursive;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}

/* .show-poem .row {
    row-gap: 24px;
} */

.show-poem-collage {
    position: relative;
    width: 100%;
    max-width: none;
    aspect-ratio: 5 / 4;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 18px;
    background: url('images/bg/corner-design.png');
    background-repeat: no-repeat;
    background-position: right;
    /* background-size: contain; */
}

/* .show-poem-collage::before {
    content: "";
    position: absolute;
    inset: 22px 16px 22px;
    border-radius: 16px;
    border: 1px dashed #d6c3a7;
    background: linear-gradient(130deg, #f3e6d4 0%, #fff8ec 100%);
} */

.show-poem-frame {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    /* border: 4px solid #ffffff; */
    box-shadow: 0 16px 32px rgba(32, 22, 8, 0.25);
}

.show-poem-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8f8f8;
    display: block;
}

.show-poem-frame-main {
    width: 50%;
    height: auto;
    left: 3%;
    bottom: 4%;
    transform: rotate(-5deg);
    z-index: 4;
}

.show-poem-frame-overlay {
    width: 50%;
    height: 72%;
    right: 2%;
    top: 4%;
    transform: rotate(6deg);
    z-index: 3;
}

.poem-letter {
    position: relative;
    background: #fffdf8;
    border: 1px solid #e4d6c2;
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(84, 62, 28, 0.14);
    padding: 32px 28px 22px;
    font-family: "Playwrite NG Modern", cursive;
    color: #3a3023;
}

.poem-letter::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid #ecdcc5;
    border-radius: 5px;
    pointer-events: none;
}

.poem-letter-title {
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.06em;
    font-size: 25px;
    font-weight: 600;
}

.poem-letter-body p {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.5;
}

.poem-letter-sign {
    margin-top: 22px;
    padding-top: 12px;
    border-top: 1px dashed #ceb792;
}

.poem-letter-sign p {
    margin-bottom: 4px;
    font-size: 14px;
}

@media (max-width: 767px) {
    .works .row {
        border-radius: 10px;
    }

    .works p {
        padding: 16px 14px 20px;
        text-align: left;
        font-size: 16px;
    }

    .show-poem-collage {
        width: 100%;
        aspect-ratio: 5 / 4;
        height: auto;
    }

    .show-poem-frame-main {
        width: 50%;
        height: 79%;
        left: 3%;
        bottom: 10%;
    }

    .show-poem-frame-overlay {
        width: 50%;
        height: 72%;
        right: 2%;
        top: 6%;
    }

    .poem-letter {
        padding: 24px 18px 16px;
    }

    .poem-letter-title {
        font-size: 25px;
    }

    .poem-letter-body p {
        font-size: 20px;
    }

    .poem-letter-sign p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .show-poem-collage {
        width: 100%;
        aspect-ratio: 11 / 10;
        height: auto;
    }

    .show-poem-collage::before {
        inset: 16px 10px 16px;
    }

    .show-poem-frame-main {
        height: 55%;
    }

    .show-poem-frame-overlay {
        height: 60%;
    }

    .poem-letter-title {
        font-size: 20px;
    }

    .poem-letter-body p {
        font-size: 16px;
    }
}

/* Responsive styles for flip-book section */
@media (max-width: 1200px) {
    .book-sec .flip-book {
        max-width: 100%;
    }

    .book-sec .page .page-content .page-text {
        font-size: 100%;
        padding: 8px;
        margin-top: 8px;
    }
}

@media (max-width: 992px) {
    .book-sec .demo-block h2 {
        font-size: 26px;
    }

    .book-sec .page .page-content .page-text {
        font-size: 90%;
        padding: 6px;
    }

    .book-sec .page .page-content .page-footer {
        font-size: 70%;
        height: 25px;
    }
}

@media (max-width: 768px) {
    /* .book-sec .page {
            padding: 8px;
        } */

    .book-sec .page .page-content .page-text {
        font-size: 85%;
        padding: 5px;
        margin-top: 5px;
    }

    .book-sec .page .page-content .page-footer {
        height: 20px;
        font-size: 65%;
    }

    .book-sec .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .book-sec .text-center.mt-3.mb-2 {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .book-sec .demo-block h2 {
        font-size: 22px;
        margin-bottom: 1rem;
    }

    /* .book-sec .page {
        padding: 5px;
    } */

    .book-sec .page .page-content .page-text {
        font-size: 75%;
        padding: 4px;
        margin-top: 4px;
        line-height: 1.4;
    }

    .book-sec .page .page-content .page-image {
        background-size: cover;
    }

    .book-sec .page .page-content .page-footer {
        height: 18px;
        font-size: 60%;
    }

    .book-sec .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .book-sec .btn-sm {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }

    .book-sec .text-center.mt-3.mb-2 {
        font-size: 12px;
    }

    .book-sec .stf__wrapper {
        min-width: 280px !important;
        min-height: 373px !important;
    }
}

@media (max-width: 420px) {
    .book-sec .page {
        padding: 3px;
    }

    .book-sec .page .page-content .page-text {
        font-size: 70%;
        padding: 3px;
        margin-top: 3px;
    }

    .book-sec .btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
    }

    .book-sec .text-center.mt-3.mb-2 {
        font-size: 11px;
        line-height: 1.8;
    }
}

/* Media Room Slider Styling */
#mediaRoomSlider {
    position: relative;
    padding-top: 5px;
}

#mediaRoomSlider .owl-stage {
    display: flex;
}

#mediaRoomSlider .owl-item {
    display: flex;
    flex: 1 0 auto;
}

#mediaRoomSlider .item {
    width: 100%;
    display: flex;
}

#mediaRoomSlider .card {
    width: 100%;
}

#mediaRoomSlider .owl-nav {
    display: flex !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    justify-content: space-between;
    pointer-events: none;
    margin-top: 0 !important;
    z-index: 10;
}

#mediaRoomSlider .owl-nav button.owl-prev,
#mediaRoomSlider .owl-nav button.owl-next {
    pointer-events: auto;
    background: #353b48 !important;
    color: #ffffff !important;
    width: 38px;
    height: 38px;
    border-radius: 50% !important;
    margin: 0;
    font-size: 18px !important;
    line-height: 38px !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

#mediaRoomSlider .owl-nav button.owl-prev:hover,
#mediaRoomSlider .owl-nav button.owl-next:hover {
    background: #800000 !important;
    transform: scale(1.08);
}

#mediaRoomSlider .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: 20px;
}

#mediaRoomSlider .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 5px;
    background: #cccccc;
    display: inline-block;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#mediaRoomSlider .owl-dot.active span,
#mediaRoomSlider .owl-dot:hover span {
    background: #800000;
    transform: scale(1.3);
}