/* About Page Styles with Real Images */
.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.brand-story {
    background: var(--white);
}

.brand-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.brand-story__content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.brand-story__content p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.mission-vision {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.mission, .vision {
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.mission h3, .vision h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Story Image Styling */
.story-image {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-image:hover .story-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(93, 63, 211, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overlay-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Founder Section */
.founder-section {
    background: var(--light-gray);
}

.founder__profile {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Founder Image Styling */
.founder-image-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.founder-image-container:hover .founder-img {
    transform: scale(1.02);
}

.founder-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.founder-image-container:hover .founder-image-overlay {
    transform: translateY(0);
}

.founder-image-overlay h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.founder-image-overlay p {
    opacity: 0.9;
    font-size: 0.9rem;
}

.founder__details h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.founder__title {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.founder__bio p {
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.8;
}

.founder__credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.credentials__item h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    margin-bottom: 1rem;
}

.credentials__item ul {
    list-style: none;
}

.credentials__item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    color: var(--gray);
}

.credentials__item li:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.founder__philosophy {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: var(--shadow);
}

.founder__philosophy h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    margin-bottom: 1rem;
}

.founder__philosophy p {
    color: var(--dark);
    font-style: italic;
    line-height: 1.6;
}

.founder__contact {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.founder__contact h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    margin-bottom: 1rem;
}

.founder-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.founder-social .social-link {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.founder-social .social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Team Section */
.team-section {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(93, 63, 211, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-info p {
    color: var(--gray);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    background: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .brand-story__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder__profile {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder__credentials {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .founder-image-container {
        height: 400px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .brand-story__content h2 {
        font-size: 2rem;
    }
    
    .founder__details h3 {
        font-size: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .story-image,
    .founder-image-container {
        height: 300px;
    }
}