/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* Hero Section - About */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-hero .container {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    text-align: center;
}

.about-hero h1 {
    color: white;
}

.about-hero .hero-subtitle {
    color: white;
}

.about-hero .hero-description {
    color: white;
    background-color: hsla(356, 65%, 35%, 0.75);
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    display: inline-block;
    margin: 1rem auto;
    font-size: 0.95rem;
}

.about-hero .hero-year {
    display: inline;
    color: white;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-hero .hero-year.animate {
    opacity: 1;
}

.about-hero .hero-year .digit {
    display: inline-block;
    font-weight: 700;
}

.about-hero h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.about-hero .hero-subtitle::before,
.about-hero .hero-subtitle::after {
    content: '';
    flex: 1;
    height: 2px;
    max-width: 150px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
}

.about-hero .hero-subtitle::after {
    background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
}

.about-hero .hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background-color: hsla(356, 65%, 35%, 0.1);
    color: var(--primary);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-badge.light {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.section-badge i {
    font-size: 1rem;
}

/* Story Section */
.story-section {
    padding: 4rem 0;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-highlight {
    color: var(--primary);
    font-weight: 700;
}

.story-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.story-subtitle {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted-foreground);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Specialties Section */
.specialties-section {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.specialties-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.specialty-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.specialty-icon {
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.specialty-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: invert(23%) sepia(55%) saturate(1679%) hue-rotate(330deg) brightness(85%) contrast(92%);
}

.specialty-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.specialty-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.specialties-description {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--foreground);
}

/* Chef Section */
.chef-section {
    padding: 4rem 0;
    background-color: var(--secondary);
}

.chef-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 1rem;
    overflow: hidden;
}

.chef-visual {
    background: var(--primary);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

/* Fleur-de-lis background pattern */
.chef-visual::before {
    content: '⚜';
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 120px;
    opacity: 0.1;
    color: rgba(255, 255, 255, 0.2);
}

.chef-visual::after {
    content: '⚜';
    position: absolute;
    bottom: 50px;
    right: 50px;
    font-size: 150px;
    opacity: 0.1;
    color: rgba(255, 255, 255, 0.2);
}

.chef-avatar {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.chef-hat-icon {
    width: 90px;
    height: 90px;
    filter: brightness(0) invert(1);
}

.chef-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 60px;
    height: 60px;
    background: #F4C542;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--primary);
    z-index: 3;
}

.chef-badge i {
    font-size: 1.75rem;
    color: var(--primary);
}

.chef-name {
    font-family: var(--font-playfair);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.75rem;
    text-align: center;
    z-index: 2;
    position: relative;
}

.chef-title {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    text-align: center;
    z-index: 2;
    position: relative;
}

.chef-experience {
    background: rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 3rem;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    z-index: 2;
    position: relative;
}

.chef-experience-number {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.chef-experience-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin: 0.75rem 0 0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.chef-content {
    padding: 4rem 3rem;
    background: white;
}

.chef-content h2 {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.chef-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--foreground);
    margin-bottom: 2.5rem;
    text-align: justify;
}

.chef-achievements {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.achievement-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.achievement-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achievement-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.achievement-text h4 {
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.achievement-text p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Commitment Section */
.commitment-section {
    padding: 4rem 0;
    background: var(--secondary);
}

.commitment-section .container {
    background: linear-gradient(to bottom, hsla(356, 65%, 35%, 0.05), hsla(356, 65%, 35%, 0));
    border: 2px solid hsla(356, 65%, 35%, 0.5);
    border-radius: 1rem;
    padding: 3rem 2rem;
}

.commitment-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--muted-foreground);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.commitment-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.commitment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elegant);
    border-color: var(--primary);
}

.commitment-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: hsla(356, 65%, 35%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commitment-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.commitment-card h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.commitment-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: var(--background);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-card:hover .value-icon {
    transform: rotate(20deg);
}

.value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--primary);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.value-icon i {
    font-size: 3rem;
    color: white;
}

.value-card h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, hsl(356, 65%, 45%) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-features {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    text-align: center;
}

.cta-feature i {
    font-size: 1.5rem;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.cta-feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .chef-grid {
        grid-template-columns: 1fr;
    }
    
    .chef-visual {
        padding: 2rem;
        min-height: 350px;
    }
    
    .about-hero {
        min-height: 40vh;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .chef-content h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}
