/* Gastro Gallery Styles */

/* Main Gallery Section */
.gastro-gallery {
  background: rgba(0, 0, 0, 0.1);
  padding: 80px 20px 0;
}

.gastro-gallery__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin: 0 0 50px;
  text-align: center;
}

/* Gastro Cards Grid */
.gastro-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

/* Gastro Card - Minimalist Card */
.gastro-card {
  background: transparent;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  height: 200px;
}

.gastro-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Card Image - Full Height */
.gastro-card__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.gastro-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Card Overlay - Minimalist */
.gastro-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  color: white;
}

.gastro-card__tag {
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}

.gastro-card__title {
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 6px;
  line-height: 1.1;
  letter-spacing: -0.2px;
}

.gastro-card__description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}

/* Simple card design - no buttons needed */

/* Geisha Inspiration Section */
.geisha-inspiration {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
  margin-top: 40px;
}

.geisha-inspiration__content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}

.geisha-inspiration__poster img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.geisha-inspiration__text {
  color: rgba(255, 255, 255, 0.9);
}

.geisha-inspiration__title {
  font-family: "Unbounded", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 24px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.geisha-inspiration__description {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.geisha-inspiration__description:last-of-type {
  margin-bottom: 0;
}

.geisha-inspiration__highlight {
  margin-top: 24px;
}

.geisha-inspiration__highlight-text {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Gastro cards should be visible immediately - no scroll animation needed */
.gastro-card {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.geisha-inspiration {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Ensure cards are always visible */
.gastro-cards-grid .gastro-card {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gastro-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .gastro-card__image {
    height: auto;
  }
  
  .gastro-card__title {
    font-size: 20px;
  }
  
  .geisha-inspiration__content {
    grid-template-columns: 250px 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .gastro-gallery {
    padding: 60px 20px 0;
  }
  
  .gastro-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .gastro-card__image {
    height: auto;
  }
  
  .gastro-card__title {
    font-size: 22px;
  }
  
  .gastro-card__description {
    font-size: 15px;
  }
  
  .geisha-inspiration {
    padding: 24px;
    margin-top: 30px;
  }
  
  .geisha-inspiration__content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
  
  .geisha-inspiration__poster {
    max-width: 240px;
    margin: 0 auto;
  }
  
  .geisha-inspiration__title {
    font-size: 24px;
  }
  
  .geisha-inspiration__description {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .gastro-gallery {
    padding: 50px 16px 0;
  }
  
  .gastro-gallery__subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .gastro-cards-grid {
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .gastro-card__image {
    height: auto;
  }
  
  .gastro-card__title {
    font-size: 20px;
  }
  
  .gastro-card__description {
    font-size: 14px;
  }
  
  .gastro-card__tag {
    font-size: 10px;
  }
  
  .geisha-inspiration {
    padding: 20px;
    margin-top: 25px;
  }
  
  .geisha-inspiration__title {
    font-size: 22px;
  }
  
  .geisha-inspiration__description {
    font-size: 14px;
  }
}
