/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #0a3d82;
    border-radius: 10px;
}

/* Glassmorphism for Nav on Scroll */
.nav-scrolled {
    background: rgba(10, 61, 130, 0.9);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 1.5rem !important;
}

/* Hero Text Animation */
h1 {
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
}

/* Custom Red Accent for Rella */
.btn-rella-red {
    background-color: #d9232e;
}

/* Section Transitions */
section {
    overflow: hidden;
}

/* Facebook Card Styling */
.fb-post-wrapper {
    display: flex;
    justify-content: center;
    background: #f0f2f5; /* Facebook original background color */
}

/* Custom scrollbar for the FB card if content is long */
.fb-post-wrapper::-webkit-scrollbar {
    width: 5px;
}
.fb-post-wrapper::-webkit-scrollbar-thumb {
    background: #0a3d82;
    border-radius: 10px;
}

/* Ensure iframe fits width */
.fb-post-wrapper iframe {
    max-width: 100% !important;
}