/* about.css */

/* About Hero Section */
.os-hero-section {
    position: relative;
    background: url('/assets/images/lucy-snoopy-sally-kids---blog.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
}

.os-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 58, 109, 0.9) 0%, rgba(240, 75, 36, 0.9) 100%);
}

.os-hero-section .container {
    position: relative;
    z-index: 1;
    padding-top: 75px;
    padding-bottom: 75px;
}

.os-hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.os-hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.os-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.os-hero-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.os-hero-image:hover {
    transform: scale(1.05);
}

/* Who We Are Section */
.os-who-we-are-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.os-who-we-are-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(240, 75, 36, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.os-who-we-are-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(11, 58, 109, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.os-who-we-are-section .container {
    position: relative;
    z-index: 2;
}

.os-who-we-are-section h2 {
    color: var(--os-primary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.os-who-we-are-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--os-secondary);
}

.os-who-we-are-section .lead {
    color: var(--os-secondary);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
}

.os-who-we-are-section p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.os-who-we-are-content {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.os-who-we-are-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Mission Section */
.os-mission-section .os-card {
    height: 100%;
    transition: all 0.5s ease;
}

.os-mission-section .os-card:hover {
    background-color: var(--os-primary);
    color: white;
    transition: all 0.5s ease;
}

.os-mission-section .os-card:hover .card-title,
.os-mission-section .os-card:hover .card-text {
    color: white;
    transition: all 0.5s ease;
}

.os-mission-section .os-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--os-secondary);
    transition: all 0.3s ease;
}

.os-mission-section .os-card:hover .os-card-icon {
    color: white;
}

.os-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.os-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #0056b3;
}

/* Founder Section */
.os-founder-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.os-founder-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.os-founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.os-founder-image {
    height: 250px;
    overflow: hidden;
}

.os-founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.os-founder-card:hover .os-founder-image img {
    transform: scale(1.1);
}

.os-founder-content {
    padding: 30px;
}

.os-founder-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--os-primary);
    margin-bottom: 5px;
}

.os-founder-title {
    font-size: 1rem;
    color: var(--os-secondary);
    margin-bottom: 15px;
}

.os-founder-description {
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.os-founder-social {
    display: flex;
    gap: 10px;
}

.os-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--os-primary);
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.os-social-link:hover {
    background-color: var(--os-secondary);
    color: white;
}

/* Co-founders Message Section */
.os-co-founders-section {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.os-co-founders-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(11, 58, 109, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.os-co-founders-section h2 {
    color: var(--os-primary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.os-co-founders-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--os-secondary);
}

.os-co-founder-card {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.os-co-founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.os-co-founder-card h3 {
    color: var(--os-secondary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.os-co-founder-card p {
    color: #4a4a4a;
    line-height: 1.6;
}

.os-ethos-content {
    background-color: var(--os-primary);
    color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.os-ethos-content h3 {
    color: var(--os-secondary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.os-ethos-content p {
    line-height: 1.6;
}

/* Backpacks of Hope & Excursion Sibling Reunion Program Section */
.os-backpacks-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.os-backpacks-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(240, 75, 36, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.os-backpacks-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(11, 58, 109, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.os-backpacks-section .container {
    position: relative;
    z-index: 2;
}

.os-backpacks-section h2 {
    color: var(--os-primary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.os-backpacks-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--os-secondary);
}

.os-program-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.os-program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.os-program-card h3 {
    color: var(--os-secondary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.os-program-card h4 {
    color: var(--os-primary);
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.os-program-card p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.os-priority-lists {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.os-priority-list {
    flex: 1;
    min-width: 200px;
}

.os-priority-list h4 {
    color: var(--os-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.os-priority-list ul,
.os-excursion-list {
    list-style-type: none;
    padding-left: 0;
}

.os-priority-list ul li,
.os-excursion-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
}

.os-priority-list ul li::before,
.os-excursion-list li::before {
    content: '•';
    color: var(--os-secondary);
    position: absolute;
    left: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .os-hero-section {
        padding: 60px 0;
    }

    .os-hero-section h1 {
        font-size: 2.5rem;
    }

    .os-hero-section .lead {
        font-size: 1.1rem;
    }

    .os-hero-image {
        margin-top: 2rem;
    }

    .os-who-we-are-section,
    .os-co-founders-section {
        padding: 60px 0;
    }

    .os-who-we-are-section h2,
    .os-co-founders-section h2 {
        font-size: 2rem;
    }

    .os-co-founder-card,
    .os-ethos-content {
        margin-bottom: 30px;
    }
}