body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
    text-align: center;
}
.container {
    max-width: 600px;
    margin: 20px auto 0;
    padding: 20px;
    text-align: center;
}
h1 {
    font-size: 4em;
    font-weight: 600;
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
p {
    font-size: 1.5em;
    font-weight: 300;
    margin-bottom: 2em;
    opacity: 0.9;
}
.subscribe {
    margin-bottom: 2em;
}
input[type="email"] {
    padding: 12px;
    font-size: 1em;
    border: none;
    border-radius: 25px 0 0 25px;
    width: 250px;
    outline: none;
}
button {
    padding: 12px 20px;
    font-size: 1em;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: background 0.3s;
}
button:hover {
    background: #ff5252;
}
.social {
    margin-top: 2em;
}
.social a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.2em;
}
.social a:hover {
    opacity: 0.7;
}
nav {
    background-color: #333;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}
nav a {
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: color 0.3s;
}
nav a:hover {
    color: #ff6b35;
}
/* Slideshow Styles */
.slideshow {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-top: 60px; /* Account for fixed nav height */
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active {
    opacity: 1;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
        /* Minimal inline styles for calendar (add to your style.css for persistence) */
        .calendar-container {
            max-width: 900px;
            margin: 40px auto;
            padding: 0 20px;
            font-family: 'Poppins', sans-serif;
        }
        .calendar-container h1 {
            text-align: center;
            color: #333;
            margin-bottom: 20px;
        }
        #calendar {
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .fc-event {
            background-color: #4ecdc4; /* Teal theme to match your slides */
            color: white;
            border: none;
            border-radius: 4px;
            margin-bottom: 5px;
        }
        .loading {
            text-align: center;
            padding: 20px;
            color: #666;
        }
        .error {
            text-align: center;
            padding: 20px;
            color: #d00;
            background: #fee;
            border-radius: 4px;
            margin: 10px;
        }
        @media (max-width: 600px) {
            #calendar {
                font-size: 0.9em;
            }
        }