/* AppWT Team Site - Responsive Styles */
/* Colors: Forest #1B4332, Gold #F4A261, Platinum #F8F9FA, Obsidian #0D2818 */

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

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #F8F9FA;
}

header {
    background: #1B4332;
    color: #F8F9FA;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 24px;
    font-weight: 600;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    color: #F8F9FA;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #F4A261;
}

.hero {
    background: linear-gradient(135deg, #0D2818 0%, #1B4332 100%);
    color: #F8F9FA;
    padding: 60px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background: #F4A261;
    color: #0D2818;
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
    background: #E39250;
    transform: translateY(-2px);
}

section {
    padding: 50px 20px;
}

section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1B4332;
    text-align: center;
}

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

.team-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.team-card h3 {
    color: #1B4332;
    font-size: 22px;
    margin-bottom: 10px;
}

.team-card .role {
    color: #F4A261;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.team-card .since {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.team-card .credentials {
    color: #1B4332;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 500;
}

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

.value-card {
    background: white;
    border-left: 4px solid #F4A261;
    padding: 20px;
    border-radius: 5px;
}

.value-card h3 {
    color: #1B4332;
    margin-bottom: 10px;
}

.stats {
    background: #1B4332;
    color: #F8F9FA;
    text-align: center;
    padding: 50px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmin(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item h3 {
    font-size: 48px;
    color: #F4A261;
    margin-bottom: 10px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
    background: #F8F9FA;
    padding: 20px;
    font-weight: 600;
    color: #1B4332;
    cursor: pointer;
    border-left: 4px solid #F4A261;
}

.faq-answer {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}

.contact-info {
    max-width: 700px;
    margin: 30px auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 18px;
}

.contact-info strong {
    color: #1B4332;
}

.contact-info a {
    color: #F4A261;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

footer {
    background: #0D2818;
    color: #F8F9FA;
    padding: 30px 20px;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: #F4A261;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .hero h2 {
        font-size: 28px;
    }
    .hero p {
        font-size: 18px;
    }
    section h2 {
        font-size: 26px;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-item h3 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .hero {
        padding: 40px 20px;
    }
    .hero h2 {
        font-size: 24px;
    }
    .cta-button {
        display: block;
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
    }
}
