/**
 * Simple Enhanced Hero Section
 * Clean, modern hero without animations
 */

/* ================================
   Hero Container
   ================================ */
.hero-simple {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 3rem 0;
    overflow: hidden;
}

/* Subtle pattern overlay */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Ccircle cx='50' cy='50' r='2'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
}

/* Hero background image */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

/* Gradient overlay */
.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.95) 0%,
        rgba(118, 75, 162, 0.95) 100%
    );
    z-index: 2;
}

/* ================================
   Hero Content
   ================================ */
.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-main-content {
    flex: 1;
    color: white;
}

/* Badges */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-tag.highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    border: none;
    font-weight: 600;
}

.hero-tag i {
    font-size: 0.875rem;
}

/* Title */
.hero-headline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Organizer Section with Logo */
.hero-organizer-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-ngo-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: white;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-ngo-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-ngo-logo.hero-ngo-placeholder {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.5rem;
}

.hero-ngo-info {
    flex: 1;
}

.hero-ngo-label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.85;
    margin-bottom: 0.25rem;
}

.hero-ngo-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.hero-ngo-name a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.hero-ngo-name a:hover {
    opacity: 0.85;
}

/* Event Details Grid */
.hero-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.hero-detail-item i {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-top: 0.125rem;
}

.hero-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.hero-detail-value {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.hero-cta-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35);
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* ================================
   Hero Sidebar Info
   ================================ */
.hero-info-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Event timing card */
.hero-timing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-align: center;
    min-width: 200px;
}

.hero-timing-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-timing-month {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.hero-timing-day {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-timing-weekday {
    font-size: 0.9375rem;
    opacity: 0.85;
}

.hero-timing-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* Quick stats */
.hero-quick-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.hero-stat-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

/* Event type indicator */
.hero-event-type {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Contact Info */
.hero-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: opacity 0.3s ease;
}

.hero-contact-link:hover {
    opacity: 0.8;
}

.hero-contact-link i {
    font-size: 1rem;
    opacity: 0.9;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 992px) {
    .hero-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-info-panel {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-timing-card,
    .hero-quick-stats {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .hero-simple {
        padding: 2rem 0;
        min-height: auto;
    }

    .hero-container {
        padding: 0 0.75rem;
    }

    .hero-headline {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-info-panel {
        flex-direction: column;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
    }

    .hero-timing-card,
    .hero-quick-stats {
        width: 100%;
    }
}