/* ============================================
   ABOUT/INFO PAGE STYLES
   ============================================ */

/* Hero Section */
.info-hero {
    background: linear-gradient(135deg, #f9f7f4 0%, #f5f0eb 100%);
    padding: 60px 5% 80px;
}

.info-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-hero-content {
    padding-right: 40px;
}

.info-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 0.9rem;
    color: #8d6e63;
}

.breadcrumb-link {
    color: #8d6e63;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 6px;
}

.breadcrumb-link:hover {
    color: #5d4037;
    background: rgba(93, 64, 55, 0.1);
}

.breadcrumb-separator {
    font-size: 0.8rem;
    opacity: 0.5;
}

.breadcrumb-current {
    color: #5d4037;
    font-weight: 600;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
}

.info-hero-text {
    margin-bottom: 40px;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #2c1810;
    line-height: 1.2;
    margin-bottom: 15px;
}

.info-subtitle {
    font-size: 1.3rem;
    color: #8d6e63;
    margin-bottom: 40px;
}

.info-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.info-stat {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    border: 2px solid rgba(141, 110, 99, 0.1);
    transition: all 0.3s ease;
}

.info-stat:hover {
    transform: translateY(-5px);
    border-color: #8d6e63;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5d4037;
    margin-bottom: 8px;
}

.stat-label {
    color: #8d6e63;
    font-size: 0.95rem;
    font-weight: 500;
}

.info-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.info-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Mission Section */
.mission-section {
    padding: 100px 5%;
    background: white;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title i {
    color: #8d6e63;
    font-size: 2rem;
}

.mission-statement {
    font-size: 1.2rem;
    color: #5d4037;
    line-height: 1.8;
    margin-bottom: 60px;
    max-width: 800px;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    padding: 40px 30px;
    background: #f9f7f4;
    border-radius: 15px;
    border: 1px solid rgba(215, 204, 200, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px rgba(93, 64, 55, 0.1);
    border-color: transparent;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8d6e63, #5d4037);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.value-card h3 {
    color: #2c1810;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #5d4037;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 100px 5%;
    background: #f9f7f4;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #8d6e63;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(93, 64, 55, 0.15);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 30px;
}

.member-info h3 {
    color: #2c1810;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.member-role {
    color: #8d6e63;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.member-bio {
    color: #5d4037;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.member-social {
    display: flex;
    gap: 15px;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: rgba(141, 110, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8d6e63;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #5d4037;
    color: white;
    transform: translateY(-3px);
}

/* Timeline Section */
.timeline-section {
    padding: 100px 5%;
    background: white;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 50px;
    margin-top: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #8d6e63, #5d4037);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 30px;
}

.timeline-year {
    position: absolute;
    left: -95px;
    top: 0;
    width: 70px;
    height: 70px;
    background: #5d4037;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(93, 64, 55, 0.3);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 35px;
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid #8d6e63;
    border-radius: 50%;
}

.timeline-content {
    background: #f9f7f4;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #8d6e63;
}

.timeline-content h3 {
    color: #2c1810;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #5d4037;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #5d4037 0%, #2c1810 100%);
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.cta-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    color: #2c1810;
}

.cta-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.cta-button {
    background: #ffcc80;
    color: #2c1810;
    border: none;
    padding: 18px 35px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .info-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .info-hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .info-title {
        font-size: 2.8rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .info-title {
        font-size: 2.3rem;
    }
    
    .info-subtitle {
        font-size: 1.1rem;
    }
    
    .info-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-year {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 20px;
    }
    
    .timeline::before {
        left: 8px;
    }
    
    .timeline-item::before {
        left: -22px;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .info-hero,
    .mission-section,
    .team-section,
    .timeline-section,
    .cta-section {
        padding-left: 3%;
        padding-right: 3%;
    }
    
    .info-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}