/* Specific styles for HealthyRemote */
:root {
    --accent-color: #00A9E0;
    --accent-gradient: linear-gradient(135deg, #00A9E0 0%, #0077B6 100%);
    --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --card-shadow: 0 10px 30px rgba(0, 169, 224, 0.1);
    --hover-shadow: 0 20px 40px rgba(0, 169, 224, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section Enhancements */
.hero-section {
    background: var(--accent-gradient);
    color: white;
    padding: 4rem 0;
    border-radius: 0 0 30px 30px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.centered {
    justify-content: center !important;
    text-align: center;
}

.app-logo {
    width: 180px;
    height: 180px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-right: 3rem;
    transition: all 0.3s ease;
    background: white;
    padding: 1rem;
    animation: float 3s ease-in-out infinite;
}

.app-logo:hover {
    transform: translateY(-10px) rotate(5deg);
    box-shadow: var(--hover-shadow);
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tagline {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-links img {
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: translateY(-3px);
}

/* Section Enhancements */
.app-overview, .features-section, .tech-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.app-overview:hover, .features-section:hover, .tech-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.app-overview h2, .features-section h2, .tech-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-preview {
    margin: 3rem 0;
    text-align: center;
    position: relative;
}

.preview-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.preview-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Features Grid Enhancement */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

.feature-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Tech Section Enhancement */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-category {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.tech-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-badges img {
    transition: transform 0.3s ease;
}

.tech-badges img:hover {
    transform: scale(1.1);
}

/* Demo Section Enhancement */
.demo-section {
    text-align: center;
    padding: 4rem 3rem;
    background: var(--secondary-gradient);
    color: white;
    border-radius: 25px;
    box-shadow: var(--card-shadow);
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.demo-section::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="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.demo-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.demo-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.demo-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.demo-button, .source-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.demo-button {
    background: var(--success-gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

.source-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.demo-button:hover, .source-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.demo-button:hover {
    box-shadow: 0 10px 25px rgba(79, 172, 254, 0.6);
}

.demo-credentials {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 2;
}

.demo-credentials h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.demo-credentials p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

/* Footer Enhancement */
footer {
    background: var(--accent-gradient);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

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

.app-overview, .features-section, .tech-section, .demo-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0 1.5rem 0;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .app-logo {
        margin-right: 0;
        margin-bottom: 1.5rem;
        width: 120px;
        height: 120px;
    }
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    .tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
        margin-top: 1.2rem;
        margin-bottom: 0.5rem;
    }
    .demo-links {
        flex-direction: column;
        gap: 1rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .tech-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .tech-section h2 {
        font-size: 1.7rem;
        word-break: break-word;
        hyphens: auto;
    }
}

/* Floating animation for logo */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
} 