/* Event Details Page Styles - Light Theme Base */

/* Event Hero Section */
.event-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.event-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.event-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.event-date {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.event-date i {
    margin-right: 0.5rem;
}

.event-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.hero-buttons .cta-button.secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Quick Info Section */
.quick-info {
    padding: 3rem 0;
    background-color: var(--light-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.info-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-card p {
    margin-bottom: 0.3rem;
}

.info-card .small {
    font-size: 0.9rem;
    color: #666;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section.alt-bg {
    background-color: var(--light-color);
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.content-section h2 i {
    margin-right: 0.5rem;
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Check List */
.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.check-list li:before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

/* Highlight Box */
.highlight-box {
    background-color: white;
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.highlight-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-box ul {
    padding-left: 1.5rem;
}

/* Feature Grid Detailed */
.feature-grid-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-detailed {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.feature-icon-large {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-detailed h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-detailed ul {
    padding-left: 1.5rem;
}

.feature-detailed li {
    margin-bottom: 0.5rem;
}

/* Requirements Section */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.requirement-block {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.requirement-block h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.requirement-block ol,
.requirement-block ul {
    padding-left: 1.5rem;
}

.requirement-block li {
    margin-bottom: 0.5rem;
}

/* What to Bring */
.what-to-bring {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.what-to-bring h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.bring-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.bring-column h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.required {
    background-color: #e74c3c;
    color: white;
}

.badge.recommended {
    background-color: var(--secondary-color);
    color: white;
}

/* Schedule Table */
.schedule-note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
}

.schedule-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.schedule-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.schedule-table thead {
    background-color: var(--primary-color);
    color: white;
}

.schedule-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.schedule-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-color);
}

.schedule-table tbody tr:nth-child(even) {
    background-color: var(--light-color);
}

.schedule-table tbody tr:hover {
    background-color: rgba(20, 160, 231, 0.1);
}

.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

/* Travel Grid */
.travel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.travel-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.travel-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.travel-card ul {
    padding-left: 1.5rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.contact-card.highlight {
    background-color: var(--light-color);
    border: 2px solid var(--secondary-color);
}

.contact-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-title {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.contact-details {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.contact-details li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-details li:before {
    display: none;
}

.contact-details i {
    color: var(--secondary-color);
}

.contact-details a {
    color: var(--primary-color);
    word-break: break-all;
}

.contact-card ul {
    padding-left: 0;
    list-style: none;
}

.contact-card li {
    margin-bottom: 0.5rem;
}

.contact-card li:before {
    display: none;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 3rem;
}

.faq-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--light-color);
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.value-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.95rem;
    color: #666;
}

/* Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.resource-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resource-links,
.social-links {
    list-style: none;
    padding-left: 0;
}

.resource-links li,
.social-links li {
    margin-bottom: 0.8rem;
}

.resource-links li:before,
.social-links li:before {
    display: none;
}

.resource-links a,
.social-links a {
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
}

.resource-links a:hover,
.social-links a:hover {
    color: var(--primary-color);
}

.resource-links i,
.social-links i {
    margin-right: 0.5rem;
    width: 20px;
}

.hashtag {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-color);
    font-size: 0.95rem;
}

/* Partners Section */
.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.partner-item {
    text-align: center;
}

.partner-item img {
    height: 80px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.partner-item:hover img {
    transform: scale(1.05);
}

.partner-item p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.sponsor-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-grid-detailed {
        grid-template-columns: 1fr;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .event-hero h1 {
        font-size: 2rem;
    }

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

    .bring-grid {
        grid-template-columns: 1fr;
    }

    .travel-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Make schedule table responsive */
    .schedule-table {
        font-size: 0.9rem;
    }

    .schedule-table thead {
        display: none;
    }

    .schedule-table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--gray-color);
        border-radius: var(--border-radius);
    }

    .schedule-table td {
        display: block;
        text-align: right;
        padding: 0.75rem;
        border-bottom: 1px solid var(--gray-color);
    }

    .schedule-table td:last-child {
        border-bottom: none;
    }

    .schedule-table td:before {
        content: attr(data-label);
        float: left;
        font-weight: 600;
        color: var(--primary-color);
    }

    .partner-logos {
        gap: 2rem;
    }

    .partner-item img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .event-hero {
        padding: 2rem 0;
    }

    .event-hero h1 {
        font-size: 1.75rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .cta-button {
        width: 100%;
    }
}
