/*
 * POA Labs Website Styles
 * Version: 1.0.0
 * Description: Main stylesheet for POA Labs website, implementing modern and responsive design
 * Author: POA Labs Team
 * Last Updated: 2025-02-28
 */

/* Reset and Base Styles
-------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Variables
-------------------------------------------------- */
:root {
    --primary-color: #007bff;
    --secondary-color: #333;
    --background-light: #f9f9f9;
    --background-medium: #f4f4f4;
    --text-color: #333;
    --border-color: #ddd;
    --container-width: 1100px;
    --transition-speed: 0.3s;
}

/* Base Typography and Layout
-------------------------------------------------- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles
-------------------------------------------------- */
header {
    background: var(--background-medium);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform var(--transition-speed);
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    width: 60px;
    height: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .logo img {
        width: 45px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
}

/* Hero Section Styles
-------------------------------------------------- */
#hero {
    background: var(--background-medium);
    color: var(--text-color);
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-image {
    background: url('placeholder-hero.jpg') no-repeat center center/cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: -1;
    transform: scale(1.1);
    transition: transform 10s ease;
}

#hero:hover .hero-image {
    transform: scale(1.2);
}

.hero-subtitle {
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.hero-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* What We Do Section
-------------------------------------------------- */
#what-we-do {
    padding: 4rem 0;
    text-align: center;
    background: white;
}

/* Mission & Vision Section
-------------------------------------------------- */
#mission-vision {
    background: var(--background-medium);
    padding: 4rem 0;
    text-align: center;
}

.mission-vision-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mission, .vision {
    margin: 2rem 0;
}

.mission h3, .vision h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission p, .vision p {
    font-style: italic;
    line-height: 1.8;
}

.section-logo {
    width: 40px;
    height: auto;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mission-vision-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .section-logo {
        width: 35px;
    }
}

/* Team Section
-------------------------------------------------- */
.team {
    margin-top: 2rem;
    text-align: center;
}

.founders-image {
    margin: 2rem auto;
    max-width: 300px;
    padding: 0 1rem;
}

.founders-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.team-member {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: left;
    transition: transform var(--transition-speed);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .founders-image {
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* Footer Styles
-------------------------------------------------- */
footer {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: color var(--transition-speed);
}

footer a:hover {
    color: var(--primary-color);
}

/* Responsive Design
-------------------------------------------------- */
@media (max-width: 768px) {
    .team-members {
        grid-template-columns: 1fr;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Animations
-------------------------------------------------- */
