/* About Page Hero - Consistent with Home */
.about-bg {
    background: url('assets/Hero Section/various-spices-bowls.jpg') center/cover !important;
}

/* Location Section with Real Map */
.location {
    padding: 5rem 0;
    background: var(--warm-ivory);
}

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

.location__details h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location__details p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.location__contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--secondary-color);
}

.location__contact p {
    margin-bottom: 1rem;
}

.location__contact strong {
    color: var(--primary-color);
}

.location__contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location__contact a:hover {
    color: var(--secondary-color);
}

.location__hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.location__hours h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location__map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 450px;
}

.location__map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.location__map:hover .map-overlay {
    transform: translateY(0);
}

.map-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.map-info p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.map-link {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--charcoal-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.map-link:hover {
    background: #e6bd00;
    transform: translateY(-2px);
}

/* Founder Story Section */
.founder-story {
    padding: 5rem 0;
    background: var(--warm-ivory);
}

.founder-story__content {
    max-width: 900px;
    margin: 0 auto;
}

.story-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
    text-align: justify;
}

.story-paragraph:first-of-type::first-letter {
    font-size: 4rem;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-color);
    float: left;
    line-height: 1;
    margin: 0.1rem 0.5rem 0 0;
}

/* Team Section - Fixed Image Display */
.team {
    padding: 5rem 0;
    background: var(--soft-sand);
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.team-card__image {
    height: 350px;
    overflow: hidden;
    position: relative;
    background: var(--warm-ivory);
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: var(--transition);
    padding: 1rem;
}

.team-card:hover .team-card__image img {
    transform: scale(1.02);
}

.team-card__content {
    padding: 2rem;
}

.team-card__name {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-card__title {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card__description {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background: var(--primary-color);
    color: white;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card__number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
}

.stat-card__label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card__description {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Location Section */
.location {
    padding: 5rem 0;
    background: var(--warm-ivory);
}

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

.location__details h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location__details p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.location__contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--secondary-color);
}

.location__contact p {
    margin-bottom: 1rem;
}

.location__contact strong {
    color: var(--primary-color);
}

.location__map {
    background: var(--soft-sand);
    border-radius: 20px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    text-align: center;
    color: var(--primary-color);
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Spice Gallery */
.spice-gallery {
    padding: 5rem 0;
    background: var(--soft-sand);
}

.spice-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-item__overlay {
    transform: translateY(0);
}

.gallery-item__overlay h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero__title {
        font-size: 2.5rem;
    }
    
    .about-hero__subtitle {
        font-size: 1.1rem;
    }
    
    .team__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-card {
        min-width: auto;
    }
    
    .stats__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .spice-gallery__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .story-paragraph:first-of-type::first-letter {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 50vh;
    }
    
    .about-hero__title {
        font-size: 2rem;
    }
    
    .team-card__content {
        padding: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-card__number {
        font-size: 2.5rem;
    }
}