* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
        
:root {
    --tilia-green: #184C34;
    --earth-beige: #E3D7C3;
    --leaf-vein-brown: #7A5E48;
    --soft-lime: #C6DCAB;
    --cloud-white: #FFFFFF;
    --deep-forest: #0F2A1E;
    --accent-gold: #D4AF37;
}
        
body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--tilia-green);
    background-color: var(--cloud-white);
    overflow-x: hidden;
}
        
html {
    scroll-behavior: smooth;
}
        
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(24, 76, 52, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
        
header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(24, 76, 52, 0.12);
}
        
nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}
        
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-family: 'Georgia', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--tilia-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-text:hover {
    color: var(--accent-gold);
}
        
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}
        
.nav-links a {
    text-decoration: none;
    color: var(--tilia-green);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}
        
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}
        
.nav-links a:hover::after, 
.nav-links a.active::after {
    width: 100%;
}
        
.nav-links a:hover, 
.nav-links a.active {
    color: var(--leaf-vein-brown);
}

.floating-language-selector {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Lato', sans-serif;
}

.language-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--tilia-green), var(--deep-forest));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(24, 76, 52, 0.3);
    transition: all 0.3s ease;
    color: var(--cloud-white);
    position: relative;
    overflow: hidden;
}

.language-toggle:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(24, 76, 52, 0.4);
}

.language-toggle i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.language-text {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: var(--accent-gold);
    color: var(--deep-forest);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 8px;
    min-width: 20px;
    text-align: center;
}

.language-dropdown {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: var(--cloud-white);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(24, 76, 52, 0.2);
    padding: 1.5rem;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--soft-lime);
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--tilia-green);
    font-weight: 600;
    font-size: 1rem;
}

.language-header i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.translate-widget-floating .goog-te-combo {
    width: 100% !important;
    background: var(--cloud-white) !important;
    border: 2px solid var(--soft-lime) !important;
    border-radius: 15px !important;
    padding: 12px 16px !important;
    font-size: 1rem !important;
    color: var(--tilia-green) !important;
    outline: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    font-family: 'Lato', sans-serif !important;
}

.translate-widget-floating .goog-te-combo:hover {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2) !important;
    transform: translateY(-1px) !important;
}

.translate-widget-floating .goog-te-combo:focus {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
}
        
.cta-button {
    background: linear-gradient(135deg, var(--tilia-green), var(--deep-forest));
    color: var(--cloud-white);
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(24, 76, 52, 0.2);
}
        
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(24, 76, 52, 0.3);
    background: linear-gradient(135deg, var(--deep-forest), var(--tilia-green));
}
        
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--tilia-green);
    margin:3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(24, 76, 52, 0.12);
    padding: 2rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 1rem 0;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--tilia-green);
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.mobile-nav-links a:hover {
    color: var(--accent-gold);
    background-color: rgba(198, 220, 171, 0.2);
    transform: translateX(5px);
}

.mobile-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-nav-links a:hover::after {
    width: 80%;
}

.mobile-nav-links a.active {
    color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.15);
    font-weight: 600;
}

.mobile-nav-links a.active::after {
    width: 80%;
}

.mobile-cta .cta-button:hover {
    transform: translateY(-2px) scale(1.02);
}

.mobile-cta {
    text-align: center;
    margin-top: 2rem;
}

.page-header {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, var(--earth-beige) 0%, var(--soft-lime) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaf" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M15,3 Q22,15 15,27 Q8,15 15,3" fill="%23184C34" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23leaf)"/></svg>') repeat;
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 120px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.header-content h1 {
    font-family: 'Georgia', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--tilia-green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.header-content .highlight {
    color: var(--accent-gold);
    position: relative;
}

.header-content p {
    font-size: 1.3rem;
    color: var(--leaf-vein-brown);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.featured-section {
    padding: 120px 0;
    background: var(--cloud-white);
}
        
.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
        
.featured-text .section-label {
    display: inline-block;
    background: var(--soft-lime);
    color: var(--tilia-green);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}
        
.featured-text h2 {
    font-family: 'Georgia', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--tilia-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
        
.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}
        
.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--leaf-vein-brown);
    font-weight: 500;
}
        
.meta-icon {
    font-size: 1.2rem;
    color: var(--accent-gold);
}
        
.featured-text p {
    font-size: 1.1rem;
    color: var(--leaf-vein-brown);
    margin-bottom: 2rem;
    line-height: 1.7;
}
        
