/* HomeLook: Screen Launcher CSS */

:root {
    --look-primary: #ff6b35;
    --look-secondary: #f7931e;
    --look-accent: #ff8c42;
    --look-dark: #2c3e50;
    --look-light: #ecf0f1;
    --look-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --text-muted: #6c757d;
    --dark-color: #2c3e50;
}

/* App Header */
.app-header {
    background: var(--look-gradient);
    color: white;
    padding-top: 140px;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.app-header::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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 10s ease-in-out infinite;
}

.app-icon-large {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-icon-large img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
}

.app-meta .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.download-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: white;
    color: var(--look-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Screenshots Section */
.screenshots-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.screenshot-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.screenshot-overlay p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Features Section */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: var(--look-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.feature-card .feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Developer Info */
.developer-info {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.developer-info h3 {
    color: var(--dark-color);
    font-weight: 700;
}

.info-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    width: 20px;
    text-align: center;
}

/* Download CTA Section */
.download-cta {
    background: var(--look-gradient);
    color: white;
    position: relative;
}

.download-cta::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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 10s ease-in-out infinite;
}

.download-cta h2 {
    color: white;
}

.download-cta .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.download-cta .btn-outline-primary {
    color: white;
    border-color: white;
}

.download-cta .btn-outline-primary:hover {
    background-color: white;
    color: var(--look-primary);
}

/* Footer Styles */
.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #adb5bd !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--look-primary) !important;
    transform: translateX(5px);
}

/* Animation Keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-icon-large {
        width: 100px;
        height: 100px;
    }
    
    .app-icon-large img {
        width: 60px;
        height: 60px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .screenshot-overlay {
        position: static;
        transform: none;
        background: rgba(0,0,0,0.8);
        padding: 15px;
    }
    
    .download-cta .d-flex {
        flex-direction: column;
        align-items: center;
    }
    
    .download-cta .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .app-header h1 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-card .feature-icon i {
        font-size: 1.5rem;
    }
    
    .developer-info {
        padding: 1.5rem;
    }
}

/* Animation Enhancements */
.screenshot-item {
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Loading states */
.loading-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 2s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .app-header {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        color: #e8eaed;
    }
    
    .app-header h1,
    .app-header .lead {
        color: #e8eaed;
    }
    
    .feature-card,
    .developer-info {
        background: #2d2d2d;
        color: #e8eaed;
        border-color: #404040;
    }
    
    .info-item {
        border-color: #404040;
    }
    
    .screenshots-section {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }
} 