/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/image0.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 70px;
}

.about-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.about-hero-content p {
    font-size: 1.3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 300;
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background: #1a1a1a;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 30px;
}

.story-text p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

/* Our Values Section */
.our-values {
    padding: 80px 0;
    background: #000;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 40px 20px;
    background: #1a1a1a;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.value-item:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #000;
}

.value-item h3 {
    color: #ffd700;
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.value-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 80px 0;
    background: #1a1a1a;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    color: #ffd700;
    font-size: 22px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.member-role {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-info p:last-child {
    color: #ccc;
    line-height: 1.6;
    font-size: 14px;
}

/* Awards Section */
.awards {
    padding: 80px 0;
    background: #000;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.award-item {
    text-align: center;
    padding: 40px 20px;
    background: #1a1a1a;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.award-item:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.award-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.award-item h3 {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.award-item p {
    color: #ccc;
    font-size: 14px;
    font-weight: 600;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-content p {
        font-size: 1.1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .story-image img {
        height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 50vh;
    }
    
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero-content p {
        font-size: 1rem;
    }
    
    .story-text h2 {
        font-size: 1.8rem;
    }
    
    .story-text p {
        font-size: 14px;
    }
    
    .value-item,
    .team-member,
    .award-item {
        padding: 30px 15px;
    }
    
    .member-info h3 {
        font-size: 20px;
    }
    
    .award-item h3 {
        font-size: 18px;
    }
}
