/* Direct Intranet Hub - Main Landing Page Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    min-height: 100vh;
    padding: 20px;
}

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

.header {
    text-align: center;
    color: #f0f0f0;
    margin-bottom: 50px;
    padding-top: 20px;
}

.header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header p {
    font-size: 1.2em;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

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

.app-card {
    background: #1f1f1f;
    border: 1px solid #333333;
    border-left: 4px solid #2d5016;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.app-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.app-card h2 {
    font-size: 1.2em;
    margin-bottom: 0;
    color: #2d5016;
}

.app-link {
    display: none;
}

.info-section {
    background: #1f1f1f;
    border: 1px solid #333333;
    border-left: 4px solid #2d5016;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
    color: #f0f0f0;
}

.info-section h2 {
    margin-bottom: 15px;
    color: #2d5016;
}

.info-section ul {
    list-style-position: inside;
    line-height: 1.8;
    color: #b0b0b0;
}

.info-section li {
    margin-bottom: 10px;
}

.footer {
    text-align: center;
    color: #b0b0b0;
    margin-top: 40px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    body {
        padding: 16px;
    }

    .container {
        padding: 0;
    }

    .header {
        margin-bottom: 30px;
    }

    .header h1 {
        font-size: 2em;
    }

    .header p {
        font-size: 1em;
    }

    .app-card {
        padding: 16px;
    }

    .applications-grid {
        grid-template-columns: 1fr;
    }

    .info-section {
        padding: 20px;
    }

    .info-section ul {
        line-height: 1.6;
    }
}
