/* ============================================ */
/*              EVENTS PAGE STYLES              */
/* ============================================ */

/* Use existing CSS variables from styles.css */
.events-page {
    background-color: var(--light-grey, #f4f4f4);
    min-height: 100vh;
}

/* ============================================ */
/*              Page Header                     */
/* ============================================ */
.events-header {
    background: linear-gradient(135deg, var(--primary-green, #006400) 0%, var(--dark-grey, #2c3e50) 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.events-header-content h1 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.events-header-content p {
    font-family: var(--font-body, 'Roboto', sans-serif);
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ============================================ */
/*           Filter Section                     */
/* ============================================ */
.events-filter-section {
    background: white;
    border-bottom: 2px solid #e0e0e0;
    position: relative;
    /* top: 80px; */
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.events-filter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Status Tabs (Desktop) */
.status-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.status-tab {
    flex: 1;
    max-width: 250px;
    background: white;
    border: 2px solid #e0e0e0;
    color: var(--dark-grey, #2c3e50);
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.status-tab:hover {
    background: var(--light-grey, #f4f4f4);
    border-color: var(--primary-green, #006400);
}

.status-tab.active {
    background: var(--primary-green, #006400);
    color: white;
    border-color: var(--primary-green, #006400);
}

/* Filter Controls */
.filter-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-weight: 600;
    color: var(--dark-grey, #2c3e50);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.filter-select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: var(--font-body, 'Roboto', sans-serif);
    font-size: 0.95rem;
    color: var(--dark-grey, #2c3e50);
    background: white;
    cursor: pointer;
    min-width: 150px;
    transition: border-color 0.3s ease;
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--primary-green, #006400);
    outline: none;
}

.clear-filters-btn {
    padding: 10px 20px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 6px;
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.clear-filters-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Mobile Filters */
.mobile-filters {
    display: none;
    flex-direction: column;
    gap: 15px;
}

.filter-select-mobile {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: var(--font-body, 'Roboto', sans-serif);
    font-size: 1rem;
    color: var(--dark-grey, #2c3e50);
    background: white;
    cursor: pointer;
}

.clear-filters-btn-mobile {
    width: 100%;
    padding: 12px 20px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 6px;
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.clear-filters-btn-mobile:hover {
    background: #c0392b;
}

/* ============================================ */
/*           Events List Section                */
/* ============================================ */
.events-list-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.events-container {
    position: relative;
    min-height: 400px;
}

.events-results-info {
    margin-bottom: 30px;
    color: #666;
    font-size: 0.95rem;
    font-family: var(--font-body, 'Roboto', sans-serif);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ============================================ */
/*           Event Card (List Style)            */
/* ============================================ */
.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    text-decoration: none;
    color: inherit;
    height: 220px;
}

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

.event-card-image {
    width: 300px;
    min-width: 300px;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.1);
}

.event-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.event-card:hover .event-card-overlay {
    opacity: 1;
}

.event-card-overlay-text {
    color: white;
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

/* Event Status Badge */
.event-status-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-family: var(--font-header, 'Oswald', sans-serif);
}

.status-upcoming {
    background: #27ae60;
    color: white;
}

.status-past {
    background: #95a5a6;
    color: white;
}

.status-registration-closed {
    background: #e74c3c;
    color: white;
}

.status-registration-open {
    background: var(--primary-gold, #D4AF37);
    color: var(--dark-grey, #2c3e50);
}

/* Event Card Title */
.event-card-content h3 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-grey, #2c3e50);
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.event-card:hover h3 {
    color: var(--primary-green, #006400);
}

/* Event Info Row */
.event-info-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.event-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.event-info-item i {
    color: var(--primary-green, #006400);
    width: 16px;
    text-align: center;
}

/* Event Excerpt */
.event-card-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

/* Registration Deadline Warning */
.registration-deadline {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    margin-top: auto;
}

.deadline-warning {
    background: #fff3cd;
    color: #856404;
}

.deadline-urgent {
    background: #f8d7da;
    color: #721c24;
}

.deadline-info {
    background: #d1ecf1;
    color: #0c5460;
}

/* ============================================ */
/*           Empty & Loading States             */
/* ============================================ */
.events-empty-state {
    text-align: center;
    padding: 80px 20px;
}

.events-empty-state i {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
}

.events-empty-state h3 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1.8rem;
    color: var(--dark-grey, #2c3e50);
    margin-bottom: 10px;
}

.events-empty-state p {
    color: #777;
    font-size: 1rem;
    margin-bottom: 30px;
}

.events-loading-state {
    text-align: center;
    padding: 80px 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-green, #006400);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.events-loading-state p {
    color: #777;
    font-size: 1rem;
}

/* ============================================ */
/*              Pagination                      */
/* ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.pagination-btn,
.pagination-number {
    padding: 10px 16px;
    border: 2px solid #e0e0e0;
    background: white;
    color: var(--dark-grey, #2c3e50);
    border-radius: 8px;
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 45px;
    text-align: center;
}

.pagination-btn:hover:not(:disabled),
.pagination-number:hover:not(.active) {
    background: var(--light-grey, #f4f4f4);
    border-color: var(--primary-green, #006400);
}

.pagination-number.active {
    background: var(--primary-green, #006400);
    color: white;
    border-color: var(--primary-green, #006400);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-ellipsis {
    color: #999;
    padding: 10px 5px;
}

/* ============================================ */
/*         Responsive Design - Tablet           */
/* ============================================ */
@media (max-width: 992px) {
    .events-header-content h1 {
        font-size: 2.5rem;
    }

    .event-card {
        height: 200px;
    }

    .event-card-image {
        width: 250px;
        min-width: 250px;
        height: 200px;
    }

    .event-card-content {
        padding: 20px;
    }

    .event-card-content h3 {
        font-size: 1.3rem;
    }

    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        width: 100%;
    }

    .filter-select {
        flex: 1;
        min-width: auto;
    }

    .clear-filters-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

/* ============================================ */
/*         Responsive Design - Mobile           */
/* ============================================ */
@media (max-width: 768px) {
    .events-header {
        padding: 40px 20px;
    }

    .events-header-content h1 {
        font-size: 2rem;
    }

    .events-header-content p {
        font-size: 1rem;
    }

    .events-filter-section {
        top: 70px;
    }

    /* Hide desktop filters */
    .status-tabs,
    .filter-controls {
        display: none;
    }

    /* Show mobile filters */
    .mobile-filters {
        display: flex;
    }

    .events-list-section {
        padding: 40px 15px;
    }

    /* Stack event cards vertically */
    .event-card {
        flex-direction: column;
        height: auto;
    }

    .event-card-image {
        width: 100%;
        height: 220px;
    }

    .event-card-content {
        padding: 20px;
    }

    .event-card-content h3 {
        font-size: 1.4rem;
    }

    .pagination {
        gap: 5px;
    }

    .pagination-btn,
    .pagination-number {
        padding: 8px 12px;
        font-size: 0.9rem;
        min-width: 40px;
    }
}

@media (max-width: 480px) {
    .event-card-content h3 {
        font-size: 1.2rem;
    }

    .event-card-excerpt {
        font-size: 0.9rem;
    }
}

/* ============================================ */
/*          EVENT DETAIL PAGE STYLES            */
/* ============================================ */

.event-detail-page {
    background-color: var(--light-grey, #f4f4f4);
    min-height: 100vh;
}

/* ============================================ */
/*           Breadcrumb Navigation              */
/* ============================================ */
.breadcrumb-section {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-green, #006400);
}

.breadcrumb i {
    color: #999;
    font-size: 0.7rem;
}

.breadcrumb span {
    color: var(--dark-grey, #2c3e50);
    font-weight: 600;
}

/* ============================================ */
/*          Event Detail Content                */
/* ============================================ */
.event-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.event-loading {
    text-align: center;
    padding: 100px 20px;
}

.event-loading p {
    color: #777;
    font-size: 1rem;
    margin-top: 20px;
}

/* ============================================ */
/*           Event Not Found                    */
/* ============================================ */
.event-not-found {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.event-not-found i {
    font-size: 80px;
    color: #f39c12;
    margin-bottom: 20px;
}

.event-not-found h2 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 2rem;
    color: var(--dark-grey, #2c3e50);
    margin-bottom: 15px;
}

.event-not-found p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.not-found-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

/* ============================================ */
/*          Event Container                     */
/* ============================================ */
.event-detail-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* ============================================ */
/*          Hero Image                          */
/* ============================================ */
.event-hero-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f0f0f0;
}

.event-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================ */
/*          Event Body                          */
/* ============================================ */
.event-body {
    max-width: 680px;
    margin: 0 auto;
    padding: 50px 40px;
}

/* ============================================ */
/*          Event Header                        */
/* ============================================ */
.event-header {
    margin-bottom: 40px;
}

.event-title {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-grey, #2c3e50);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.event-subtitle {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--dark-grey, #2c3e50);
    line-height: 1.5;
    font-weight: 400;
}

/* ============================================ */
/*          Event Info Cards                    */
/* ============================================ */
.event-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: var(--light-grey, #f4f4f4);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green, #006400);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.info-card-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-green, #006400);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.info-card-title {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #777;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.info-card-content {
    font-family: var(--font-body, 'Roboto', sans-serif);
    font-size: 1rem;
    color: var(--dark-grey, #2c3e50);
    line-height: 1.6;
}

.info-card-content a {
    color: var(--primary-green, #006400);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-card-content a:hover {
    color: var(--primary-gold, #D4AF37);
}

/* ============================================ */
/*          Registration Section                */
/* ============================================ */
.event-registration-section {
    background: linear-gradient(135deg, var(--primary-green, #006400) 0%, #27ae60 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    color: white;
}

.registration-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.registration-fee {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1.5rem;
    font-weight: 700;
}

.registration-deadline {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.registration-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: white;
    color: var(--primary-green, #006400);
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.registration-cta:hover {
    background: var(--primary-gold, #D4AF37);
    color: var(--dark-grey, #2c3e50);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.registration-cta:disabled {
    background: #95a5a6;
    color: white;
    cursor: not-allowed;
    transform: none;
}

.registration-closed-message,
.event-ended-message {
    background: rgba(255,255,255,0.2);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* ============================================ */
/*          Event Description                   */
/* ============================================ */
.event-description {
    font-family: var(--font-body, 'Roboto', sans-serif);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.event-description p {
    margin-bottom: 1.5em;
}

.event-description h2 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green, #006400);
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3;
}

.event-description h3 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-grey, #2c3e50);
    margin-top: 1.8em;
    margin-bottom: 0.8em;
    line-height: 1.3;
}

.event-description ul,
.event-description ol {
    margin-left: 30px;
    margin-bottom: 1.5em;
}

.event-description li {
    margin-bottom: 0.5em;
}

/* ============================================ */
/*          Agenda Section                      */
/* ============================================ */
.event-agenda-section {
    margin-bottom: 40px;
}

.event-agenda-section h2 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1.8rem;
    color: var(--dark-grey, #2c3e50);
    margin-bottom: 25px;
}

.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.agenda-item {
    background: var(--light-grey, #f4f4f4);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold, #D4AF37);
    display: flex;
    gap: 20px;
}

.agenda-time {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-weight: 700;
    color: var(--primary-green, #006400);
    font-size: 1rem;
    min-width: 150px;
}

.agenda-activity {
    font-family: var(--font-body, 'Roboto', sans-serif);
    color: var(--dark-grey, #2c3e50);
    line-height: 1.6;
    flex: 1;
}

/* ============================================ */
/*          What to Bring & Who Should Attend   */
/* ============================================ */
.event-what-to-bring,
.event-who-should-attend {
    margin-bottom: 40px;
}

.event-what-to-bring h2,
.event-who-should-attend h2 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1.8rem;
    color: var(--dark-grey, #2c3e50);
    margin-bottom: 20px;
}

.event-what-to-bring ul {
    list-style: none;
    padding: 0;
}

.event-what-to-bring li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.event-what-to-bring li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-green, #006400);
    font-size: 1.1rem;
}

.event-who-should-attend p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* ============================================ */
/*          Video Section                       */
/* ============================================ */
.event-video-section {
    margin-bottom: 40px;
}

.event-video-section h2 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1.8rem;
    color: var(--dark-grey, #2c3e50);
    margin-bottom: 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================ */
/*          Photo Gallery Section               */
/* ============================================ */
.event-photo-gallery {
    margin-bottom: 40px;
}

.event-photo-gallery h2 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1.8rem;
    color: var(--dark-grey, #2c3e50);
    margin-bottom: 15px;
}

.event-photo-gallery p {
    color: #666;
    margin-bottom: 20px;
}

/* ============================================ */
/*          Add to Calendar Section             */
/* ============================================ */
.event-calendar-section {
    margin-bottom: 40px;
}

.event-calendar-section h2 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1.8rem;
    color: var(--dark-grey, #2c3e50);
    margin-bottom: 20px;
}

.calendar-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.calendar-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--primary-green, #006400);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.calendar-btn:hover {
    background: var(--primary-gold, #D4AF37);
    color: var(--dark-grey, #2c3e50);
    transform: translateY(-3px);
}

/* ============================================ */
/*          Share Section                       */
/* ============================================ */
.event-share-section {
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.event-share-section h2 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1.8rem;
    color: var(--dark-grey, #2c3e50);
    margin-bottom: 20px;
}

.event-share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Share buttons (same styles as news) */
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body, 'Roboto', sans-serif);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.share-btn i {
    font-size: 1.1rem;
}

.share-twitter { background: #1DA1F2; }
.share-facebook { background: #1877F2; }
.share-linkedin { background: #0A66C2; }
.share-whatsapp { background: #25D366; }
.share-copy { background: #6c757d; }

.copy-success-message {
    margin-top: 15px;
    padding: 12px 20px;
    background: #27ae60;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-10px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

/* ============================================ */
/*          Event Navigation                    */
/* ============================================ */
.event-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.nav-arrow {
    flex: 1;
    max-width: 48%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-grey, #f4f4f4);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: var(--primary-green, #006400);
    color: white;
    transform: translateX(-5px);
}

.nav-arrow.next:hover {
    transform: translateX(5px);
}

.nav-arrow-icon {
    font-size: 2rem;
    color: var(--primary-green, #006400);
}

.nav-arrow:hover .nav-arrow-icon {
    color: white;
}

.nav-arrow-content {
    flex: 1;
}

.nav-arrow-label {
    font-size: 0.85rem;
    color: #777;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.nav-arrow-title {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
}

.nav-arrow.next {
    justify-content: flex-end;
    text-align: right;
}

/* ============================================ */
/*          Responsive - Tablet                 */
/* ============================================ */
@media (max-width: 992px) {
    .event-body {
        padding: 40px 30px;
    }

    .event-title {
        font-size: 2.5rem;
    }

    .event-subtitle {
        font-size: 1.2rem;
    }

    .event-info-cards {
        grid-template-columns: 1fr;
    }

    .agenda-item {
        flex-direction: column;
        gap: 10px;
    }

    .agenda-time {
        min-width: auto;
    }
}

/* ============================================ */
/*          Responsive - Mobile                 */
/* ============================================ */
@media (max-width: 768px) {
    .event-detail-content {
        padding: 20px 15px 60px;
    }

    .event-body {
        padding: 30px 20px;
    }

    .event-title {
        font-size: 2rem;
    }

    .event-subtitle {
        font-size: 1.1rem;
    }

    .event-description {
        font-size: 1rem;
    }

    .registration-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-share-buttons,
    .calendar-buttons {
        flex-direction: column;
    }

    .share-btn,
    .calendar-btn {
        width: 100%;
        justify-content: center;
    }

    .event-navigation {
        flex-direction: column;
    }

    .nav-arrow {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .event-title {
        font-size: 1.7rem;
    }

    .event-subtitle {
        font-size: 1rem;
    }
}