:root {
    --dark-bg: #f5f5f5;
    --card-bg: #ffffff;
    --accent: #374151;
    --accent-light: #6b7280;
    --accent-dark: #353940;
    --text-main: #1f2937;
    --text-muted: #9ca3af;
    --section-bg: #e5e7eb;
}

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

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--accent);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo { font-size: 1.5rem; font-weight: bold; color: var(--accent-light); text-transform: uppercase; letter-spacing: 1px; }
.tagline-nav { color: #d0d0d0; font-style: italic; font-size: 0.9rem; }

/* Hero Section with Scrolling Effect */
.hero {
    min-height: 90vh;
    background: linear-gradient(rgba(26,58,92,0.85), rgba(35,45,60,0.9)), 
                url('src/stock/New Jersey Trees.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    color: #ffffff;
}

.hero-content h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-dark);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1.5rem;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}
.cta-button:hover {
    background: var(--accent);
    transform: scale(1.05);
}

/* Team Section */
.team-section { 
    padding-top: 2rem; 
    background: var(--section-bg);
    padding-bottom: 2rem; 
}
.team-section h2 { text-align: center; color: var(--accent); }

/* Team Cards */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 0;
    justify-content: center;
}

.team-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 4px solid var(--accent);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    flex: 1 1 400px;
    max-width: 500px;
    min-width: 300px;
}

.team-card:hover { transform: translateY(-10px); }

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 45%;
}

.card-content { padding: 2rem; }
.card-content h3 { color: var(--accent); font-size: 1.8rem; }
.role { font-style: italic; color: var(--text-muted); margin-bottom: 1rem; }
.highlight-text { color: var(--accent); font-weight: bold; margin-bottom: 1rem; min-height: 3.2rem; }

.contact-links a {
    display: block;
    color: var(--text-main);
    text-decoration: none;
    margin-bottom: 0.5rem;
}

/* Hero Specialties */
.hero-specialties {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.hero-specialties h2 { 
    color: #ffffff; 
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.specialty-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.spec-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1.5rem;
    border-left: 3px solid var(--accent-light);
    transition: transform 0.2s, background 0.2s;
    backdrop-filter: blur(5px);
    font-size: 0.95rem;
}
.spec-item:hover { 
    transform: translateX(5px); 
    background: rgba(255, 255, 255, 0.25);
}

/* Staff Photo Section */
.staff-photo-section {
    position: relative;
    padding: 3rem 0;
    text-align: center;
    overflow: hidden;
}

.staff-photo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), 
                url('src/stock/staff-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.staff-photo-section h2 {
    color: #ffffff;
    margin-bottom: 2rem;
}
.staff-photos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.staff-photo {
    flex: 1 1 400px;
    max-width: 500px;
    min-width: 300px;
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-bottom: 4px solid var(--accent);
    transition: transform 0.3s, box-shadow 0.3s;
}

.staff-photo:hover {
    transform: translateY(-10px);
}

footer { 
    background: var(--accent); 
    padding: 3rem 0; 
    text-align: center; 
    color: #ffffff;
    border-top: 3px solid var(--accent-light);
}
footer h3 { color: #ffffff; margin-bottom: 1rem; }
footer a { color: #ffffff; text-decoration: none; }
footer a:hover { text-decoration: underline; }
.copyright { margin-top: 1.5rem; font-size: 0.85rem; opacity: 0.8; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* Color Scheme Notification */
.scheme-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: opacity 0.3s;
    border-left: 4px solid var(--accent-light);
}