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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #87CEEB 0%, #1E90FF 100%);
    min-height: 100vh;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(45deg, #00BFFF, #1E90FF);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    color: white;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    color: white;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Sections */
section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.upcoming, .contact {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.upcoming:hover, .contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin: 20px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.card h4 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.card p {
    color: #666;
    line-height: 1.6;
}

.contact {
    text-align: center;
}

.contact h3 {
    color: white;
    margin-bottom: 30px;
    font-size: 2em;
    font-weight: 600;
}

.contact .btn {
    margin: 15px;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.contact .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.2);
    color: white;
}

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

    nav {
        flex-direction: column;
    }

    .btn {
        margin: 10px 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

section {
    animation: fadeIn 1s ease-in-out;
}

/* Admin Dashboard Styles */
.admin-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.admin-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-section h2, .admin-section h3 {
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.user-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.user-card:hover {
    transform: translateY(-5px);
}

.user-card h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.user-card p {
    margin: 5px 0;
    color: #666;
}

.user-card .btn {
    margin-top: 10px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
}

.user-card .btn:hover {
    background: linear-gradient(45deg, #ee5a52, #dc4545);
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form input, form textarea, form select {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

form textarea {
    resize: vertical;
    min-height: 80px;
}

form .btn {
    align-self: flex-start;
    margin-top: 10px;
}

/* Login Form Styles */
.login-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    max-width: 400px;
    margin: 50px auto;
    animation: fadeIn 1s ease-in-out;
}

.login-form h2 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    font-weight: 600;
}

.login-form label {
    display: block;
    color: white;
    margin-bottom: 5px;
    font-weight: 500;
}

.login-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1em;
    transition: all 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: #00BFFF;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
    transform: translateY(-2px);
}

.login-form button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #00BFFF, #1E90FF);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.login-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.login-form p {
    text-align: center;
    margin-top: 20px;
    color: white;
}
