/* Custom Styles for Jacobite Online */

body {
    background-color: #ffffff;
    color: #1a1a1a;
}

/* Font Assignments */
h1, h2, h3, h4, h5, h6 { font-family: 'Libre Baskerville', serif; }
p, a, span, div, li { font-family: 'Merriweather', serif; }

/* --- FIXED MARQUEE ANIMATION --- */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    /* This makes it scroll smoothly from right to left */
    animation: scroll-left 20s linear infinite;
    padding-left: 100%; /* Start off-screen */
}

/* Pause scrolling when mouse hovers over it */
.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
/* -------------------------------- */

/* Hover Effects */
.hover-gold:hover { color: #b58500; transition: color 0.3s ease; }

/* Image Zoom */
.img-zoom-container { overflow: hidden; }
.img-zoom-container img { transition: transform 0.5s ease; }
.img-zoom-container:hover img { transform: scale(1.05); }

/* STICKY SIDEBAR */
.sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 180px; /* Adjusts for Header Height */
    height: fit-content;
}

/* Mobile Menu */
#mobile-menu {
    transition: max-height 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
}
#mobile-menu.open { max-height: 1000px; }