/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f0ff; /* Light purple background */
    color: #333;
    line-height: 1.6;
    margin-top: 80px;
}

/* Header and Navigation */
header {
    background-color: #4b1c6d;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    position: fixed; /* Fix the navigation bar */
    top: 0; /* Position it at the top of the page */
    left: 0;
    width: 100%; /* Make the navigation bar full width */
    z-index: 1000; /* Ensure it stays above other content */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow to distinguish it from the content */
}

.navbar {
    display: flex;
    align-items: center;
}

.menu {
    list-style-type: none;
    display: flex;
    gap: 20px;
    margin-left: 30px; 
    position: relative; /* Ensure dropdowns are positioned relative to navbar */
}

.menu li {
    position: relative;
}

.menu li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
}

.menu li a:hover {
    background-color: #71368a;
    border-radius: 5px;
}

.dropdown {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 220px;
    list-style-type: none;
    border: 1px solid #e0e0e0;
    margin-top: 10px;
    z-index: 15; /* Ensure dropdowns are above other elements */
}

.menu li:hover .dropdown {
    display: block;
}

.dropdown li a {
    padding: 10px;
    color: #333;
    text-align: left;
    white-space: nowrap;
    width: 100%;
    display: block;
}

.dropdown li a:hover {
    background-color: #e0d1ff;
}

/* Hero Image */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Make hero section stay behind navbar and dropdowns */
}

.hero-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    position: relative;
}

.small-text {
    font-size: 0.9em; /* Smaller font size for all non-title content */
    color: #333;
    line-height: 1.5;
}

.floating-card {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.65); /* Semi-transparent white background */
    padding: 20px 40px; /* Reduced padding to make the card more compact */
    border-radius: 10px;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Light shadow for depth effect */
    transition: transform 0.3s ease;
}

.floating-card h1 {
    font-size: 2.2em; /* Title font size */
    color: #4b1c6d;
    margin-bottom: 10px; /* Reduced margin between title and body */
}

.floating-card p {
    font-size: 1.2em; /* Body text font size */
    color: #333;
    font-weight: bold; /* Make body text bold */
    margin: 5px 0; /* Reduced paragraph margin */
    line-height: 1.2; /* Reduced line spacing for compact look */
}

/* Define float animation */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Apply animation only when triggered */
.float-once {
    animation: float 0.8s ease-in-out;
}

/* Flyer Thumbnail */
.flyer-thumbnail {
    width: 200px; /* Adjust width as needed */
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a slight shadow for depth */
    transition: transform 0.3s ease;
}

.flyer-thumbnail:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Adjust spacing between sections */
.content-section {
    padding: 20px 30px; /* Reduce padding for a tighter look */
    max-width: 800px;
    margin: 16px auto; /* Reduce margin to decrease the space between sections */
}

/* Card Style for each Section */
.card {
    background-color: #f5f0ff; /* Match background light purple */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Soft shadow for subtle depth */
    margin-bottom: 20px;
}

.section-title {
    font-size: 2em;
    color: #4b1c6d;
    margin-bottom: 10px;
}

.section-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Unified Bullet Points */
.styled-list {
    list-style-type: none;
    padding-left: 0;
}

.styled-list > li {
    font-size: 1.0em;
    color: #333;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.styled-list li::before {
    content: "●"; /* Primary solid bullet point */
    position: absolute;
    left: 0;
    color: #4b1c6d; /* Purple color */
}

/* Nested Bullet Points for Sub-items */
.styled-list li ul li {
    font-size: 0.9em;
    color: #555;
    padding-left: 25px;
    margin-bottom: 5px;
    position: relative;
}

.styled-list li ul li::before {
    content: "○"; /* Secondary hollow bullet point */
    position: absolute;
    left: 0;
    color: #4b1c6d; /* Purple color */
}

/* Dates List and Content List Styling */
.dates-list, .content-section ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 1.1em;
}

.dates-list li, .content-section ul li {
    margin-bottom: 6px;
    color: #333;
}

/* Gradient Card Style */
.gradient-card {
    background: linear-gradient(135deg, #f5f0ff, #e0d4ff); /* Soft purple gradient */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow */
    margin-bottom: 20px;
}

.gradient-card p {
    margin-bottom: 0.4em; /* Increase spacing between paragraphs */
}

/* Coming Soon Style */
.coming-soon {
    font-size: 3.5em; /* Large font for emphasis */
    font-weight: bold; /* Bolder font for visibility */
    color: rgba(75, 28, 109, 0.6); /* Medium-opacity purple color for balance */
    text-align: center;
    margin-top: 150px;
    font-style: italic; /* Italic style for anticipation */
    letter-spacing: 2px; /* Increase spacing for an airy feel */
    animation: slowFade 5s ease-in-out infinite; /* Slow continuous fade animation */
}

/* Slow fade-in/out animation with extended clarity */
@keyframes slowFade {
    0%, 100% { opacity: 0.3; } /* Minimum opacity */
    40%, 60% { opacity: 0.8; } /* Maximum opacity, extended time at max clarity */
}

/* Footer */
footer {
    background-color: #e0d4ff;
    color: #555;
    text-align: center;
    padding: 15px 0;
}