body {
    font-family: 'Poppins', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}
.navbar-brand {
    font-family: 'Playfair Display', serif;
}

/* Custom h2 styles */
h2 {
    text-align: center;
    position: relative;
    padding-bottom: 0.5em;
    margin-bottom: 1.5em;
}
h2::after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 100%);
    margin-top: 0.4em;
}

/* Adjust navbar height to accommodate larger logo */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    min-height: 140px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%) !important;
}
.navbar .container {
    align-items: center;
}

/* Footer matching navbar color */
footer {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%) !important;
}

/* Scroll to Top Button Styles */
#scrollToTopBtn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: opacity 0.3s;
}
#scrollToTopBtn.show {
    display: flex;
    opacity: 1;
}

/* Upcoming Events Card Shadow */
#events .card {
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.15), 0 1.5px 6px rgba(247, 147, 30, 0.10);
    border: none;
    border-radius: 1rem;
    transition: box-shadow 0.3s;
}
#events .card:hover {
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.25), 0 3px 12px rgba(247, 147, 30, 0.18);
}