/* About Page Specific Styles */
:root {
    --cream: #FAF3E0;
    --cream-dark: #F2E4C4;
    --terracotta: #C15A2A;
    --terracotta-light: #D97A4A;
    --terracotta-pale: #F2D5C0;
    --brown: #7A3B1E;
    --brown-light: #A0522D;
    --gold: #D4A843;
    --gold-light: #E8C56A;
    --dark: #2C1A0E;
    --text-body: #4A2E1A;
    --text-muted: #8B6045;
    --white: #FFFDF7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--white);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* About Hero Section */
.about-hero {
    min-height: 70vh;
    background-color: #3d2516;
    background-image: linear-gradient(135deg, rgba(44, 26, 14, 0.85), rgba(61, 42, 26, 0.75)), url('../photos/about-image.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-hero::before {
    content: none !important;
    display: none !important;
}

.about-hero-content {
    text-align: center;
    padding: 120px 20px 60px;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-title span {
    color: var(--gold);
}

.about-hero-subtitle {
    color: rgba(250, 243, 224, 0.85);
    font-size: 1.15rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--terracotta));
    margin: 0 auto;
    border-radius: 2px;
}

/* Story Section */
.story-section {
    padding: 100px 5%;
    background: var(--white);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image-wrapper {
    position: relative;
}

.story-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(44, 26, 14, 0.2);
}

.story-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--terracotta);
    border-radius: 20px;
    z-index: -1;
}

.story-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--terracotta);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(193, 90, 42, 0.4);
}

.story-badge-years {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.story-badge-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--terracotta);
}

.story-content p {
    color: var(--text-body);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-quote {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding: 25px 30px;
    border-left: 4px solid var(--terracotta);
    border-radius: 0 10px 10px 0;
    margin-top: 30px;
}

.story-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--brown);
    margin-bottom: 10px;
}

.story-quote cite {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Values Section */
.values-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.values-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.values-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.values-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(44, 26, 14, 0.08);
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(44, 26, 14, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--terracotta), var(--brown-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Chef Section */
.chef-section {
    padding: 100px 5%;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.chef-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(193, 90, 42, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.chef-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.chef-content {
    position: relative;
    z-index: 2;
}

.chef-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--cream);
    margin-bottom: 25px;
}

.chef-content h2 span {
    color: var(--terracotta);
}

.chef-content>p {
    color: rgba(250, 243, 224, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.chef-qualities {
    list-style: none;
}

.chef-qualities li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(250, 243, 224, 0.8);
    margin-bottom: 15px;
    font-size: 1rem;
}

.chef-qualities li svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
    flex-shrink: 0;
}

.chef-image-wrapper {
    position: relative;
}

.chef-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    max-width: 100%;
}

.chef-experience {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gold);
    color: var(--dark);
    padding: 25px 35px;
    border-radius: 15px;
    text-align: center;
}

.chef-experience-years {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.chef-experience-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 5%;
    background: var(--white);
}

.timeline-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.timeline-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.timeline-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--terracotta), var(--gold), var(--terracotta));
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-content {
    background: var(--cream);
    padding: 30px;
    border-radius: 15px;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 40px rgba(44, 26, 14, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 40px;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--terracotta);
    border: 4px solid var(--gold);
    border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -52px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -52px;
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Location Section */
.location-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #FDF8F0 0%, #F5EBE0 100%);
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.location-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.location-content strong {
    color: var(--terracotta);
}

.location-features {
    list-style: none;
    display: grid;
    gap: 15px;
}

.location-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: var(--text-body);
}

.location-features li i {
    width: 40px;
    height: 40px;
    background: var(--terracotta);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.location-image-wrapper {
    position: relative;
}

.location-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(44, 26, 14, 0.2);
}

.location-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--terracotta);
    color: white;
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(193, 90, 42, 0.4);
}

.location-badge i {
    font-size: 1.8rem;
}

.location-badge span {
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .location-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-image-wrapper {
        order: -1;
    }

    .location-badge {
        bottom: -15px;
        left: 15px;
    }
}

