.story-section {
  padding: 100px 0px;
}

.story-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
}

.text-column {
  flex: 1;
  min-width: 300px;
}

.section-subtitle {
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 20px;
  font-family: var(--font-heading);
  margin: 0;
}

.story-title {
  font-family: var(--font-condensed);
  font-size: 54px;
  font-weight: 300;
  margin: 0;
}

.story-divider {
  width: 100px;
  height: 2px;
  background-color: var(--color-accent);
}

.story-description {
  font-family: var(--font-primary);
  color: #E8E9E9;
  font-size: 18px;
  font-weight: 300;
  max-width: 600px;
}

.opening-hours {
    display: flex;
    flex-direction: column;
    padding: 18px 27px;
    border: 1px solid var(--color-accent);
    max-width: 600px;
}

.opening-hours-title {
    font-size: 38px;
    font-family: var(--font-condensed);
    margin: 0;
    margin-bottom: 18px;
}

.opening-hours-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.opening-hours-days {
    font-size: 18px;
    font-family: var(--font-primary);
    color: var(--color-accent);
    margin: 0px;
}

.opening-hours-hour {
    font-size: 18px;
    font-family: var(--font-primary);
    color: var(--color-white);
    margin: 0px;
}

.image-column {
  flex: 1;
  position: relative;
  min-width: 300px;
}

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

.restaurant-image {
  width: 90%;
  height: auto;
  object-fit: cover;
  transform: rotate(-10deg);
  transition: transform 0.4s ease;
}

.restaurant-image:hover {
  border: 2px solid var(--color-accent);
  transform: scale(1.03) rotate(-10deg);
}

.chef-overlay-image {
  position: absolute;
  bottom: -20px;
  right: 50px;
  width: 200px;
  height: auto;
  object-fit: cover;
}

/* Tablet (≤1024px) */
@media screen and (max-width: 1024px) {
  .story-section {
    padding: 80px 0px;
  }

  .story-content {
    gap: 40px;
  }

  .story-title {
    font-size: 42px;
  }

  .opening-hours-title {
    font-size: 30px;
  }

  .restaurant-image {
    width: 100%;
  }

  .chef-overlay-image {
    width: 160px;
    right: 0px;
  }
}

/* Mobile (≤768px) */
@media screen and (max-width: 768px) {
  .story-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .text-column,
  .image-column {
    width: 100%;
    max-width: 100%;
  }

  .restaurant-image {
    width: 100%;
    transform: rotate(0deg);
  }

  .restaurant-image:hover {
    transform: scale(1.03);
  }

  .opening-hours {
    margin: 0 auto;
  }
}

/* Small Mobile (≤480px) */
@media screen and (max-width: 480px) {
  .story-section {
    padding: 60px 0px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .story-title {
    font-size: 32px;
  }

  .story-description {
    font-size: 16px;
  }

  .opening-hours-title {
    font-size: 24px;
  }

  .opening-hours-days,
  .opening-hours-hour {
    font-size: 16px;
  }
}
