/* Mingle Project Page Styles */

/* Hero Section */
.mingle-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-icons .icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    color: white;
}

.floating-icons .icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icons .icon:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.floating-icons .icon:nth-child(3) { top: 30%; left: 70%; animation-delay: 2s; }
.floating-icons .icon:nth-child(4) { top: 80%; left: 20%; animation-delay: 3s; }
.floating-icons .icon:nth-child(5) { top: 10%; left: 50%; animation-delay: 4s; }
.floating-icons .icon:nth-child(6) { top: 70%; left: 40%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.hero-left {
    text-align: left;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
    color: white;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    color: white;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    color: white;
}

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

.mingle-video {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.mingle-video h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.video-container {
    width: 600px;
    height: 400px;
    margin: 0 auto 15px auto;
    position: relative;
    max-width: 100%;
}

.video-container iframe {
    width: 600px;
    height: 400px;
    border-radius: 8px;
    border: none;
    max-width: 100%;
}

/* Mobile adjustments for video */
@media (max-width: 768px) {
    .video-container {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    
    .video-container iframe {
        width: 100%;
        height: 100%;
    }
}

.video-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ff5722);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.scroll-indicator {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Crisis Statistics Section */
.crisis-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.crisis-content {
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.stat-unit {
    font-size: 1.2rem;
    font-weight: 600;
    color: #764ba2;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.4;
}

.stat-source {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

.crisis-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.crisis-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    padding: 0 40px;
}

.crisis-quote blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #667eea;
    position: absolute;
    left: 0;
    top: -10px;
}

.crisis-quote blockquote::after {
    content: '"';
    font-size: 4rem;
    color: #667eea;
    position: absolute;
    right: 0;
    bottom: -30px;
}

.crisis-quote cite {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: white;
}

.solution-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-text .section-title {
    text-align: left;
    margin-bottom: 15px;
}

.solution-text .section-subtitle {
    text-align: left;
    margin-bottom: 40px;
}

.solution-points {
    margin-bottom: 40px;
}

.point {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.point-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.point-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

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

.michael-quote {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.michael-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.michael-quote span {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.solution-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.connection-diagram {
    position: relative;
    width: 300px;
    height: 300px;
}

.person {
    position: absolute;
    font-size: 3rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #667eea;
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.person-1 { top: 0; left: 50%; transform: translateX(-50%); }
.person-2 { right: 0; top: 50%; transform: translateY(-50%); }
.person-3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.person-4 { left: 0; top: 50%; transform: translateY(-50%); }

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    height: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform-origin: left center;
}

.line-1 { top: 30px; left: 50%; width: 106px; transform: translateX(-50%) rotate(45deg); }
.line-2 { top: 30px; left: 50%; width: 106px; transform: translateX(-50%) rotate(-45deg); }
.line-3 { bottom: 30px; left: 50%; width: 106px; transform: translateX(-50%) rotate(-45deg); }
.line-4 { bottom: 30px; left: 50%; width: 106px; transform: translateX(-50%) rotate(45deg); }
.line-5 { top: 50%; left: 30px; width: 240px; transform: translateY(-50%); }
.line-6 { top: 30px; left: 50%; width: 240px; transform: translateX(-50%) rotate(90deg); }

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    background: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Michael's Story Section */
.michael-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.michael-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.michael-image {
    text-align: center;
}

.michael-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.michael-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.michael-story h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.michael-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.story-timeline {
    margin-bottom: 40px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.timeline-year {
    min-width: 100px;
    font-weight: 700;
    color: #667eea;
    font-size: 0.9rem;
}

.timeline-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.michael-mission {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.michael-mission h3 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 15px;
}

.michael-mission p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

/* Meetup Groups Section */
.meetup-section {
    padding: 100px 0;
    background: white;
}

.meetup-content {
    text-align: center;
}

.meetup-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature {
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

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

.meetup-cities {
    margin-bottom: 50px;
}

.meetup-cities h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.city-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    font-weight: 600;
    color: #555;
    transition: all 0.3s ease;
    cursor: pointer;
}

.city-card:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.meetup-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.or-divider {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
}

.start-group {
    text-align: center;
}

.start-group h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.start-group a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.start-group a:hover {
    text-decoration: underline;
}

/* Personal Action Section */
.action-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.action-content {
    text-align: center;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.action-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    text-align: left;
    transition: all 0.3s ease;
}

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

.action-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
    display: block;
}

.action-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

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

.action-card li {
    padding: 8px 0;
    color: #666;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.action-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.research-backing {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.research-stat h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.research-stat p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.research-stat cite {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* Official Resources Section */
.resources-section {
    padding: 100px 0;
    background: white;
}

.resources-content {
    text-align: center;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.resource-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.3s ease;
}

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

.resource-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #667eea;
}

.resource-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.resource-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.resource-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-quote {
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.cta-quote cite {
    font-size: 1rem;
    opacity: 0.9;
}

.final-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary.large {
    padding: 18px 35px;
    font-size: 1.1rem;
}

/* Footer Updates */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-section p {
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    margin-bottom: 10px;
}

.footer-bottom em {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .michael-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .point {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .timeline-year {
        min-width: auto;
        font-size: 1rem;
        color: #667eea;
        font-weight: 700;
    }
    
    .connection-diagram {
        width: 250px;
        height: 250px;
    }
    
    .video-container {
        padding-bottom: 60%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .mingle-video {
        padding: 20px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .crisis-quote blockquote {
        font-size: 1.2rem;
        padding: 0 20px;
    }
    
    .action-card, .resource-card {
        padding: 25px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}
