 /* Hero Section */
 .hero {
    position: relative;
    height: 80vh;
    background-image: url('../img/kithen-img/kithen-img-4.jpeg');
    background-size: cover;
    background-position: center;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .hero-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    max-width: 48rem;
  }

  .hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
  }



  .chef-hat {
    width: 48px;
    height: 48px;
  }

  /* Section Titles */
  .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    text-align: center;
    margin: 3rem 0;
  }

  /* Image Grid */
  .image-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }

  @media (min-width: 768px) {
    .image-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .image-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
  }

  .card:hover {
    transform: scale(1.02);
  }

  .card img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
  }

  .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  }

  .card-overlay h3 {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
  }

  /* Video Grid */
  .video-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }

  @media (min-width: 768px) {
    .video-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .video-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .video-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
  }

  .video-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  .video-thumbnail {
    position: relative;
  }

  .video-thumbnail img {
    width: 100%;
    /* height: 16rem; */
    object-fit: cover;
  }

  .play-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
  }

  .video-card:hover .play-overlay {
    background-color: rgba(0, 0, 0, 0.3);
  }

  .play-icon {
    color: #FA5B0F;
    opacity: 0.9;
    transition: transform 0.2s;
  }

  .video-card:hover .play-icon {
    transform: scale(1.1);
  }

  .duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
  }

  .video-info {
    padding: 1rem;
  }

  .video-info h3 {
    font-weight: 600;
    font-size: 1.125rem;
    color: #1f2937;
  }
