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

.hero-background {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  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) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

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

.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);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, #d4af37, #f4d03f);
  color: #2c3e50;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  border: 2px solid transparent;
}

.hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  color: #2c3e50;
  background: linear-gradient(45deg, #f4d03f, #d4af37);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-cta-button:active {
  transform: translateY(-1px);
}

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .hero-cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-description {
    font-size: 1.375rem;
  }
}

/* Block 2 */
.chef-specialties {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #fff5f3 100%);
}

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

.specialty-badge {
  display: inline-block;
  background: linear-gradient(45deg, #d4af37, #f4e99b);
  color: #2c3e50;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.specialty-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #34495e;
}

.feature-icon {
  color: #d4af37;
  font-size: 1.1rem;
  width: 20px;
}

.specialty-gallery {
  position: relative;
}

.gallery-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  margin-bottom: 1.5rem;
}

.gallery-primary {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-primary:hover {
  transform: scale(1.05);
}

.gallery-thumbnails {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.thumbnail-item {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail-item.active {
  border-color: #d4af37;
}

.thumbnail-item:hover {
  transform: translateY(-3px);
}

.thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specialty-dishes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.dish-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #f0f4f8;
}

.dish-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.dish-number {
  position: absolute;
  top: -15px;
  left: 2rem;
  background: linear-gradient(45deg, #d4af37, #f4e99b);
  color: #2c3e50;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.dish-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.8rem;
  margin-top: 1rem;
}

.dish-description {
  color: #5a6c7d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

@media (max-width: 768px) {
  .chef-specialties {
    padding: 60px 0;
  }
  
  .specialty-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .specialty-title {
    font-size: 2rem;
  }
  
  .gallery-primary {
    height: 250px;
  }
  
  .specialty-dishes {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .dish-card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .specialty-features {
    margin-top: 1.5rem;
  }
  
  .feature-item {
    font-size: 0.9rem;
  }
  
  .gallery-thumbnails {
    gap: 10px;
  }
  
  .thumbnail-item {
    width: 60px;
    height: 60px;
  }
}

/* Block 3 */
.wine-cellar-experience {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      overflow: hidden;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-badge {
      display: inline-block;
      background: linear-gradient(135deg, #8B0000, #DC143C);
      color: white;
      padding: 8px 20px;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .section-title {
      font-size: 2.8rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 20px;
      line-height: 1.2;
    }

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

    .wine-showcase {
      position: relative;
    }

    .wine-main-display {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .wine-hero-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .wine-main-display:hover .wine-hero-image {
      transform: scale(1.05);
    }

    .wine-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.8));
      padding: 40px 30px 30px;
    }

    .wine-stats {
      display: flex;
      justify-content: space-around;
    }

    .stat-item {
      text-align: center;
      color: white;
    }

    .stat-number {
      display: block;
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .stat-label {
      font-size: 0.9rem;
      opacity: 0.9;
    }

    .sommelier-profile {
      padding-left: 40px;
    }

    .sommelier-photo {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      border: 5px solid white;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      margin-bottom: 25px;
    }

    .sommelier-name {
      font-size: 1.6rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 8px;
    }

    .sommelier-title {
      color: #8B0000;
      font-weight: 600;
      margin-bottom: 20px;
      font-size: 1.1rem;
    }

    .sommelier-description {
      color: #6c757d;
      line-height: 1.7;
      margin-bottom: 25px;
    }

    .credential-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #f8f9fa;
      padding: 12px 18px;
      border-radius: 10px;
      border-left: 4px solid #8B0000;
    }

    .credential-badge i {
      color: #8B0000;
    }

    .wine-regions-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: repeat(2, 1fr);
      gap: 25px;
      margin-top: 40px;
    }

    .region-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: all 0.4s ease;
    }

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

    .region-card.featured {
      grid-row: span 2;
    }

    .region-visual {
      position: relative;
      height: 200px;
    }

    .featured .region-visual {
      height: 300px;
    }

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

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

    .region-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(139,0,0,0.9);
      color: white;
      padding: 6px 15px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
    }

    .region-content {
      padding: 25px;
    }

    .region-title {
      font-size: 1.4rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 15px;
    }

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

    .region-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .highlight-item {
      background: #f8f9fa;
      color: #495057;
      padding: 4px 12px;
      border-radius: 15px;
      font-size: 0.8rem;
      font-weight: 500;
    }

    .region-price {
      color: #8B0000;
      font-weight: 700;
      font-size: 1.1rem;
    }

    .wine-experience-cta {
      background: linear-gradient(135deg, #8B0000, #DC143C);
      border-radius: 20px;
      overflow: hidden;
      color: white;
      display: grid;
      grid-template-columns: 2fr 1fr;
      align-items: center;
      box-shadow: 0 15px 35px rgba(139,0,0,0.3);
    }

    .cta-content {
      padding: 50px;
    }

    .cta-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .cta-description {
      margin-bottom: 30px;
      opacity: 0.9;
      line-height: 1.6;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: white;
      color: #8B0000;
      text-decoration: none;
      padding: 15px 30px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.3);
      color: #8B0000;
      text-decoration: none;
    }

    .cta-visual {
      height: 100%;
    }

    .cta-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    @media (max-width: 1200px) {
      .wine-regions-grid {
        grid-template-columns: 1fr 1fr;
      }
      
      .region-card.featured {
        grid-row: span 1;
      }
    }

    @media (max-width: 992px) {
      .sommelier-profile {
        padding-left: 0;
        margin-top: 40px;
      }
      
      .wine-experience-cta {
        grid-template-columns: 1fr;
      }
      
      .cta-visual {
        height: 250px;
      }
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 2.2rem;
      }
      
      .wine-regions-grid {
        grid-template-columns: 1fr;
      }
      
      .wine-stats {
        flex-direction: column;
        gap: 20px;
      }
      
      .cta-content {
        padding: 30px;
      }
      
      .cta-title {
        font-size: 1.6rem;
      }
    }

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

.order-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
}

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

.form-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #f4e19c 100%);
  color: #2c2c2c;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

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

.order-form-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.form-visual {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.consultation-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 30px;
}

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  font-weight: 500;
}

.benefit-icon {
  background: rgba(255,255,255,0.2);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.form-content {
  padding: 40px;
}

.custom-order-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-weight: 600;
  color: #2c2c2c;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.form-input, .form-select, .form-textarea {
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: #d4af37;
  background: white;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
}

.form-actions {
  margin-top: 20px;
  text-align: center;
}

.submit-button {
  background: linear-gradient(135deg, #d4af37 0%, #f4e19c 100%);
  color: #2c2c2c;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212,175,55,0.3);
  margin-bottom: 15px;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212,175,55,0.4);
}

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

.form-note {
  color: #666;
  font-size: 14px;
  font-style: italic;
  margin: 0;
}

@media (max-width: 992px) {
  .order-form-container {
    grid-template-columns: 1fr;
  }
  
  .form-visual {
    order: 2;
    padding: 30px;
  }
  
  .consultation-image {
    height: 200px;
    margin-bottom: 20px;
  }
  
  .form-benefits {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .benefit-item {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .order-form-section {
    padding: 60px 0;
  }
  
  .form-title {
    font-size: 2rem;
  }
  
  .form-content {
    padding: 30px 20px;
  }
  
  .form-visual {
    padding: 30px 20px;
  }
  
  .benefit-item {
    min-width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .form-title {
    font-size: 1.75rem;
  }
  
  .submit-button {
    width: 100%;
    justify-content: center;
  }
}
