/* The Kangdom Website Styles */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

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

header {
    text-align: center;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

h1 {
    font-size: 3.5em;
    color: #2d3748;
    text-shadow: none;
    margin-bottom: 10px;
    font-weight: 700;
}

.kangdom-info {
    font-size: 1.2em;
    color: #4a5568;
    margin: 5px 0;
    font-weight: 500;
}

.kangdom-address {
    font-size: 1.1em;
    color: #718096;
    margin: 5px 0 20px 0;
    font-style: italic;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 20px 0;
}

.section {
    background: rgba(255, 255, 255, 0.95);
    margin: 30px 0;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section h2 {
    font-size: 2.5em;
    color: #4a5568;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

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

.team-member {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    padding: 30px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.team-member h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 600;
}

.team-member p {
    font-size: 1.1em;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.team-member:nth-child(even) {
    background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
}

.team-member:nth-child(3n) {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    color: #2d3748;
    border: 1px solid #e2e8f0;
}

.team-member:nth-child(3n) p {
    text-shadow: none;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    h1 {
        font-size: 2.5em;
    }
    
    .section {
        padding: 25px;
        margin: 20px 0;
    }
    
    .section h2 {
        font-size: 2em;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-member {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }
    
    .section h2 {
        font-size: 1.5em;
    }
    
    .team-member h3 {
        font-size: 1.5em;
    }
    
    .team-member p {
        font-size: 1em;
    }
}

.footer {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9em;
}

.footer p {
    margin: 0;
}