
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    min-height: calc(100vh - 200px);
}


.hero-banner {
    background: linear-gradient(135deg, #8b5cf6, #2c545c, #2c545c);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 92, 246, 0.1);
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}


.who-we-are-section,
.our-mission-section,
.our-vision-section {
    padding: 80px 0;
    background-color: #fff;
}

.our-mission-section {
    background-color: #f8fafc;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #374151;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.section-content {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}


.mission-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-image {
    flex: 0 0 400px;
    text-align: center;
}

.chef-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chef-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission-text {
    flex: 1;
}

.mission-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
    text-align: left;
    margin: 0;
}


.hero-banner {
    user-select: none;
    animation: fadeInDown 0.8s ease-out;
}

.who-we-are-section,
.our-mission-section,
.our-vision-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.who-we-are-section {
    animation-delay: 0.2s;
}

.our-mission-section {
    animation-delay: 0.4s;
}

.our-vision-section {
    animation-delay: 0.6s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 1024px) {
    .mission-content {
        gap: 40px;
    }
    
    .mission-image {
        flex: 0 0 350px;
    }
    
    .chef-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .who-we-are-section,
    .our-mission-section,
    .our-vision-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .section-content {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .mission-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .mission-image {
        flex: none;
        max-width: 100%;
    }
    
    .chef-image {
        width: 100%;
        max-width: 350px;
        height: 300px;
    }
    
    .mission-text {
        flex: none;
    }
    
    .mission-text p {
        text-align: center;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-banner {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .who-we-are-section,
    .our-mission-section,
    .our-vision-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .section-content {
        font-size: 14px;
    }
    
    .mission-content {
        gap: 25px;
    }
    
    .chef-image {
        max-width: 280px;
        height: 250px;
        border-radius: 15px;
    }
    
    .mission-text p {
        font-size: 14px;
    }
}


.section-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}


.hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7, #c084fc, #8b5cf6);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}


.section-title {
    transition: color 0.3s ease;
}

.section-title:hover {
    color: #8b5cf6;
}


::selection {
    background-color: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}


html {
    scroll-behavior: smooth;
}


.loading {
    opacity: 0.6;
    pointer-events: none;
}


@media print {
    .hero-banner {
        background: #8b5cf6 !important;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
    
    .chef-image {
        box-shadow: none;
    }
}