/* Upcoming Projects Section */
.upcoming-projects-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.upcoming-projects-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.upcoming-projects-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.upcoming-projects-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.upcoming-projects-container {
    max-width: 1400px;
    margin: 0 auto;
}

.upcoming-project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(44, 26, 14, 0.12);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    transition: all 0.4s ease;
}

.upcoming-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(44, 26, 14, 0.18);
}

.upcoming-project-image-wrapper {
    position: relative;
    overflow: hidden;
}

.upcoming-project-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.upcoming-project-card:hover .upcoming-project-image {
    transform: scale(1.05);
}

.upcoming-project-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--terracotta);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(193, 90, 42, 0.4);
}

.upcoming-project-badge i {
    font-size: 1.1rem;
}

.upcoming-project-content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.upcoming-project-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.upcoming-project-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--terracotta);
}

.upcoming-project-content p {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.upcoming-project-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.upcoming-project-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: var(--text-body);
}

.upcoming-project-features li i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--terracotta), var(--brown-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 5%;
    background-image: linear-gradient(135deg, rgba(44, 26, 14, 0.85) 0%, rgba(61, 42, 26, 0.75) 50%, rgba(122, 59, 30, 0.85) 100%), url('https://lh3.googleusercontent.com/gg-dl/AOI_d__SVcN43pyapGMjkDUJBnUt6xBJqInEckN_hj19Kp63s0JfiQSTwZAEMWVSNA44vVfHPirYLAYFBKDC4HzTRzrFgnu_fK9bJue7O-oJKeqRvoOVpzQTjjvDBrMTiYig3akcxJSoMjMeQvgdN55UddMFofM6BHbuObpnF6bIQSWOQxBc=s1024-rj');
    background-size: cover;
    background-position: center;
    padding: 100px 8% 80px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: var(--white);
    color: var(--terracotta);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-btn-secondary:hover {
    background: var(--white);
    color: var(--terracotta);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 3rem;
    }

    .story-container {
        gap: 50px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chef-container {
        gap: 50px;
    }

    .upcoming-project-card {
        grid-template-columns: 1fr;
    }

    .upcoming-project-image-wrapper {
        height: 300px;
    }

    .upcoming-project-content {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 60vh;
    }

    .about-hero-content {
        padding: 100px 20px 40px;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .story-image-wrapper {
        order: 1;
    }

    .story-content {
        order: 2;
        text-align: center;
    }

    .story-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .story-quote {
        border-left: none;
        border-top: 4px solid var(--terracotta);
        border-radius: 0 0 10px 10px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .chef-container {
        grid-template-columns: 1fr;
    }

    .chef-content {
        text-align: center;
    }

    .chef-qualities {
        text-align: left;
    }

    .chef-image-wrapper {
        order: -1;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0;
    }

    .timeline-dot,
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
        right: auto;
    }

    .upcoming-projects-header h2 {
        font-size: 2.2rem;
    }

    .upcoming-project-content {
        padding: 30px 25px;
    }

    .upcoming-project-content h3 {
        font-size: 1.6rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .story-content h2,
    .values-header h2,
    .chef-content h2,
    .timeline-header h2,
    .upcoming-projects-header h2 {
        font-size: 2rem;
    }

    .story-image {
        height: 350px;
    }

    .story-badge {
        bottom: -20px;
        right: -10px;
        padding: 15px 20px;
    }

    .story-badge-years {
        font-size: 2rem;
    }

    .chef-image {
        height: 400px;
    }

    .chef-experience {
        left: 10px;
        bottom: -15px;
        padding: 15px 20px;
    }

    .upcoming-project-image-wrapper {
        height: 250px;
    }

    .upcoming-project-content {
        padding: 25px 20px;
    }

    .upcoming-project-content h3 {
        font-size: 1.4rem;
    }

    .upcoming-project-content p {
        font-size: 1rem;
    }

    .upcoming-project-features li {
        font-size: 0.9rem;
    }

    .upcoming-project-features li i {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
}