/* Gastronomi page-specific styles */

.gastro-page { background: #fffaf2; }

.gastro-hero {
  position: relative;
  min-height: 56vh;
  color: #fff;
}
.gastro-hero .hero-media {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}
.gastro-hero .hero-content {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 12vh 24px 8vh;
}
.gastro-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  margin: 6px 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.gastro-hero .eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  opacity: 0.9;
}
.gastro-hero .hero-copy {
  max-width: 700px;
  font-size: 1.06rem;
  opacity: 0.95;
  line-height: 1.55;
}
.gastro-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: 24px;
  font-size: 0.92rem;
  opacity: 0.92;
}
.gastro-hero-meta strong {
  display: block;
  font-size: 1.0rem;
  font-weight: 700;
}

/* Sections */
.gastro-page .section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px;
}
.gastro-page .section-heading { max-width: 760px; margin-bottom: 32px; }
.gastro-page .section-heading h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.05rem);
  margin: 6px 0 12px;
  letter-spacing: -0.01em;
}
.gastro-page .section-sub { margin: 0; opacity: 0.7; line-height: 1.55; }

/* Tastes grid (8 kart) */
.gastro-tastes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gastro-taste-card {
  border: 1px solid #e3d9c8;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.gastro-taste-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183,95,59,0.45);
  box-shadow: 0 18px 38px rgba(40,30,20,0.10);
}
.gastro-taste-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
.gastro-taste-card > div {
  padding: 16px 18px 20px;
}
.gastro-taste-card h3 {
  margin: 0 0 6px;
  font-size: 1.04rem;
  letter-spacing: -0.01em;
}
.gastro-taste-card p {
  margin: 0;
  line-height: 1.55;
  font-size: 0.9rem;
  opacity: 0.82;
}

/* Region cards (4) */
.gastro-regions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.gastro-region-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  border: 1px solid #e3d9c8;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease;
}
.gastro-region-card:hover {
  transform: translateY(-3px);
  border-color: rgba(183,95,59,0.45);
}
.gastro-region-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  display: block;
}
.gastro-region-card > div { padding: 24px 26px; }
.gastro-region-card .region-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 11px;
  background: #efe5d2;
  color: #6b5638;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.gastro-region-card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}
.gastro-region-card p {
  margin: 0 0 12px;
  line-height: 1.6;
  font-size: 0.94rem;
  opacity: 0.82;
}
.gastro-region-card ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.6;
  font-size: 0.9rem;
}
.gastro-region-card li { margin-bottom: 4px; }

/* Products */
.gastro-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gastro-products-grid article {
  padding: 20px 22px;
  border: 1px solid #e3d9c8;
  border-radius: 12px;
  background: #fff;
}
.gastro-products-grid h3 {
  margin: 0 0 8px;
  font-size: 1.0rem;
}
.gastro-products-grid p {
  margin: 0;
  line-height: 1.55;
  font-size: 0.9rem;
  opacity: 0.82;
}

/* Tips */
.gastro-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gastro-tips-grid article {
  padding: 22px 24px;
  border: 1px solid #e3d9c8;
  border-radius: 12px;
  background: #fff;
}
.gastro-tips-grid h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.gastro-tips-grid p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.92rem;
}

/* CTA (same as karia/ulasim) */
.gastro-cta-card {
  max-width: 780px;
  margin: 0 auto;
  padding: 52px 44px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1f2d2a 0%, #2c3a2d 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 28px 60px rgba(20,25,22,0.26);
}
.gastro-cta-card h2 {
  margin: 8px 0 18px;
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
}
.gastro-cta-card p {
  margin: 0 auto 22px;
  max-width: 560px;
  line-height: 1.6;
  opacity: 0.92;
}
.gastro-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.gastro-cta-actions .button {
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  background: transparent;
  transition: background 180ms ease, transform 180ms ease;
}
.gastro-cta-actions .button:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.gastro-cta-actions .button.primary { background: #b75f3b; border-color: #b75f3b; }
.gastro-cta-actions .button.primary:hover { background: #a14e2c; }

/* Responsive */
@media (max-width: 1100px) {
  .gastro-tastes-grid { grid-template-columns: repeat(3, 1fr); }
  .gastro-products-grid { grid-template-columns: repeat(2, 1fr); }
  .gastro-tips-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .gastro-page .section { padding: 52px 20px; }
  .gastro-tastes-grid { grid-template-columns: repeat(2, 1fr); }
  .gastro-regions-grid { grid-template-columns: 1fr; }
  .gastro-region-card { grid-template-columns: 130px 1fr; }
  .gastro-region-card img { min-height: 170px; }
  .gastro-products-grid { grid-template-columns: 1fr; }
  .gastro-tips-grid { grid-template-columns: 1fr; }
  .gastro-cta-card { padding: 40px 22px; }
}
@media (max-width: 540px) {
  .gastro-tastes-grid { grid-template-columns: 1fr; }
  .gastro-region-card { grid-template-columns: 1fr; }
  .gastro-region-card img { height: 200px; }
}

/* Restoran kartları (Selimiye iki klasik) */
.gastro-restaurants-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.gastro-restaurant-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  border: 1px solid #e3d9c8;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.gastro-restaurant-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183,95,59,0.45);
  box-shadow: 0 18px 38px rgba(40,30,20,0.10);
}
.gastro-restaurant-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}
.gastro-restaurant-card > div { padding: 24px 26px; }
.gastro-restaurant-card .restaurant-region {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 11px;
  background: #b75f3b;
  color: #fff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gastro-restaurant-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.gastro-restaurant-card p {
  margin: 0 0 12px;
  line-height: 1.6;
  font-size: 0.94rem;
  opacity: 0.85;
}
.gastro-restaurant-card ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.6;
  font-size: 0.9rem;
}
.gastro-restaurant-card li { margin-bottom: 4px; }

.gastro-restaurants-note {
  margin-top: 22px;
  font-size: 0.92rem;
  opacity: 0.7;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .gastro-restaurants-grid { grid-template-columns: 1fr; }
  .gastro-restaurant-card { grid-template-columns: 130px 1fr; }
  .gastro-restaurant-card img { min-height: 170px; }
}
@media (max-width: 540px) {
  .gastro-restaurant-card { grid-template-columns: 1fr; }
  .gastro-restaurant-card img { height: 200px; }
}
