/* project.css - Seoul Food Korean Food Ordering Website */

/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #e94f37; /* Warm red-orange for Korean cuisine */
    --secondary-color: #393e46; /* Dark gray-blue */
    --accent-color: #f9c784; /* Warm gold */
    --dark-color: #222831; /* Almost black */
    --light-color: #f5f5f5; /* Off-white */
    --border-radius: 8px;
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 2rem 0;
}

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

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: #d13a25;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #2d3239;
}

/* ===== HEADER STYLES ===== */
header {
    background-color: white;
    box-shadow: var(--box-shadow);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    text-align: center;
    margin-bottom: 1rem;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo p {
    color: var(--secondary-color);
    font-style: italic;
}

nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav li {
    margin: 0 1rem;
}

nav a {
    color: var(--dark-color);
    font-weight: bold;
    padding: 0.5rem 0;
    position: relative;
}

nav a:hover, nav a.active {
    color: var(--primary-color);
}

nav a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

/* ===== HERO SECTION ===== */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1498654896293-37aacf113fd9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 1rem;
    margin-bottom: 2rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* ===== FEATURED DISHES ===== */
.featured {
    padding: 3rem 1rem;
    text-align: center;
}

.featured h2 {
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.featured h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.featured-dishes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dish {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.dish:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.dish-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 1;
}

.dish-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.dish-content {
    padding: 1.5rem;
}

.dish-content h3 {
    margin: 0 0 0.5rem;
    color: var(--dark-color);
}

.dish-content p {
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
}

.dish-content .btn-small {
    display: inline-block;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    background: white;
    color: var(--secondary-color);
    padding: 5rem 1rem;
    text-align: center;
    position: relative;
}

.how-it-works::before {
    content: none;
}

.how-it-works h2, .how-it-works .steps {
    position: relative;
    z-index: 1;
}

.how-it-works h2 {
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: var(--dark-color);
}

.how-it-works h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.step {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(233, 79, 55, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e0522b 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(233, 79, 55, 0.2);
}

/* ===== MENU PAGE STYLES ===== */
.menu-intro {
    text-align: center;
    padding: 3rem 1rem;
}

.menu-intro h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

.menu-intro h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.menu-categories {
    padding: 1rem 1rem 4rem;
}

.menu-categories h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--dark-color);
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.menu-categories h2:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dish-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.dish-spice {
    padding: 0.3rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 50px;
    font-weight: 600;
}

.dish-spice:contains("Spicy") {
    color: var(--primary-color);
}

.dish-price {
    font-weight: bold;
    color: var(--dark-color);
    font-size: 1.1rem;
}

/* ===== ORDER PAGE STYLES ===== */
.order-intro {
    text-align: center;
    padding: 2rem 1rem;
}

.order-intro h2 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.order-intro h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.order-intro p {
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.order-intro .btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.order-intro .btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.order-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 3rem;
}

.order-summary, .order-form {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.order-summary h3, .order-form h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.order-summary h3:after, .order-form h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -6px;
    left: 0;
}

.order-summary h3 i, .order-form h3 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

#order-items {
    margin: 1rem 0;
    max-height: 300px;
    overflow-y: auto;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.order-item:last-child {
    border-bottom: 2px solid #eee;
}

.order-item-details {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.order-item-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.order-item-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.order-item-quantity {
    color: #666;
    font-size: 0.8rem;
}

.order-item-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.order-item-price {
    font-weight: bold;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.order-item-remove {
    background: none;
    border: none;
    color: #999;
    font-size: 0.9rem;
    cursor: pointer;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.order-item-remove:hover {
    background-color: rgba(233, 79, 55, 0.1);
    color: var(--primary-color);
}

.order-subtotal {
    margin: 1rem 0;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.subtotal-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.subtotal-row.discount {
    color: #2ecc71;
    font-weight: 600;
}

.order-total {
    margin-top: 1rem;
    font-weight: bold;
    color: var(--dark-color);
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.promo-code {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.promo-code input {
    flex: 1;
    padding: 0.5rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.promo-code .btn-small {
    background-color: var(--secondary-color);
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
}

.promo-code .btn-small:hover {
    background-color: var(--dark-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.2rem;
}

label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

input, select, textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
}

.payment-options {
    margin: 1.2rem 0;
}

.payment-options h4 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.8rem;
}

.payment-method {
    background-color: #f8f9fa;
    padding: 0.8rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-method:hover {
    background-color: #f1f1f1;
}

.payment-method input[type="radio"] {
    margin-right: 0.4rem;
}

.payment-method label {
    cursor: pointer;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.payment-method i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
}

.form-buttons .btn i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .order-item-image {
        width: 50px;
        height: 50px;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .order-item-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .order-item-image {
        width: 40px;
        height: 40px;
    }
    
    .promo-code {
        flex-direction: column;
    }
    
    .form-buttons {
        flex-direction: column;
    }
}

/* ===== ABOUT PAGE STYLES ===== */
.about-intro {
    text-align: center;
    padding: 3rem 1rem;
}

.about-intro h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

.about-intro h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-image img {
    content: url('https://images.unsplash.com/photo-1498654896293-37aacf113fd9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    object-fit: cover;
    height: 100%;
    max-height: 500px;
}

.about-video {
    text-align: center;
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.4;
    z-index: 0;
}

.about-video h2, .about-video p {
    position: relative;
    z-index: 1;
}

.about-video h2 {
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.about-video h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2.5rem auto 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.about-values {
    padding: 4rem 1rem;
    text-align: center;
}

.about-values h2 {
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.about-values h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.value-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.team {
    padding: 4rem 1rem;
    text-align: center;
    background-color: #f8f9fa;
    background-image: url('https://www.transparenttextures.com/patterns/light-paper-fibers.png');
}

.team h2 {
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.team h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    height: 300px;
    object-fit: cover;
    width: 100%;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.team-member-info {
    padding: 1.5rem;
}

.team-member h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.team-member p {
    color: var(--secondary-color);
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-intro {
    text-align: center;
    padding: 3rem 1rem;
}

.contact-intro h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

.contact-intro h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 5rem;
}

.contact-form, .contact-info {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form h3, .contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.contact-form h3:after, .contact-info h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
}

.info-item {
    display: flex;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}

.info-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.info-content h4 {
    margin-bottom: 0.3rem;
    color: var(--secondary-color);
}

.social-media {
    margin-top: 2rem;
}

.social-media h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    color: var(--secondary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== THANK YOU PAGE STYLES ===== */
.thank-you {
    text-align: center;
    padding: 4rem 1rem;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.thank-you h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-size: 2.2rem;
}

.confirmation-message {
    margin-bottom: 2.5rem;
    color: var(--secondary-color);
}

.order-details {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    text-align: left;
}

.order-details h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.order-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.order-detail-item:last-child {
    border-bottom: none;
}

.thank-you-animation {
    margin: 2.5rem 0;
}

.next-steps {
    margin-top: 3rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.next-steps h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.next-steps ul {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.next-steps li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.next-steps li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===== REFLECTION PAGE STYLES ===== */
.reflection-intro {
    text-align: center;
    padding: 3rem 1rem;
}

.reflection-intro h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

.reflection-intro h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.challenges, .skills-gained, .future-improvements {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.challenges {
    background-color: #f8f9fa;
}

.challenges h2, .skills-gained h2, .future-improvements h2 {
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.challenges h2:after, .skills-gained h2:after, .future-improvements h2:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
}

.challenge-card, .improvement-card {
    background-color: white;
    padding: 1.8rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 1.8rem;
}

.challenge-card h3, .improvement-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
}

.skill-item {
    background-color: white;
    padding: 1.8rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.skill-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* ===== FOOTER STYLES ===== */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 1rem 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.footer-links h3, .footer-contact h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.footer-links h3:after, .footer-contact h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .order-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 0;
    }
    
    .logo h1 {
        font-size: 2.2rem;
    }
    
    .hero {
        padding: 5rem 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .featured h2, 
    .how-it-works h2,
    .about-intro h2,
    .menu-intro h2,
    .order-intro h2,
    .contact-intro h2,
    .reflection-intro h2 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    th, td {
        padding: 0.8rem;
    }
    
    table, thead, tbody, th, td, tr {
        display: block;
    }
    
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    tr {
        margin-bottom: 1.5rem;
        border: 1px solid #eee;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
    }
    
    td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        text-align: right;
    }
    
    td:last-child {
        border-bottom: none;
    }
    
    td:before {
        position: absolute;
        top: 0.8rem;
        left: 0.8rem;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: 600;
        text-align: left;
        color: var(--secondary-color);
    }
    
    /* Label the data for mobile view */
    td:nth-of-type(1):before { content: "Dish"; }
    td:nth-of-type(2):before { content: "Description"; }
    td:nth-of-type(3):before { content: "Spice Level"; }
    td:nth-of-type(4):before { content: "Price"; }
    td:nth-of-type(5):before { content: "Action"; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav li {
        margin: 0.5rem 0;
    }
    
    .hero {
        padding: 4rem 1rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .featured, .how-it-works, .about-values, .team {
        padding: 3rem 1rem;
    }
    
    .featured-dishes, .steps, .values-container, .team-members {
        gap: 1.5rem;
    }
    
    .thank-you-content, .contact-form, .contact-info, .order-form, .order-summary {
        padding: 1.5rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero, .featured-dishes, .steps, .values-container, .team-members {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Background patterns for sections */
.team {
    padding: 4rem 1rem;
    text-align: center;
    background-color: #f8f9fa;
    background-image: url('https://www.transparenttextures.com/patterns/light-paper-fibers.png');
}

/* ===== DISH IMAGES ===== */
/* Sample fallback images for dish cards - replacing with actual dish URLs */
.dish:nth-child(1) .dish-image {
    background-image: url('https://assets.bonappetit.com/photos/624f3dc73a6e981591892a9d/1:1/w_2800,h_2800,c_limit/0407-bibimbap-at-home-lede.jpg');
}

.dish:nth-child(2) .dish-image {
    background-image: url('https://cdn.apartmenttherapy.info/image/upload/f_jpg,q_auto:eco,c_fill,g_auto,w_1500,ar_1:1/k%2FPhoto%2FRecipes%2F2023-10-galbi%2Fgalbi-216');
}

.dish:nth-child(3) .dish-image {
    background-image: url('https://takestwoeggs.com/wp-content/uploads/2024/03/Kimchi-Jjigae-Kimchi-Stew-Takestwoeggs-3.jpg');
}

/* Add this new class for dish images */
.dish-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

/* Team member images */
.team-member img {
    height: 300px;
    object-fit: cover;
    width: 100%;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(249, 199, 132, 0.2);
}

input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
} 