/* Additional CSS for about page */
.section-about {
    padding: 100px 0;
}

.section-about:nth-child(even) {
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 15px;
    display: inline-block;
}

.section-title {
    font-size: 42px;
    color: var(--color-darker);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-primary);
}

.section-description {
    font-size: 18px;
    color: var(--color-medium-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Story Section */
.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    position: relative;
    height: 500px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--color-primary);
    border-radius: 10px;
    z-index: -1;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-medium-dark);
}

.story-signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 28px;
    color: var(--color-primary);
    margin-top: 20px;
}

/* Timeline Section Styles */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), rgba(230, 57, 70, 0.3));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    position: relative;
    width: calc(50% - 60px);
    padding: 40px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-date {
    position: absolute;
    top: -30px;
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--color-primary), #ff6b6b);
    color: white;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    font-size: 16px;
    letter-spacing: 1px;
}

.timeline-item:nth-child(odd) .timeline-date {
    left: -60px;
}

.timeline-item:nth-child(even) .timeline-date {
    right: -60px;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, var(--color-primary), #ff6b6b);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 6px rgba(230, 57, 70, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 0 0 8px rgba(230, 57, 70, 0.3);
}

.timeline-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--color-darker);
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}

.timeline-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--color-primary), transparent);
}

.timeline-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-medium-dark);
}

/* Team Section Styles */
.team-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fff, #f9f9f9);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.team-card:hover .team-overlay {
    padding-bottom: 50px;
}

.team-name {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.team-position {
    font-size: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
    margin-bottom: 20px;
}

.team-card:hover .team-name,
.team-card:hover .team-position,
.team-card:hover .team-bio {
    opacity: 1;
    transform: translateY(0);
}

.team-social {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.3s;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.team-social a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.team-featured::before {
    content: 'Head Chef';
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(45deg, var(--color-primary), #ff6b6b);
    color: white;
    padding: 8px 40px;
    font-size: 14px;
    font-weight: 500;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

/* Philosophy Section Styles */
.philosophy-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1470119693884-47d3a1d1f180?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
}

.philosophy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.philosophy-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-medium-dark);
    position: relative;
    padding-left: 30px;
    border-left: 3px solid var(--color-primary);
}

.philosophy-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 28px;
    line-height: 1.6;
    color: var(--color-primary);
    padding: 40px;
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.philosophy-quote:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.philosophy-quote::before,
.philosophy-quote::after {
    content: '"';
    font-size: 80px;
    position: absolute;
    opacity: 0.1;
    font-family: Georgia, serif;
    color: var(--color-primary);
}

.philosophy-quote::before {
    top: 0;
    left: 20px;
}

.philosophy-quote::after {
    bottom: -20px;
    right: 20px;
    transform: rotate(180deg);
}

.philosophy-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 14px;
    color: var(--color-medium-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 600px;
}

.philosophy-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.philosophy-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.philosophy-gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.philosophy-gallery-item:hover::after {
    opacity: 1;
}

.philosophy-gallery-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.philosophy-gallery-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.philosophy-gallery-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

/* Responsive Philosophy Section */
@media (max-width: 1200px) {
    .philosophy-container {
        gap: 60px;
    }

    .philosophy-quote {
        font-size: 24px;
        padding: 30px;
    }

    .philosophy-gallery {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .philosophy-gallery {
        height: 400px;
    }

    .philosophy-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .story-container {
        display: block;
    }

    .philosophy-section {
        padding: 80px 0;
    }

    .philosophy-text {
        font-size: 16px;
        padding-left: 20px;
    }

    .philosophy-quote {
        font-size: 22px;
        padding: 25px;
    }

    .philosophy-gallery {
        height: 350px;
    }

    .stat-number {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .philosophy-gallery {
        height: 300px;
    }

    .philosophy-quote {
        font-size: 20px;
        padding: 20px;
    }
}

/* Awards Section Styles */
.awards-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.02;
    z-index: 0;
}

.awards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.award-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.award-header {
    background: linear-gradient(45deg, var(--color-primary), #ff6b6b);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.award-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.award-card:hover .award-header::before {
    transform: translateX(100%);
}

.award-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 1;
}

.award-year {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.award-body {
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(230, 57, 70, 0.1), rgba(255, 107, 107, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--color-primary);
    font-size: 32px;
    transition: all 0.4s ease;
}

.award-card:hover .award-icon {
    transform: scale(1.1);
    background: linear-gradient(45deg, rgba(230, 57, 70, 0.15), rgba(255, 107, 107, 0.15));
}

.award-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-medium-dark);
    margin-bottom: 25px;
}

.award-presenter {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-primary);
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.award-presenter::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--color-primary);
}

/* Responsive Awards Section */
@media (max-width: 1200px) {
    .awards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .awards-section {
        padding: 80px 0;
    }

    .awards-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .award-title {
        font-size: 22px;
    }

    .award-body {
        padding: 30px 20px;
    }

    .award-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .award-header {
        padding: 25px;
    }

    .award-title {
        font-size: 20px;
    }

    .award-year {
        font-size: 14px;
    }

    .award-description {
        font-size: 15px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }

    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        left: 0 !important;
        right: auto;
        top: -5rem;
    }

    .timeline-dot {
        left: 30px;
    }
}

@media (max-width: 576px) {
    .timeline-content {
        padding: 30px;
    }

    .timeline-title {
        font-size: 20px;
    }

    .timeline-text {
        font-size: 15px;
    }

    .timeline-date {
        width: 100px;
        height: 35px;
        font-size: 14px;
    }
}

/* Responsive Team Section */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 350px;
    }

    .team-name {
        font-size: 24px;
    }

    .timeline-date {
        left: 10px !important;
    }
}

@media (max-width: 576px) {
    .team-image {
        height: 300px;
    }

    .team-overlay {
        padding: 30px 20px;
    }

    .team-name {
        font-size: 22px;
    }

    .team-position {
        font-size: 14px;
    }

    .team-bio {
        font-size: 14px;
    }
}