/* Main Styles for Christian Career Resources Website */

/* Base Styles */
:root {
    --deep-navy: #1E3A5F;
    --gold: #E9B872;
    --charcoal: #343A40;
    --warm-neutral: #F5EEE5;
    --white: #FFFFFF;
    --soft-gray: #F8F9FA;
    --success-green: #28A745;
    --alert-orange: #FD7E14;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--deep-navy);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--deep-navy);
}

h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Header & Navigation */
.hero {
    position: relative;
    background-color: var(--deep-navy);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 40px 20px;
    width: 100%;
}

.hero-content h1 {
    color: white;
    margin-bottom: 1rem;
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
    margin-top: 2rem;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background-color: var(--gold);
    color: var(--deep-navy);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.accent-bg {
    background-color: var(--soft-gray);
}

/* Company Cards */
.company-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
}

.company-logo-container {
    text-align: center;
    margin: 1.5rem 0;
}

.company-logo {
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
}

/* Job Grid */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.job-item {
    background-color: var(--soft-gray);
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
}

/* Resource Cards */
.resource-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-logo-container {
    text-align: center;
    margin: 1.5rem 0;
}

.resource-logo {
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
}

/* Career Journey Infographic */
.infographic-container {
    text-align: center;
    margin: 2rem 0;
}

.infographic {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Meeting Schedule */
.meeting-schedule {
    margin: 1.5rem 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.schedule-item {
    display: flex;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item:nth-child(odd) {
    background-color: var(--soft-gray);
}

.schedule-time {
    flex: 0 0 150px;
    font-weight: 600;
    color: var(--deep-navy);
}

.schedule-activity {
    flex: 1;
}

/* Featured Resource Highlight */
.highlight-card {
    border: 2px solid var(--accent-color);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.featured-resource {
    background-color: var(--soft-gray);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
}

.contact-phone, .contact-email {
    margin: 0.5rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.primary-btn {
    background-color: var(--deep-navy);
    color: var(--white);
}

.primary-btn:hover {
    background-color: #15293f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
    background-color: var(--gold);
    color: var(--charcoal);
}

.secondary-btn:hover {
    background-color: #d9a55f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .main-nav ul {
        gap: 1rem;
    }
    
    .job-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 0.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 1.5rem 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .main-nav a {
        padding: 12px 20px;
        font-size: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .job-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.8rem;
    }
    
    .job-item {
        padding: 0.8rem;
        font-size: 0.9rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .company-logo {
        max-width: 150px;
        max-height: 80px;
    }
    
    .btn {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
        padding: 1rem 0;
    }
    
    h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    h4 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .company-card, .resource-card, .contact-card {
        padding: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .job-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .job-item {
        padding: 1rem;
        font-size: 0.9rem;
        min-height: 48px;
    }
    
    .company-logo {
        max-width: 120px;
        max-height: 60px;
    }
    
    .main-nav ul {
        gap: 0.6rem;
    }
    
    .main-nav a {
        padding: 14px 16px;
        font-size: 0.95rem;
        min-height: 48px;
    }
    
    .btn {
        width: 100%;
        min-height: 48px;
        padding: 14px 16px;
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .section-intro {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .updated-date {
        font-size: 0.85rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .container {
        width: 98%;
        padding: 0.8rem 0;
    }
    
    h1 {
        font-size: 1.4rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .company-card, .resource-card, .contact-card {
        padding: 1rem;
    }
    
    .job-item {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    
    .company-logo {
        max-width: 100px;
        max-height: 50px;
    }
}

/* Faith and Jobs Logo Styles */
.main-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Hero background image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Enhanced hero overlay */
.hero-overlay {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero content adjustments */
.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 40px 20px;
}

/* Hero navigation styles */
.hero-nav {
    margin-top: 30px;
}

.hero-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-nav li {
    margin: 0;
}

.hero-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Mobile responsiveness for logo and hero */
@media (max-width: 768px) {
    .main-logo {
        max-width: 250px;
        margin-bottom: 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .hero-nav ul {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-nav a {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .main-logo {
        max-width: 200px;
    }
    
    .hero-content {
        padding: 30px 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

