/* EventAgent Brand Colors for App Screenshots */
.app-showcase {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.app-showcase::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(99,102,241,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.app-showcase .container {
    position: relative;
    z-index: 1;
}

.app-showcase-header {
    text-align: center;
    margin-bottom: 5rem;
}

.app-showcase-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #9575CD, #6200EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-showcase-header p {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.app-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
    margin-top: 4rem;
}

.app-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-feature:nth-child(even) {
    direction: rtl;
}

.app-feature:nth-child(even) > * {
    direction: ltr;
}

.app-feature-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.app-feature-content p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.app-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.feature-tag {
    background: linear-gradient(45deg, #6200EE, #6200EE);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.app-screenshot {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.phone-mockup {
    position: relative;
    background: #000;
    border-radius: 35px;
    padding: 8px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.phone-screen {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: auto;
    display: block;
}

/* Logo Section */
.app-logo-section {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 0;
    background: white;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.app-logo-section img {
    max-width: 300px;
    height: auto;
    margin-bottom: 2rem;
}

.app-logo-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.app-logo-section p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

/* Central Feature Highlight */
.central-feature {
    text-align: center;
    background: linear-gradient(135deg, #6200EE, #6200EE);
    color: white;
    padding: 4rem 2rem;
    border-radius: 30px;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.central-feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    animation: rotate 20s linear infinite;
}

.central-feature-content {
    position: relative;
    z-index: 1;
}

.central-feature h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.central-feature p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.central-feature img {
    max-width: 400px;
    height: auto;
    margin: 2rem auto 0;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-showcase {
        padding: 4rem 0;
    }
    
    .app-feature {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .app-feature:nth-child(even) {
        direction: ltr;
    }
    
    .app-showcase-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .app-showcase-header p {
        font-size: 1.1rem;
    }
    
    .app-feature-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .app-feature-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .app-feature-tags {
        justify-content: center;
        gap: 0.6rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .app-screenshot {
        max-width: 250px;
    }
    
    .phone-mockup {
        transform: none;
        max-width: 100%;
        padding: 6px;
    }
    
    .phone-mockup::before {
        width: 50px;
        height: 3px;
        top: 20px;
    }
    
    .central-feature {
        padding: 3rem 1.5rem;
        margin: 3rem 0;
    }
    
    .central-feature h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .central-feature p {
        font-size: 1.1rem;
    }
    
    .central-feature img {
        max-width: 300px;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .app-showcase {
        padding: 3rem 0;
    }
    
    .app-feature {
        margin-bottom: 2.5rem;
    }
    
    .app-feature-content h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .app-feature-content p {
        font-size: 0.95rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
    
    .app-screenshot {
        max-width: 220px;
    }
    
    .phone-mockup {
        padding: 5px;
    }
    
    .central-feature {
        padding: 2.5rem 1rem;
    }
    
    .central-feature h3 {
        font-size: 1.8rem;
    }
    
    .central-feature p {
        font-size: 1rem;
    }
    
    .central-feature img {
        max-width: 260px;
    }
} 