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

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

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

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

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

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

.hero-description {
    font-size: 1.25rem;
    color: #f8f9fa;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
    color: #ffffff;
}

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

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* Block 2 */
.seasonal-specialties {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.specialty-badge {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

.specialty-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.specialty-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.specialty-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #495057;
    font-weight: 500;
}

.feature-item i {
    background: linear-gradient(45deg, #007bff, #6610f2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 0.875rem;
}

.btn-specialty {
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.btn-specialty:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
    color: white;
}

.specialty-dishes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
    height: 500px;
}

.featured-dish {
    grid-row: span 2;
}

.dish-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dish-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

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

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

.dish-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.dish-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.featured-dish .dish-name {
    font-size: 1.5rem;
}

.dish-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffc107;
    margin: 0;
}

.chef-quote-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    position: relative;
}

.quote-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.chef-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8f9fa;
    flex-shrink: 0;
}

.chef-quote {
    margin: 0;
    flex-grow: 1;
}

.chef-quote p {
    font-size: 1.25rem;
    font-style: italic;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
}

.chef-quote p::before {
    content: '"';
    font-size: 4rem;
    color: #dee2e6;
    position: absolute;
    top: -1rem;
    left: -2rem;
    font-family: serif;
}

.chef-quote cite {
    color: #6c757d;
    font-weight: 600;
    font-style: normal;
}

@media (max-width: 768px) {
    .specialty-title {
        font-size: 2rem;
    }
    
    .specialty-dishes-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .featured-dish {
        grid-row: span 1;
    }
    
    .dish-card {
        height: 250px;
    }
    
    .quote-content {
        flex-direction: column;
        text-align: center;
    }
    
    .chef-avatar {
        width: 100px;
        height: 100px;
    }
    
    .chef-quote-section {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .specialty-features {
        margin-bottom: 2rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .feature-item i {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}

/* Block 3 */
.wine-experience {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
    overflow: hidden;
}

.wine-experience::before {
    content: '';
    background: url('wine-pattern.svg') repeat;
    opacity: 0.05;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1;
}

.wine-experience > .container {
    position: relative;
    z-index: 2;
}

.wine-badge {
    display: inline-block;
    background: linear-gradient(45deg, #722f37, #b73737);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.wine-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.wine-region-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    height: 100%;
}

.wine-region-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.wine-region-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wine-region-card:hover .wine-region-image {
    transform: scale(1.05);
}

.wine-region-content {
    padding: 1.5rem;
}

.wine-region-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.wine-region-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.wine-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #722f37;
    font-weight: 600;
}

.wine-count i {
    font-size: 1.125rem;
}

.wine-sommelier-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.sommelier-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.sommelier-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #722f37;
}

.sommelier-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.sommelier-title {
    color: #722f37;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sommelier-experience {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.875rem;
}

.services-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.service-item i {
    font-size: 1.25rem;
    color: #722f37;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-content h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.service-content p {
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

.featured-wines {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    height: 100%;
}

.featured-wines-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.wine-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.wine-card:hover {
    background: #f8f9fa;
    border-color: #722f37;
}

.wine-card.premium {
    background: linear-gradient(135deg, #fff5f5, #ffeaa7);
    border-color: #d4af37;
}

.wine-bottle-image {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.wine-name {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.wine-producer {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.wine-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.wine-rating i {
    font-size: 0.75rem;
    color: #ffc107;
}

.rating-score {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6c757d;
}

.wine-price {
    font-weight: 700;
    color: #722f37;
    margin: 0;
}

.wine-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-wine-list {
    display: inline-block;
    background: linear-gradient(45deg, #722f37, #b73737);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(114, 47, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-wine-list:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(114, 47, 55, 0.4);
    color: white;
}

@media (max-width: 992px) {
    .wine-section-title {
        font-size: 2rem;
    }
    
    .sommelier-info {
        flex-direction: column;
        text-align: center;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .wine-section-title {
        font-size: 1.75rem;
    }
    
    .wine-region-content, 
    .wine-sommelier-section, 
    .featured-wines {
        padding: 1.5rem;
    }
    
    .wine-card {
        flex-direction: column;
        text-align: center;
    }
    
    .wine-bottle-image {
        width: 50px;
        height: 70px;
    }
}

/* Block 4 */
.order-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.order-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.order-form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border: 1px solid #e9ecef;
}

.order-form {
    max-width: 100%;
}

.form-row {
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
    margin: 0;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    min-height: 52px;
}

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

.form-control::placeholder {
    color: #adb5bd;
    font-style: italic;
}

.form-group {
    position: relative;
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 3.5rem;
    color: #6c757d;
    font-size: 1.1rem;
    z-index: 2;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
}

.form-submit-section {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f8f9fa;
}

.btn-submit-order {
    background: linear-gradient(135deg, #0d6efd, #6c63ff);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
}

.btn-submit-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
}

.btn-submit-order:active {
    transform: translateY(0);
}

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

.delivery-info {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.delivery-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.delivery-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.delivery-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    object-fit: cover;
    border: 3px solid #e9ecef;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.feature-content p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .order-form-card {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .delivery-features {
        grid-template-columns: 1fr;
    }
    
    .delivery-feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .btn-submit-order {
        min-width: 100%;
        padding: 1rem 2rem;
    }
}

@media (max-width: 576px) {
    .order-form-section {
        padding: 2rem 0;
    }
    
    .order-form-header {
        margin-bottom: 2rem;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .delivery-info {
        padding: 1.5rem;
    }
}
