body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: #e5e5e5;
}

::-webkit-scrollbar-thumb:hover {
    background: #a3a3a3;
}

/* Hide scrollbar for carousel but keep functionality */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Slider Animations */
.slide-text-animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

/* Scroll Down Animation */
@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.animate-scroll-down {
    animation: scrollDown 1.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

/* Rich Text Block Content & Responsive Media */
.ashour-block-rich-text {
    width: 100%;
}

.ashour-block-rich-text p {
    margin-bottom: 1.25rem;
}

.ashour-block-rich-text p:last-child {
    margin-bottom: 0;
}

.ashour-block-rich-text h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ashour-block-rich-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.ashour-block-rich-text h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.ashour-block-rich-text h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.ashour-block-rich-text h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.ashour-block-rich-text h6 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.ashour-block-rich-text ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
}

.ashour-block-rich-text ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
}

.ashour-block-rich-text li {
    margin-bottom: 0.375rem;
}

.ashour-block-rich-text strong,
.ashour-block-rich-text b {
    font-weight: 700;
}

.ashour-block-rich-text em,
.ashour-block-rich-text i {
    font-style: italic;
}

.ashour-block-rich-text u {
    text-decoration: underline;
}

.ashour-block-rich-text blockquote {
    border-left: 3px solid #171717;
    padding-left: 1rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    font-style: italic;
}

/* Responsive Media & Tables */
.ashour-block-rich-text img,
.ashour-block-rich-text video,
.ashour-block-rich-text iframe,
.ashour-block-rich-text object,
.ashour-block-rich-text embed {
    max-width: 100%;
    height: auto;
}

.ashour-block-rich-text table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    display: block;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.ashour-block-rich-text img.aligncenter,
.ashour-block-rich-text .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.ashour-block-rich-text img.alignleft,
.ashour-block-rich-text .alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.ashour-block-rich-text img.alignright,
.ashour-block-rich-text .alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.ashour-block-rich-text .wp-caption {
    max-width: 100%;
    margin-bottom: 1.25rem;
}

.ashour-block-rich-text .wp-caption-text {
    font-size: 0.875rem;
    color: #666666;
    text-align: center;
    margin-top: 0.5rem;
}