.event-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
        
.btn-primary {
    background: linear-gradient(135deg, var(--tilia-green), var(--deep-forest));
    color: var(--cloud-white);
    padding: 16px 32px;
    border: none;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(24, 76, 52, 0.2);
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary {
    background: transparent;
    color: var(--tilia-green);
    padding: 16px 32px;
    border: 2px solid var(--tilia-green);
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}
        
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(24, 76, 52, 0.3);
}
        
.btn-secondary:hover {
    background: var(--tilia-green);
    color: var(--cloud-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(24, 76, 52, 0.2);
}
        
.featured-image {
    position: relative;
    height: 400px;
    background: var(--soft-lime);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(24, 76, 52, 0.15);
}
        
.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.categories-section {
    padding: 80px 0;
    background: var(--earth-beige);
}
        
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
        
.section-header h2 {
    font-family: 'Georgia', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--tilia-green);
    margin-bottom: 1.5rem;
}
        
.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
        
.filter-btn {
    padding: 12px 24px;
    background: var(--cloud-white);
    color: var(--tilia-green);
    border: 2px solid var(--tilia-green);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}
        
.filter-btn:hover, .filter-btn.active {
    background: var(--tilia-green);
    color: var(--cloud-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 76, 52, 0.2);
}

.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: var(--leaf-vein-brown);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--light-gray);
    border-top: 3px solid var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.attendee-count {
    font-size: 0.9rem;
    color: var(--leaf-vein-brown);
    margin: 0.5rem 0;
    font-weight: 500;
}

.attendee-count i {
    margin-right: 0.5rem;
    color: var(--accent-gold);
}

.upcoming-section {
    padding: 120px 0;
    background: var(--cloud-white);
}
        
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}
        
.event-card {
    background: var(--cloud-white);
    border: 1px solid rgba(24, 76, 52, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 40px rgba(24, 76, 52, 0.08);
}
        
.event-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--soft-lime));
}
        
.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(24, 76, 52, 0.15);
}
        
.event-image {
    background: var(--soft-lime);
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
}
        
.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
        
.event-date-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--tilia-green);
    color: var(--cloud-white);
    padding: 8px 12px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 6px 20px rgba(24, 76, 52, 0.3);
}
        
.event-content {
    padding: 2rem;
}
        
.event-category {
    background: var(--earth-beige);
    color: var(--tilia-green);
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}
        
.event-title {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    color: var(--tilia-green);
    margin-bottom: 1rem;
    line-height: 1.4;
}
        
.event-description {
    color: var(--leaf-vein-brown);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 4.5rem;
}
        
.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--leaf-vein-brown);
}
        
.event-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
        
.event-detail i {
    color: var(--accent-gold);
    width: 16px;
}
        
.event-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}
        
.register-btn {
    background: linear-gradient(135deg, var(--tilia-green), var(--deep-forest));
    color: var(--cloud-white);
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(24, 76, 52, 0.25);
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 76, 52, 0.4);
    background: linear-gradient(135deg, var(--deep-forest), var(--tilia-green));
}

.learn-more {
    background: transparent;
    color: var(--accent-gold);
    padding: 14px 28px;
    border: 2px solid var(--accent-gold);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.learn-more:hover {
    background: var(--accent-gold);
    color: var(--cloud-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(4px);
}

.past-events {
    padding: 120px 0;
    background: var(--earth-beige);
}
        
.past-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
        
.past-event-card {
    background: var(--cloud-white);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(24, 76, 52, 0.1);
}
        
.past-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(24, 76, 52, 0.12);
}
        
.past-event-card h4 {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    color: var(--tilia-green);
    margin-bottom: 0.8rem;
}
        
.past-event-card .date {
    color: var(--accent-gold);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
        
.past-event-card p {
    color: var(--leaf-vein-brown);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
        
.past-event-card a {
    color: var(--tilia-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}
        
.past-event-card a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--cloud-white);
    border-radius: 20px;
    padding: 0;
    max-width: 600px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 60px rgba(24, 76, 52, 0.2);
    border: 1px solid var(--earth-beige);
}

.modal-large {
    max-width: 900px;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, var(--earth-beige), var(--soft-lime));
    padding: 2rem;
    margin: 0;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-family: 'Georgia', serif;
    color: var(--tilia-green);
    margin: 0;
    font-size: 1.6rem;
}

.modal-close {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 1.5rem;
    color: var(--leaf-vein-brown);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: var(--cloud-white);
    color: var(--accent-gold);
    transform: rotate(90deg) scale(1.1);
}

.modal-content form,
.event-details-content {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--tilia-green);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--earth-beige);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--cloud-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

