/* About Page Specific Styles */
.about-hero {
    padding: 90px 5% 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 17px;
}

/* Stats Styling */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    padding-top: 40px;
}

.stat-item h3 {
    font-size: 32px;
    color: var(--gold);
    font-family: 'Playfair Display';
}

.stat-item p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* Founder Card Styling */
.founder-card {
    background: white;
    padding: 30px;
    border-radius: 40px 10px 40px 10px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.founder-img-wrapper {
    width: 100%;
    height: 350px;
    border-radius: 30px 5px 30px 5px;
    overflow: hidden;
    margin-bottom: 25px;
}

.founder-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: 0.5s;
}

.founder-card:hover .founder-img-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.founder-info h3 {
    font-family: 'Playfair Display';
    font-size: 26px;
    margin-bottom: 5px;
}

.founder-tag {
    color: var(--gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.founder-info p {
    font-style: italic;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.founder-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.founder-social a {
    color: var(--dark);
    font-size: 18px;
    transition: 0.3s;
}

.founder-social a:hover {
    color: var(--gold);
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .about-content h1 {
        font-size: 40px;
    }

    .stats-grid {
        justify-content: center;
    }

    .founder-social {
        justify-content: center;
    }
}

.stat-number {
    display: inline-block;
    min-width: 1.2em; /* Prevents the text from jumping as digits increase */
    font-variant-numeric: tabular-nums; /* Keeps numbers aligned */
    transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
    color: var(--dark); /* Subtle interaction on hover */
}