/* Zero Hour Group - Main Stylesheet */

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

:root {
    --primary-dark: #1a1f2e;
    --secondary-dark: #252b3d;
    --accent-navy: #2d3548;
    --text-light: #ffffff;
    --text-muted: #a0a8b8;
    --accent-orange: #e07a3a;
    --accent-blue: #4a90d9;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation */
nav {
    background-color: var(--secondary-dark);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-light);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-orange);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-dark);
    min-width: 200px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
    z-index: 1001;
}

/* Desktop only: show dropdown on hover */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--accent-navy);
    color: var(--accent-orange);
}

.dropdown-content p {
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.hero-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 2rem;
}

.logo-placeholder {
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
    background-color: var(--secondary-dark);
    border: 2px dashed var(--accent-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.hero .tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero .supporting-text {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #c86a2e;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-dark);
}

/* Main Content */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Bio Page Styles */
.bio-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--accent-navy);
}

.bio-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.bio-header .role {
    font-size: 1.25rem;
    color: var(--accent-orange);
}

.bio-header .location {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.bio-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.bio-content p {
    margin-bottom: 1.5rem;
}

.bio-placeholder {
    background-color: var(--secondary-dark);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
    color: var(--text-muted);
    font-style: italic;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--accent-blue);
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

/* Services Page Styles */
.services-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.services-list li {
    margin-bottom: 0.5rem;
}

.cta-box {
    margin-top: 2.5rem;
    padding: 2rem;
    background-color: var(--secondary-dark);
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--accent-orange);
}

.cta-box p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Team Page Styles */
.team-page {
    max-width: 1000px;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.team-member {
    background-color: var(--secondary-dark);
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid var(--accent-orange);
}

.member-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.photo-placeholder {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background-color: var(--accent-navy);
    border-radius: 50%;
    border: 2px dashed var(--text-muted);
}

.member-info {
    flex: 1;
}

.team-member h2 {
    margin-bottom: 0.25rem;
}

.team-member h2 a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-member h2 a:hover {
    color: #f0a060;
}

.team-member .role {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.team-member .bio {
    color: var(--text-muted);
    line-height: 1.7;
}

.team-member .bio a,
.bio-content a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-member .bio a:hover,
.bio-content a:hover {
    color: var(--accent-orange);
}

.team-member .placeholder-text {
    font-style: italic;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--secondary-dark);
    color: var(--text-muted);
    margin-top: auto;
}

footer a {
    color: var(--accent-orange);
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--secondary-dark);
        padding: 1rem;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero .tagline {
        font-size: 1rem;
    }

    .logo-placeholder,
    .hero-logo {
        width: 200px;
        height: 200px;
        max-width: 200px;
    }
}
