/* General Reset */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Soft gray background */
    color: #333; /* Dark gray text */
    text-align: center;
}

/* Header */
header {
    background-color: #0056b3; /* Rich blue */
    color: white;
    padding: 20px 0;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

/* Main Content */
main {
    margin: 20px auto;
    max-width: 600px;
    padding: 20px;
    background: white; /* White background for content area */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.holiday-container {
    margin: 20px 0;
}

#holidayTitle {
    font-size: 2em;
    color: #ff4d4d; /* Festive red for titles */
}

#holidayDescription {
    font-size: 1.2em;
    color: #555; /* Medium gray for description text */
}

/* Footer */
footer {
    background: #0056b3; /* Dark gray footer */
    color: white;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Updated Holiday Image Styling */
#holidayImage {
    width: 100%;
    max-width: 80%; /* Limiting max width to 80% of the parent container */
    height: auto; /* Ensure the image maintains its aspect ratio */
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Overlay for the popup */
.popup-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Popup box */
.popup-content {
    background-color: white; /* White background for the popup */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    color: #333; /* Dark text for readability */
}

/* Button style */
.close-btn {
    padding: 10px 20px;
    background-color: #ff4d4d; /* Red button */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.close-btn:hover {
    background-color: #ff1a1a; /* Darker red for hover */
}

/* Additional Styling for Special Holidays (Optional) */
.special-holiday {
    color: #f1c40f; /* Gold for special holiday titles or highlights */
}