.form-actions,
.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--earth-beige);
}

.btn {
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--tilia-green), var(--deep-forest));
    color: var(--cloud-white);
    box-shadow: 0 6px 20px rgba(24, 76, 52, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(24, 76, 52, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--leaf-vein-brown);
    border: 2px solid var(--leaf-vein-brown);
}

.btn-outline:hover {
    background: var(--leaf-vein-brown);
    color: var(--cloud-white);
    transform: translateY(-2px);
}

.delete-modal-body {
    text-align: center;
    padding: 1rem 0;
}

.warning-icon {
    font-size: 4rem;
    color: #dc3545;
    margin-bottom: 1.5rem;
}

.delete-warning {
    font-size: 1.1rem;
    color: var(--leaf-vein-brown);
    margin-bottom: 1.5rem;
}

.delete-item-info {
    background: rgba(220, 53, 69, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.delete-item {
    font-size: 1.2rem;
    color: var(--tilia-green);
}

.item-type {
    font-size: 0.9rem;
    color: var(--leaf-vein-brown);
    font-weight: normal;
}

.delete-confirmation-text {
    margin: 1.5rem 0 1rem;
    font-weight: 500;
    color: var(--tilia-green);
}

#deleteConfirmationInput {
    width: 100%;
    max-width: 200px;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#deleteConfirmationInput:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.delete-error {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
}

.btn-danger:hover:not(:disabled) {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.btn-danger:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.event-summary-card {
    background: var(--earth-beige);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.event-summary-card h4 {
    color: var(--tilia-green);
    margin-bottom: 1rem;
}

.event-summary-card p {
    margin: 0.5rem 0;
    color: var(--leaf-vein-brown);
}

.event-summary-card i {
    color: var(--accent-gold);
    width: 20px;
    margin-right: 8px;
}

.form-help {
    font-size: 0.8rem;
    color: var(--leaf-vein-brown);
    margin-top: 0.5rem;
    display: block;
}

.event-image-large {
    margin-bottom: 2rem;
}

.event-image-large img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.event-meta-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--earth-beige);
    border-radius: 12px;
}

.event-meta-full .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--leaf-vein-brown);
}

.event-meta-full .meta-item i {
    color: var(--accent-gold);
    width: 20px;
}

.event-description-full h4 {
    color: var(--tilia-green);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--earth-beige);
}

footer {
    background: var(--deep-forest);
    color: var(--cloud-white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.staff-login {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}

.staff-login h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.staff-login .login-btn {
    background: linear-gradient(135deg, var(--accent-gold), #B8941F);
    color: var(--deep-forest);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.staff-login .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.description-content p,
.highlights-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.participant-info {
    background: var(--soft-lime);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.participant-info h4 {
    margin-bottom: 1rem;
}

.participant-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.additional-resources {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--earth-beige);
}

.resource-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 12px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.resource-link:hover {
    color: var(--tilia-green);
    background: var(--accent-gold);
    color: var(--cloud-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .nav {
        padding: 0 1rem;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        display: none;
    }

    .floating-language-selector {
        bottom: 20px;
        right: 20px;
    }

    .language-toggle {
        width: 55px;
        height: 55px;
    }

    .language-toggle i {
        font-size: 1.3rem;
    }

    .language-dropdown {
        min-width: 220px;
        padding: 1.2rem;
        bottom: 70px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: 0;
    }

    .page-header {
        height: 80vh;
    }
            
    .featured-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
            
    .event-meta {
        flex-direction: column;
        gap: 1rem;
    }
            
    .event-buttons {
        flex-direction: column;
    }
            
    .newsletter-form {
        flex-direction: column;
        padding: 1rem;
    }
            
    .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
            
    .filter-btn {
        white-space: nowrap;
    }

    .newsletter-form {
        flex-direction: column;
        padding: 1rem;
        max-width: 350px;
    }

    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .event-meta-full {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .language-dropdown {
        right: -50px;
        min-width: 200px;
    }
    
    .newsletter {
        padding: 60px 0;
    }
}