/* About Page Specific Styles */

/* ===== SECTION STYLES ===== */
.section {
    padding: 8rem 0;
}

.section-alt {
    background: linear-gradient(to bottom, var(--muted), var(--background));
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1.25rem;
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--foreground);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 12rem 0 8rem;
    background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.75rem;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== OUR STORY SECTION ===== */
.our-story-section {
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.story-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.story-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(254, 243, 231, 0.3) 0%,
            rgba(254, 243, 231, 0.6) 40%,
            rgba(254, 243, 231, 0.9) 70%,
            rgba(254, 243, 231, 0.98) 100%);
}

.story-container {
    position: relative;
    z-index: 1;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content {
    max-width: 650px;
}

.story-text {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-highlight {
    font-size: 1.2rem;
    color: var(--foreground);
    line-height: 1.8;
    font-weight: 600;
    margin-top: 2rem;
}

/* ===== TEAM SECTION ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem; /* Reduced from 3rem */
    max-width: 900px; /* Added to make the whole section narrower */
    margin: 0 auto;
}

.team-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px; /* Reduced from 24px */
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(201, 102, 60, 0.3);
}

.team-image {
    width: 100%;
    height: 450px; /* Reduced from 600px */
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s var(--transition-smooth);
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-content {
    padding: 1.75rem; /* Reduced from 2.5rem */
}

.team-name {
    font-size: 1.5rem; /* Reduced from 2rem */
    font-weight: 800;
    margin-bottom: 0.25rem; /* Reduced from 0.5rem */
    color: var(--foreground);
}

.team-role {
    font-size: 0.95rem; /* Reduced from 1.05rem */
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem; /* Reduced from 1.25rem */
}

.team-bio {
    color: var(--muted-foreground);
    line-height: 1.7; /* Reduced from 1.8 */
    font-size: 0.95rem; /* Reduced from 1.05rem */
}

.linkedin-link {
    text-align: center;
    margin-top: 3rem;
}

/* ===== VALUES SECTION ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.value-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(201, 102, 60, 0.1), rgba(212, 165, 116, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    transform: scale(1.1) rotate(5deg);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
    transition: color 0.4s var(--transition-smooth);
}

.value-card:hover .value-icon svg {
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.value-card p {
    color: var(--muted-foreground);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #c9663c 0%, #d4a574 50%, #e07b4f 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.btn-cta {
    background: white;
    color: var(--accent);
    padding: 1.35rem 3rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .team-image {
        height: 500px;
    }

    .team-name {
        font-size: 1.75rem;
    }

    .team-content {
        padding: 2rem;
    }

    .team-bio {
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 9rem 0 5rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section {
        padding: 5rem 0;
    }

    .team-image {
        height: 400px;
    }

    .team-name {
        font-size: 1.5rem;
    }

    .team-content {
        padding: 1.5rem;
    }

    .team-bio {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .our-story-section {
        padding: 5rem 0;
    }

    .story-grid>div:first-child {
        display: none;
    }

    .story-content {
        text-align: center;
    }

    .story-overlay {
        background: rgba(254, 243, 231, 0.9) !important;
    }

    .value-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .team-image {
        height: 350px;
    }

    .team-name {
        font-size: 1.3rem;
    }

    .team-role {
        font-size: 0.9rem;
    }

    .team-content {
        padding: 1.25rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .story-text {
        font-size: 1rem;
    }

    .story-highlight {
        font-size: 1.1rem;
    }
}