/* Reset & Base Styles */
:root {
    /* New Color Palette: Maroon, Gold, Beige */
    --primary-maroon: #560000;
    /* Deep Red/Maroon */
    --primary-gold: #C5A059;
    /* Muted Gold */
    --bg-light: #F9F5F0;
    /* Warm Beige/Paper */
    --bg-card: #FFFFFF;
    --text-dark: #2C1E1A;
    /* Dark Brown Text */
    --text-light: #F5F1EA;
    --accent-brown: #5D4037;

    /* Legacy mapping */
    --navy-blue: var(--primary-maroon);
    --bg-beige: var(--bg-light);

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
    /* Paper texture */
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation */
.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    border-bottom: 2px solid var(--primary-gold);
    background: linear-gradient(to right, #560000, #720000);
    /* Maroon Gradient */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.nav-logo-small {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu li a {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-gold);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width 0.3s;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Header / Hero Section */
.hero-section {
    position: relative;
    height: 400px;
    /* Reduced height for sleeker look */
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content */
    align-items: center;
    /* Center content */
    padding-bottom: 0;
    border-top: none;
    text-align: center;
    overflow: hidden;
    /* Important for parallax scaling/movement */
}

.hero-bg {
    position: absolute;
    top: 52px;
    /* Below Nav (50px + 2px border) */
    left: 0;
    width: 100%;
    height: calc(100% - 52px);
    z-index: -2;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    /* Optimal framing for the piano */
    animation: kenBurns 20s ease-out infinite alternate;
    filter: brightness(1.0) contrast(1.15) saturate(0.9);
    /* Tone down yellow wood, increase definition */
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    top: 52px;
    /* Match bg */
    left: 0;
    width: 100%;
    height: calc(100% - 52px);
    background: linear-gradient(to bottom, rgba(86, 0, 0, 0.3) 0%, rgba(86, 0, 0, 0) 30%, rgba(86, 0, 0, 0) 70%, rgba(86, 0, 0, 0.4) 100%);
    /* Integrated gradient */
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

.logo-area {
    position: static;
    /* Reset absolute positioning */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 180px;
    /* Push content down as requested */
}

.nav-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 60px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.logo-text h1 {
    font-size: 28px;
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-text p {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #E0E0E0;
    text-transform: uppercase;
}

.page-title {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-gold);
    text-shadow: none;
    margin-bottom: 0;
    padding-left: 0;
    border-left: none;
    margin-top: 10px;
    border-top: 1px solid rgba(212, 175, 55, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.5);
    padding: 10px 20px;
    display: inline-block;
}

/* Breadcrumb */
.breadcrumb-bar {
    background-color: #ECECEC;
    padding: 10px 0;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.breadcrumb-bar i {
    font-size: 10px;
    margin: 0 5px;
}

.breadcrumb-bar .current {
    font-weight: 500;
    color: #333;
}

/* Main Content */
.main-content {
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Detail Page Image Styling */
.featured-image-container {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.featured-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-title {
    font-family: var(--font-serif);
    color: var(--navy-blue);
    font-size: 20px;
    /* Reduced from 24px */
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #D7CCC8;
    margin-bottom: 30px;
    position: relative;
}

.divider::after {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    width: 100px;
    height: 3px;
    background-color: var(--primary-gold);
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--bg-card);
    border: 1px solid #E0D8D0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: #eee;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.course-card:hover .card-image img {
    transform: scale(1.05);
}

.card-body {
    padding: 20px 15px;
    text-align: left;
    background-color: #fff;
    background-image: url('images/paper_texture.png');
    background-repeat: repeat;
    /* Verified Beige/White gradient */
    display: flex;
    flex-direction: column;
    flex: 1;
    /* Expand to fill height */
    justify-content: space-between;
}

.card-body h3 {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--accent-brown);
    text-transform: none;
    /* Changed from uppercase */
    margin-bottom: 10px;
    display: block;
    /* Ensure block for justify */
    text-align: justify;
    line-height: 1.3;
    font-weight: 700;
}

.card-body h3 i {
    font-size: 14px;
    color: var(--primary-gold);
    margin-right: 5px;
}

.card-summary {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
    text-align: justify;
    /* Justify text */
}

.card-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
    border-top: 1px dashed #eee;
    padding-top: 10px;
    justify-content: flex-end;
    /* Align to right */
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.loading-spinner {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    font-style: italic;
    color: #999;
}

.btn-more {
    display: inline-block;
    align-self: flex-end;
    /* Changed to flex-end (right) */
    background-color: transparent;
    border: 1px solid #b76e00;
    /* Match text color */
    color: #b76e00;
    /* Darker gold/orange for better contrast on paper bg */
    padding: 8px 20px;
    font-size: 12px;
    /* Increase legibility */
    border-radius: 4px;
    text-transform: none;
    font-weight: 400;
    transition: all 0.3s;
}

.btn-more:hover {
    background-color: var(--primary-gold);
    color: var(--primary-maroon);
    border-color: var(--primary-gold);
}

.btn-more i {
    font-size: 10px;
    margin-left: 5px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 50px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.section-heading {
    font-family: var(--font-serif);
    color: var(--navy-blue);
    font-size: 22px;
    margin-bottom: 10px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.reason-item {
    display: flex;
    gap: 15px;
}

.icon-box {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-brown);
    font-size: 18px;
}

.reason-content h4 {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--accent-brown);
    margin-bottom: 5px;
}

.reason-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* News Box - Redesigned */
.news-box {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    /* Keep padding for alignment */
    /* Soft shadow */
    height: 100%;
    /* Ensure full height */
}

.news-box h3 {
    /* Styles handled by .section-title class in HTML */
    margin-bottom: 10px;
}

.divider-small {
    display: none;
    /* Remove old divider */
}

.news-list {
    margin-bottom: 0;
}

.notification-item {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dotted #ddd;
    align-items: flex-start;
    transition: transform 0.2s;
}

.notification-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.notification-item:hover {
    transform: translateX(5px);
}

.date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #F9F5F0;
    border: 1px solid #E0D8D0;
    border-radius: 4px;
    flex-shrink: 0;
    color: var(--primary-maroon);
}

.date-day {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 9px;
    text-transform: uppercase;
    color: #666;
    margin-top: 2px;
}

.notif-content {
    flex: 1;
}

.notif-content a {
    font-family: var(--font-sans);
    /* Ensure main font */
    font-size: 13px;
    color: #333;
    /* Match spotlight summary */
    font-weight: 600;
    /* Enhance weight */
    line-height: 1.4;
    display: block;
    /* Ensure it takes full width/height of content */
    display: block;
    /* Ensure it takes full width/height of content */
    /* Removed line-clamp to show full title */
    text-decoration: none;
}

.notif-content a:hover {
    color: var(--primary-gold);
}

.btn-view-all {
    display: block;
    width: 100%;
    text-align: center;
    background-color: transparent;
    /* Transparent */
    border: 1px solid var(--navy-blue);
    /* Add border */
    color: var(--navy-blue);
    padding: 10px;
    font-size: 12px;
    text-transform: none;
    /* Changed from uppercase */
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-view-all:hover {
    background-color: var(--navy-blue);
    color: #fff;
    border-color: var(--navy-blue);
}

/* Footer */
.main-footer {
    background-color: var(--primary-maroon);
    color: #fff;
    padding-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
}

.footer-divider {
    width: 50px;
    height: 2px;
    background-color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #B0BEC5;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-col ul li i {
    font-size: 10px;
    margin-right: 8px;
    color: var(--primary-gold);
}

.contact-info li {
    display: flex;
    gap: 10px;
}

.contact-info li i {
    font-size: 14px;
    margin-top: 3px;
}

.footer-bottom {
    background-color: #2F0000;
    /* Darker Maroon */
    padding: 20px 0;
    font-size: 13px;
    color: #D7CCC8;
    /* Light brownish gray */
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-gold);
    color: var(--primary-maroon);
}

/* Responsive */
@media (max-width: 992px) {
    .course-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .layout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 300px;
    }

    .page-title {
        font-size: 32px;
    }

    .logo-text h1 {
        font-size: 16px;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Spotlight Section - New Design */
.spotlight-section {
    background-color: #fcfbf9;
    background-image: url('images/paper_texture.png');
    /* Apply texture to full section */
    padding-top: 10px;
    padding-bottom: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid #e0e0e0;
}

.spotlight-layout {
    border: 1px solid #e0d8d0;
    /* Elegant earthy border */
    padding: 20px 30px 30px;
    background: #ffffff;
    /* Solid white for contrast */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Premium soft shadow */
    border-radius: 8px;
    transition: all 0.3s ease;
}

.spotlight-layout:hover {
    transform: translateY(-5px);
    /* Lift effect */
    box-shadow: 0 15px 40px rgba(86, 0, 0, 0.15);
    /* Warm glow shadow */
    border-color: var(--primary-gold);
}

.spotlight-wrapper {
    /* Changed via inline style in HTML, but here are defaults/fallbacks */
    display: flex;
    gap: 30px;
    align-items: stretch;
    /* Ensure both columns fill height */
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    /* Remove padding/border for seamless look */
}

.spotlight-image {
    /* Flex and width handled by inline styles or parent layout context */
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: auto;
    aspect-ratio: 16 / 9;
    /* Enforce standard ratio like the first image usually has */
    min-height: 220px;
}

.spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.spotlight-wrapper:hover .spotlight-image img {
    transform: scale(1.03);
}

.spotlight-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Push button to bottom */
    padding-left: 10px;
}

.spotlight-category {
    color: var(--primary-gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.spotlight-title {
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--accent-brown);
    text-transform: none;
    text-align: justify;
}

.spotlight-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.spotlight-title a:hover {
    color: var(--primary-gold);
}

.spotlight-summary {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    /* Darker gray */
    margin-bottom: 20px;
    text-align: justify;
    /* Justify text */
}

.btn-spotlight {
    display: inline-block;
    align-self: flex-end;
    background-color: transparent;
    border: 1px solid #b76e00;
    /* Match requested gold color */
    color: #b76e00;
    padding: 8px 20px;
    font-size: 12px;
    text-transform: none;
    /* Changed from uppercase */
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 400;
    transition: all 0.3s;
}

.btn-spotlight:hover {
    background-color: var(--primary-gold);
    color: var(--primary-maroon);
    border-color: var(--primary-gold);
}

.spotlight-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #888;
    border-top: 1px solid #eee;
    /* Light border */
    padding-top: 15px;
    width: 100%;
    justify-content: flex-end;
    /* Align to right */
}

.spotlight-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .spotlight-wrapper {
        flex-direction: column;
    }

    .spotlight-image {
        flex: auto;
        width: 100%;
        height: 250px;
    }
}

/* Event Poster Grid (Poster Wall) */
.poster-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.poster-card {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: transparent;
}

.poster-card:hover {
    transform: translateY(-5px);
}

.poster-image {
    width: 100%;
    aspect-ratio: 210/297;
    /* A4 Ratio */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    position: relative;
    background-color: #eee;
}

.poster-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    /* Rounded image corners */
    transition: transform 0.5s ease;
}

.poster-card:hover .poster-image img {
    transform: scale(1.03);
}

.poster-info {
    text-align: center;
}

.poster-title {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-brown);
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
}

.poster-title a {
    color: inherit;
    text-decoration: none;
    font-family: inherit;
    font-weight: inherit;
}

.poster-date {
    font-size: 14px;
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .poster-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .poster-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer Styling Matching Navbar */
.main-footer {
    background: #3e0000;
    /* Very Dark Maroon */
    height: auto;
    /* Allow height to grow */
    min-height: 50px;
    display: flex;
    align-items: center;
    border-top: none;
    /* Remove border to match plain image */
    margin-top: 40px;
    padding: 15px 0;
    /* Add vertical padding */
}

.footer-bottom {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: #3e0000;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 13px;
    /* Match Nav Font Size */
    font-family: var(--font-sans);
}

.social-links a {
    color: #fff;
    font-size: 14px;
    margin-left: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-gold);
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 768px) {

    /* Navigation */
    .nav-toggle {
        display: block;
        z-index: 100;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #3e0000;
        /* Dark Maroon */
        flex-direction: column;
        padding-top: 80px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 99;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li a {
        display: block;
        padding: 15px 25px;
        font-size: 14px;
    }

    /* Hero Section */
    .hero-section {
        height: 300px;
    }

    .logo-area {
        margin-top: 100px;
        /* Adjusted from 180px for better centering */
    }

    .logo-icon {
        font-size: 40px;
        /* Smaller icon */
    }

    .logo-text h1 {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .logo-text p {
        font-size: 10px;
        letter-spacing: 1px;
    }

    /* Spotlight Layout Override */
    .spotlight-layout {
        display: flex !important;
        flex-direction: column;
        gap: 30px !important;
    }

    .spotlight-body {
        flex-direction: column !important;
    }

    .spotlight-image {
        max-width: 100% !important;
        flex: auto !important;
        width: 100%;
        height: 200px;
    }

    .spotlight-content {
        padding-left: 0 !important;
        width: 100%;
    }

    /* Course Grids / News Grids */
    .poster-grid,
    .course-grid,
    .related-grid,
    .news-grid-page {
        grid-template-columns: 1fr !important;
    }

    /* Footer */
    .bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .social-links {
        margin-top: 5px;
    }

    .social-links a {
        margin: 0 10px;
    }
}

/* Carousel Utils */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background-color: #dcd0bc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot:hover {
    background-color: #bfa67a;
}

.carousel-dot.active {
    background-color: var(--primary-maroon);
    transform: scale(1.2);
}

.spotlight-slide {
    display: none;
    animation: fadeEffect 0.8s;
}

.spotlight-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0.6;
    }

    to {
        opacity: 1;
    }
}