:root {
    --primary-color: #d35400;
    /* Monk Robe Color - Saffron/Orange */
    --secondary-color: #2e8b57;
    /* Nature Green */
    --bg-color: #fdfbf7;
    /* Creamy White */
    --text-color: #333333;
    --light-text: #ffffff;
    --overlay-color: rgba(0, 0, 0, 0.5);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* --- General Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans Sinhala', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Abhaya Libre', serif;
    /* More traditional/artistic font for headings */
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: #666;
}

/* --- Reveal Animation Classes --- */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-hidden.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Navigation Bar --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light-text);
    font-family: 'Abhaya Libre', serif;
    display: flex;
    align-items: center;
    gap: 10px;
    /* Add spacing between icon and text */
}

nav.scrolled .logo {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: var(--light-text);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav.scrolled .nav-links li a {
    color: var(--text-color);
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
}

nav.scrolled .hamburger {
    color: var(--text-color);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background-image: url('images/d751b00a-3bc4-4842-aaaa-762fe0006eb2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

@supports (-webkit-touch-callout: none) {
    .hero {
        background-attachment: scroll;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--light-text);
    padding: 20px;
    animation: fadeIn 1.5s ease;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: clamp(1.1rem, 2vw + 1rem, 1.5rem);
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-english-text {
    word-spacing: -2px;
    /* Reduce horizontal distance between words */
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: 0.3s;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: white;
}

.btn.outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn.outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* --- About Section --- */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-img {
    flex: 1;
    min-width: 300px;
}

.about-img img {
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* --- Sangha Section --- */
.sangha-section {
    background-color: #f4f1ea;
    /* Slightly darker cream */
}

.chief-monk-card {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 50px;
    align-items: center;
}

.chief-monk-img {
    flex: 1;
    min-width: 300px;
    height: 400px;
}

.chief-monk-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chief-monk-info {
    flex: 1.5;
    padding: 40px;
    min-width: 300px;
}

.role-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.chief-monk-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.monks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.monk-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s;
}

.monk-card:hover {
    transform: translateY(-5px);
}

.monk-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 4px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.monk-card h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.monk-card p {
    font-size: 0.95rem;
    color: #777;
}

/* --- Upcoming Events Section --- */
.events-section {
    background-color: #fff;
}

.event-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s;
}

.event-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.event-date {
    background-color: var(--secondary-color);
    color: white;
    padding: 20px;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.event-date .month {
    font-size: 1rem;
    text-transform: uppercase;
}

.event-details {
    padding: 20px;
    flex: 1;
}

.event-details h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #333;
}

.event-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.event-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* --- Scenery / View Point Section --- */
.scenery-section {
    background-color: var(--bg-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* --- New Photo Gallery Section --- */
.photo-gallery-section {
    background-color: #fff;
}

/* Styles for Hidden Gallery Items */
.hidden-gallery-item {
    display: none;
}

.load-more-btn {
    text-align: center;
    margin-top: 30px;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 2rem;
    transition: 0.3s;
    animation: bounce 2s infinite;
}

.load-more-btn:hover {
    transform: scale(1.2);
    color: var(--secondary-color);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* --- Video Carousel Section --- */
.video-section {
    background-color: #fdfbf7;
}

.video-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
    /* Increased padding to separate arrows from thumbnails */
}

.video-track-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.video-track-container::-webkit-scrollbar {
    display: none;
}

.video-track {
    display: flex;
    gap: 20px;
    padding: 10px 0;
}

.video-card {
    min-width: calc(33.333% - 14px);
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    scroll-snap-align: center;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    cursor: pointer;
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: 0.3s;
}

.video-thumbnail:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(211, 84, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    pointer-events: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.video-card iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.video-info {
    padding: 15px;
}

.video-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--secondary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.nav-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* --- Programs Section --- */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.program-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
    border-top: 5px solid var(--secondary-color);
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.program-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* --- Donation Section --- */
.donation-section {
    background-color: #fff;
    border-top: 1px solid #eee;
}

.donation-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.donation-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border-top: 5px solid var(--primary-color);
}

.donation-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.donation-card h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.bank-info {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-top: 20px;
}

.bank-info p {
    margin-bottom: 10px;
    font-size: 1.05rem;
    border-bottom: 1px dashed #eee;
    padding-bottom: 5px;
}

.bank-info p:last-child {
    border-bottom: none;
}

.needs-items {
    margin-top: 20px;
}

.needs-items li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.needs-items li i {
    color: var(--secondary-color);
}

/* --- Visitor Guidelines Section --- */
.guidelines-section {
    background-color: #f8f9fa;
    text-align: center;
}

.guidelines-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.guideline-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.guideline-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    color: var(--primary-color);
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--secondary-color);
}

.guideline-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.guideline-item p {
    font-size: 0.9rem;
    color: #666;
}

/* --- Quote Section --- */
.quote-section {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.quote-text {
    font-size: 1.8rem;
    font-style: italic;
    font-family: 'Abhaya Libre', serif;
}

/* --- Footer --- */
footer {
    background-color: #222;
    color: #ddd;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

.footer-webartist-link {
    color: var(--primary-color) !important;
    font-weight: bold;
    text-decoration: none;
}

.footer-webartist-link:hover {
    color: var(--secondary-color) !important;
    text-decoration: underline;
}

/* --- Responsive Queries (Enhanced for Mobile Optimization) --- */
@media (max-width: 900px) {
    .video-card {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {

    /* Adjust spacing */
    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* Fixed navbar offset */
    section[id] {
        scroll-margin-top: 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hamburger {
        display: block;
    }

    /* Navigation Slide-in Drawer */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding-top: 80px;
        gap: 0;
        transition: 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links li a {
        color: var(--text-color);
        display: block;
        padding: 15px;
    }

    .nav-links li a::after {
        display: none;
    }

    nav.scrolled .nav-links {
        top: 0;
    }

    .hamburger {
        position: relative;
        z-index: 1000;
    }

    .hamburger.active {
        color: var(--text-color);
    }

    /* Layout Adjustments */
    .chief-monk-card {
        flex-direction: column;
    }

    .chief-monk-img {
        height: 300px;
        width: 100%;
    }

    .chief-monk-info {
        padding: 25px;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .event-date {
        width: 100%;
        padding: 10px;
        flex-direction: row;
        gap: 10px;
        align-items: baseline;
        justify-content: center;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    /* --- FIXED SECTIONS BELOW --- */

    /* Donations: Stack vertically */
    .donation-container {
        flex-direction: column;
        gap: 30px;
    }

    .donation-card {
        padding: 30px 20px;
        min-width: 100%;
        /* Force full width on mobile */
    }

    /* Visitor Guidelines: Align center and fix width */
    .guidelines-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .guideline-item {
        max-width: 100%;
        width: 100%;
    }

    /* Quote: Better padding */
    .quote-section {
        padding: 40px 20px;
    }

    .quote-text {
        font-size: 1.4rem;
    }

    /* Footer: Center Alignment */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-col ul li a:hover {
        padding-left: 0;
        /* Remove side movement on mobile hover */
    }

    .social-links {
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }

    /* Video & Other */
    .video-card {
        min-width: 100%;
    }

    .video-carousel-container {
        padding: 0 10px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* --- Lightbox Styles --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* --- Development Section Styles --- */
.development-section {
    background-color: #f4f1ea;
}

.development-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.dev-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--card-shadow);
    transition: 0.3s;
    border-left: 5px solid var(--primary-color);
}

.dev-card:hover {
    transform: translateY(-5px);
}

.dev-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.dev-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.dev-appeal {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
}

.dev-appeal p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-color);
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .dev-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* --- Event Popup Modal Styles --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(5px);
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: #fdfbf7;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    padding: 20px 25px 30px 25px;
    text-align: center;
    position: relative;
    transform: translateY(-30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 3px solid #d35400;
    max-height: 90vh;
    overflow-y: auto;
}

.popup-overlay.show .popup-content {
    transform: translateY(0) scale(1);
}

.popup-top-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
    z-index: 10;
}

.close-popup:hover {
    background: #d00000;
}

.popup-attention {
    color: #ff0000; /* රතු පාටින් අවධානයයි */
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 800;
    text-shadow: 1px 1px 3px rgba(255, 0, 0, 0.2);
    animation: popupPulse 1.5s infinite;
}

@keyframes popupPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.popup-body h3 {
    font-size: 1.6rem;
    color: #d35400;
    margin-bottom: 10px;
}

.popup-highlight {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.5;
}

.popup-date {
    background-color: #d35400;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    margin: 10px 0 20px 0;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(211, 84, 0, 0.3);
}

.popup-schedule {
    text-align: left;
    margin: 0 auto 20px auto;
    max-width: 420px;
    list-style: none;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
}

.popup-schedule li {
    padding: 8px 0;
    border-bottom: 1px dashed #ccc;
    font-size: 0.95rem;
    color: #444;
    font-weight: 600;
}

.popup-schedule li i {
    color: #d35400;
    margin-right: 8px;
}

.popup-schedule li:last-child {
    border-bottom: none;
}

.popup-footer {
    font-size: 1rem;
    color: #d35400;
    font-weight: bold;
    margin-top: 10px;
}