/* Clean, simple styling for Venba Apps website */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #fafafa;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 50px 0 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid #e5e7eb;
}

.brand-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: block;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

h1 {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 1.7em;
    font-weight: 600;
    margin: 45px 0 25px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 10px;
}

section.apps h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #3498db;
}

h3 {
    font-size: 1.35em;
    font-weight: 600;
    margin: 20px 0 12px;
    color: #2c3e50;
}

.tagline {
    font-size: 1.15em;
    color: #7f8c8d;
    font-weight: 400;
}

.meta {
    color: #7f8c8d;
    font-size: 0.9em;
    margin-top: 10px;
}

section {
    margin-bottom: 50px;
}

section p {
    font-size: 1.05em;
    color: #5d6d7e;
    line-height: 1.8;
}

.hero {
    text-align: center;
    font-size: 1.2em;
    padding: 20px 0;
    margin-bottom: 40px;
    color: #5d6d7e;
}

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

.app-card {
    display: flex;
    flex-direction: column;
    border: none;
    border-radius: 12px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.app-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.app-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    margin-bottom: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.app-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 1.4em;
}

.category {
    color: #3498db;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.status {
    margin-top: auto;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    display: inline-block;
    font-size: 0.95em;
}

.coming-soon {
    color: #e67e22;
    background: #fef5e7;
    border: 1px solid #f0b27a;
}

/* Coming Soon Card */
.placeholder-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.available {
    color: #27ae60;
    background: #eafaf1;
    border: 1px solid #82e0aa;
}

ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
    line-height: 1.6;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.app-store-link {
    display: block;
    text-decoration: none;
    margin-top: auto;
}

.app-store-link:hover {
    text-decoration: none;
}

.app-store-link .status {
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.app-store-link:hover .status.available {
    background: #27ae60;
    color: white;
    border-color: #27ae60;
    transform: scale(1.02);
}

/* Feature list styling */
.features-list {
    margin: 15px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.95em;
    color: #5d6d7e;
}

.feature-icon {
    color: #3498db;
    flex-shrink: 0;
}

footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
    color: #7f8c8d;
}

footer nav {
    margin-bottom: 10px;
}

footer a {
    margin: 0 10px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    vertical-align: middle;
}

.footer-link:hover {
    color: #2980b9;
    transform: translateY(-1px);
}

.separator {
    margin: 0 8px;
    color: #bdc3c7;
}

/* Data deletion page specific styles */
.method-box, .request-box, .manual-request {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.button-primary {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin: 20px 0;
}

.button-primary:hover {
    background: #2980b9;
    text-decoration: none;
}

.info-note {
    background: #e8f4f8;
    padding: 15px;
    border-left: 4px solid #3498db;
    margin-top: 20px;
}

.deletion-type {
    margin: 30px 0;
}

.deletion-type h3 {
    color: #2c3e50;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
}

/* Hero improvements */
.hero-text {
    font-size: 1.35em;
    line-height: 1.6;
    font-weight: 500;
    color: #34495e;
    max-width: 600px;
    margin: 0 auto;
}

/* Remove h2 from apps section for cleaner look */
.apps {
    padding-top: 0;
}

/* About-Contact combined section */
.about-contact {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #ecf0f1;
}

.about-content {
    margin-bottom: 40px;
}

.about-content h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.about-content p {
    max-width: 700px;
}

/* Contact links styling */
.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
    align-items: flex-start;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #5d6d7e;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 0;
}

.contact-link:hover {
    color: #3498db;
    transform: translateX(5px);
}

.contact-icon {
    color: #3498db;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-link:hover .contact-icon {
    color: #2980b9;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    .container {
        padding: 15px;
    }
    
    .app-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-logo {
        width: 80px;
        height: 80px;
    }
    
    /* Keep footer links horizontal on mobile */
    footer nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        line-height: 1.6;
    }
    
    footer a {
        margin: 0 5px;
        white-space: nowrap;
    }

    .footer-link span {
        display: none;
    }

    .footer-link {
        margin: 0 8px;
    }

    .separator {
        display: none;
    }
    
    /* Hide separator pipes on mobile for cleaner look */
    footer nav {
        font-size: 0.9em;
    }

    .contact-links {
        flex-direction: column;
        gap: 15px;
    }

    .hero-text br {
        display: none;
    }
}