
/* Block 1 */
.hero-banner {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
    color: white;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    color: white;
    background: linear-gradient(135deg, #ff8e53 0%, #ff6b35 100%);
}

.hero-cta-btn i {
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .hero-banner {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-btn {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-text {
        text-align: center;
    }
}

/* Block 2 */
.featured-dishes {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.featured-dishes::before {
    content: '';
    background-image: url('pattern-culinaire.svg');
    opacity: 0.03;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: 100px 100px;
    background-repeat: repeat;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    margin: 1rem auto 0;
    display: block;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.dish-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
}

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

.dish-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.dish-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.dish-card:hover .dish-img {
    transform: scale(1.05);
}

.dish-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.dish-content {
    padding: 1.5rem;
}

.dish-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.dish-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.dish-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
}

.dish-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
}

.dish-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.dish-tags span {
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-premium {
    background: #e74c3c;
    color: white;
}

.tag-seasonal {
    background: #27ae60;
    color: white;
}

.tag-fresh {
    background: #3498db;
    color: white;
}

.tag-local {
    background: #9b59b6;
    color: white;
}

.tag-artisanal {
    background: #e67e22;
    color: white;
}

.tag-tradition {
    background: #8b4513;
    color: white;
}

.cta-wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
}

.menu-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.2);
}

.menu-cta:hover {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

@media (max-width: 768px) {
    .featured-dishes {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .dishes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dish-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .dish-content {
        padding: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Block 3 */
.chef-experience {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    overflow: hidden;
}

.chef-content {
    padding-right: 2rem;
}

.chef-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #2c3e50;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.chef-badge i {
    font-size: 1.1rem;
}

.chef-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.chef-description {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.chef-achievements {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.achievement-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.achievement-text p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.3);
}

.btn-discover:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.4);
}

.chef-visual {
    position: relative;
    padding-left: 2rem;
}

.chef-image-container {
    position: relative;
    display: inline-block;
}

.chef-portrait {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.chef-decoration {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    position: relative;
    top: -100px;
    left: -30px;
    z-index: -1;
    opacity: 0.8;
}

.culinary-stats {
    display: flex;
    gap: 1rem;
    margin-top: -50px;
    padding-left: 1rem;
    flex-wrap: wrap;
}

.stat-card {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #5a6c7d;
    font-weight: 500;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .chef-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .chef-visual {
        padding-left: 0;
        text-align: center;
    }
    
    .chef-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .chef-experience {
        padding: 3rem 0;
    }
    
    .chef-title {
        font-size: 1.95rem;
    }
    
    .chef-achievements {
        gap: 1rem;
    }
    
    .achievement-item {
        padding: 1rem;
    }
    
    .culinary-stats {
        justify-content: center;
        margin-top: -30px;
    }
    
    .stat-card {
        min-width: 100px;
        padding: 1.25rem 0.75rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
}

/* Block 4 */
.order-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
    position: relative;
}

.form-title::after {
    content: '';
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    display: block;
    margin: 20px auto;
    border-radius: 2px;
}

.form-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.order-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 40px;
}

.form-visual-section {
    text-align: center;
    margin-bottom: 40px;
}

.takeaway-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
}

.order-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #28a745;
    font-weight: 500;
    font-size: 0.95rem;
}

.benefit-item i {
    font-size: 1.1rem;
}

.form-section {
    margin-bottom: 35px;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: #0d6efd;
    background: white;
    box-shadow: 0 0 0 3px rgba(13,110,253,0.1);
}

.form-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
}

.menu-selection {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.menu-item:hover {
    border-color: #0d6efd;
    background: white;
}

.item-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.menu-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.item-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 5px;
}

.item-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 5px;
}

.item-price {
    font-weight: 700;
    color: #0d6efd;
    font-size: 1.1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border: 2px solid #0d6efd;
    background: white;
    color: #0d6efd;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #0d6efd;
    color: white;
}

.qty-input {
    width: 60px;
    height: 35px;
    text-align: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-weight: 600;
}

.order-summary {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.total-row {
    padding-top: 15px;
    border-top: 2px solid rgba(255,255,255,0.3);
    margin-top: 15px;
    font-weight: 700;
    font-size: 1.3rem;
}

.form-actions {
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(40,167,69,0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(40,167,69,0.4);
}

.form-note {
    margin-top: 15px;
    color: #6c757d;
    font-size: 0.9rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .order-form-card {
        padding: 25px 20px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .item-info {
        flex-direction: column;
        text-align: center;
    }
    
    .order-benefits {
        gap: 20px;
    }
    
    .benefit-item {
        flex-direction: column;
        gap: 5px;
    }
}
