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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    overflow-x: hidden;
}

/* Navigation */
nav {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 107, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #ff6b00;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-links a:hover {
    background: rgba(255, 107, 0, 0.2);
    color: #ff6b00;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '⛰️';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero h1 {
    font-size: 4em;
    margin-bottom: 20px;
    color: #ff6b00;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
    position: relative;
}

.hero p {
    font-size: 1.5em;
    color: #9d4edd;
    margin-bottom: 10px;
}

.hero .tagline {
    font-size: 1.2em;
    color: #ccc;
    font-style: italic;
}

/* About Section */
.about {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.about h2 {
    font-size: 3em;
    color: #ff6b00;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.about-card {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.3);
    border-color: #ff6b00;
}

.about-card .icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.8em;
    color: #ff6b00;
    margin-bottom: 15px;
}

.about-card p {
    font-size: 1.1em;
    color: #ccc;
    line-height: 1.6;
}

/* Mission Statement */
.mission {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2) 0%, rgba(255, 107, 0, 0.2) 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(157, 78, 221, 0.3);
    margin-bottom: 80px;
}

.mission h3 {
    font-size: 2em;
    color: #9d4edd;
    margin-bottom: 20px;
}

.mission p {
    font-size: 1.3em;
    color: #fff;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Calendar Section */
.calendar-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.calendar-section h2 {
    font-size: 3em;
    color: #ff6b00;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
}

.calendar-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 0, 0.3);
}

.calendar-cta p {
    font-size: 1.5em;
    color: #ccc;
    margin-bottom: 30px;
}

.calendar-btn {
    background: linear-gradient(135deg, #ff6b00, #ff8500);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.3em;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.calendar-btn:hover {
    background: linear-gradient(135deg, #ff8500, #ffaa00);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
}

/* Calendar Modal */
.calendar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.calendar-modal-content {
    background: #1a1a2e;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
    position: relative;
    border: 3px solid #ff6b00;
    box-shadow: 0 0 50px rgba(255, 107, 0, 0.5);
}

.calendar-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b00;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.calendar-modal-close:hover {
    background: #ff8500;
    transform: rotate(90deg);
}

.calendar-modal iframe {
    width: 100%;
    height: 80vh;
    border: none;
    border-radius: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-links a {
    color: #ff6b00;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover:not(.disabled) {
    color: #ff8500;
    transform: translateY(-5px) scale(1.1);
}

.social-links a.disabled {
    color: #666;
    cursor: not-allowed;
    opacity: 0.5;
}

.social-links a.disabled:hover {
    transform: none;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 40px 20px;
    margin-top: 100px;
    border-top: 2px solid rgba(255, 107, 0, 0.3);
}

footer p {
    color: #ccc;
    font-size: 1em;
}

footer .heart {
    color: #ff6b00;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .nav-links {
        gap: 15px;
    }

    .about h2, .calendar-section h2 {
        font-size: 2em;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}