/* Layout Styles - Containers, Sections, Grid */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flow-root;
}

/* Sections */
section {
    padding: 0 0 3rem 0;
}

/* Hero Section */
.hero {
    background-color: var(--dark-charcoal);
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../assets/images/team/mark_schep_professional.png");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.16;
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
}

.hero h1 {
    color: var(--white);
}

.hero .tagline {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

/* Page Header */
.page-header {
    background-color: var(--dark-charcoal);
    text-align: center;
    padding: 3rem 2rem;
    border-bottom: 4px solid var(--dynamic-orange);
}

.page-header h1 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.page-header .tagline {
    font-size: 1.15rem;
    color: var(--light-gray);
    max-width: 1000px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    background-color: var(--dark-charcoal);
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.cta-section--photo {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-section--photo h2,
.cta-section--photo p {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.cta-section--photo .cta-logo {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.cta-logo {
    width: 90px;
    height: 90px;
    margin-bottom: 1rem;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--light-gray);
    margin: 0 auto 2rem;
    max-width: 600px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Opening Text */
.opening-text p {
    font-size: 1.25rem;
    line-height: 1.8;
}
