/* =========================================================
   PAGES.CSS — Ayrı Sayfalar İçin Ortak Stiller
   Hakkımızda · Menü · İletişim
   ========================================================= */

/* ── OVERFLOW GUARD ────────────────────────────────────── */
html, body { overflow-x: hidden; max-width: 100%; }

/* ── NAV DARK (scrolled navbar rengi) ─────────────────── */
.navbar-home:not(.scrolled) .nav-dark a,
.navbar-home:not(.scrolled) .nav-dark a.nav-active,
.navbar-home:not(.scrolled) .nav-active,
.navbar-home:not(.scrolled) .nav-logo {
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.38);
}

.navbar-home:not(.scrolled) .nav-dark a::after {
  background: #fff !important;
}

.navbar-home:not(.scrolled) .hamburger-dark span {
  background: #fff !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.28);
}

.navbar-inner:not(.scrolled) .nav-dark a,
.navbar-inner:not(.scrolled) .nav-logo {
  color: #4a5c4a !important;
  text-shadow: none;
}

.navbar-inner:not(.scrolled) .nav-dark a::after {
  background: var(--green-500) !important;
}

.navbar-inner:not(.scrolled) .nav-dark a:hover,
.navbar-inner:not(.scrolled) .nav-dark a.nav-active,
.navbar-inner:not(.scrolled) .nav-active {
  color: var(--green-700) !important;
}

.navbar-inner:not(.scrolled) .hamburger-dark span {
  background: var(--green-900) !important;
  box-shadow: none;
}

.navbar.scrolled .nav-dark a {
  color: #4a5c4a !important;
  text-shadow: none;
}

.navbar.scrolled .nav-logo {
  color: #4a5c4a !important;
  text-shadow: none;
}

.navbar.scrolled .nav-dark a::after {
  background: var(--green-500) !important;
}

.navbar.scrolled .nav-dark a:hover,
.navbar.scrolled .nav-dark a.nav-active,
.navbar.scrolled .nav-active {
  color: var(--green-700) !important;
}

.navbar.scrolled .nav-active {
  font-weight: 600 !important;
}

.navbar.scrolled .hamburger-dark span {
  background: var(--green-900) !important;
  box-shadow: none;
}

/* ── PAGE HERO ─────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 72px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1); }

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,25,10,.75) 0%, rgba(30,55,25,.55) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1rem;
  animation: fadeInUp .7s ease both;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: .8rem 0;
}

.page-hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.8);
  max-width: 55ch;
  margin-inline: auto;
  line-height: 1.65;
}

.breadcrumb {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
}
.breadcrumb a {
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span:last-child { color: var(--green-300); }

/* ── PAGE SECTIONS ──────────────────────────────────────── */
.page-section {
  padding: 6rem 0;
  background: var(--white);
}
.page-section-alt {
  background: var(--sand);
}

/* ── STORY (Hakkımızda) ─────────────────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-para {
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-story-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
}
.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-img-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: .9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.story-img-caption span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--green-100);
  color: var(--green-700);
  flex-shrink: 0;
}
.story-img-caption svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.story-img-caption p { font-size: .85rem; font-weight: 500; color: var(--green-900); }

/* ── VALUES ─────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--green-400);
}
.value-icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(111,139,111,.16), rgba(244,185,66,.18));
  color: var(--green-700);
  font-size: 2rem;
  box-shadow: 0 10px 24px rgba(42,75,42,.12);
}
.value-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--green-900);
  margin-bottom: .6rem;
}
.value-card p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── STATS ───────────────────────────────────────────────── */
.stats-section {
  background: var(--green-800);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  padding: 2rem 1rem;
}
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-300);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

/* ── TEAM ────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  letter-spacing: .03em;
}
.team-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--green-900);
  margin-bottom: .3rem;
}
.team-role {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--green-500);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.team-card p {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.page-cta {
  padding: 5rem 0;
  background: var(--green-50);
}
.cta-box {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.cta-box h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: .8rem;
}
.cta-box p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85em 2em;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  transition: var(--transition);
}
.btn-outline-dark:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── MENU PAGE ───────────────────────────────────────────── */
.menu-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.menu-intro-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.menu-badge-item {
  background: var(--green-50);
  border: 2px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: var(--transition);
}
.menu-badge-item:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-sm);
}
.menu-badge-item span { font-size: 2rem; display: block; margin-bottom: .5rem; }
.menu-badge-item img {
  width: 72px;
  height: 72px;
  display: block;
  margin: 0 auto .75rem;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--green-100);
}
.menu-badge-item p { font-size: .85rem; font-weight: 600; color: var(--green-800); }

.menu-category {
  margin-bottom: 4rem;
}
.menu-category:last-child { margin-bottom: 0; }

.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--green-200, #b5d6b5);
}
.menu-cat-icon {
  font-size: 2.4rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.menu-cat-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--green-900);
  margin-bottom: .2rem;
}
.menu-cat-header p { color: var(--text-light); font-size: .9rem; }

.full-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.full-menu-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--green-100);
  transition: var(--transition);
}
.full-menu-item:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-sm);
}
.fmi-left {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  flex: 1;
  min-width: 0;
}
.fmi-icon { font-size: 1.6rem; flex-shrink: 0; }
.fmi-left h4 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: .2rem;
}
.fmi-left p {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: .4rem;
}
.fmi-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  background: var(--green-100);
  color: var(--green-600);
  padding: .15em .6em;
  border-radius: 50px;
}
.fmi-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-600);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── PHOTO MENU CARDS ───────────────────────────────────── */
.photo-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.photo-menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.photo-menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.pmc-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}
.pmc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.photo-menu-card:hover .pmc-img img { transform: scale(1.06); }

.pmc-tag {
  position: absolute;
  top: .7rem;
  left: .7rem;
  font-size: .68rem;
  font-weight: 700;
  background: rgba(255,255,255,.92);
  color: var(--green-700);
  padding: .2em .7em;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  letter-spacing: .03em;
}

.pmc-body {
  padding: 1rem 1.1rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pmc-body h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: .35rem;
}
.pmc-body p {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.5;
  flex: 1;
}

.pmc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .8rem;
  padding-top: .6rem;
  border-top: 1px dashed var(--green-100);
}
.pmc-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-600);
}

@media (max-width: 1100px) {
  .photo-menu-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .photo-menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .photo-menu-grid { grid-template-columns: 1fr; }
}

.menu-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--brown-100);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--brown-300);
}
.menu-note-icon { font-size: 1.4rem; flex-shrink: 0; }
.menu-note p { font-size: .9rem; color: var(--brown-700); line-height: 1.65; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--green-400);
  transition: var(--transition);
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ci-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(111,139,111,.14), rgba(244,185,66,.16));
  color: var(--green-700);
  font-size: 1.7rem;
  margin-bottom: .8rem;
}
.contact-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--green-900);
  margin-bottom: .7rem;
}
.contact-info-card p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.ci-action {
  display: inline-block;
  margin-top: .8rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--green-600);
  border: 1.5px solid var(--green-300);
  border-radius: 50px;
  padding: .3em .9em;
  transition: var(--transition);
}
.ci-action:hover {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}
.contact-form-wrap .section-title { margin-bottom: .5rem; }

select {
  width: 100%;
  padding: .85em 1.1em;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  box-shadow: var(--shadow-sm);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237a8f7a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}
select:focus {
  border-color: var(--green-400);
  box-shadow: 0 0 0 4px rgba(77,139,77,.1);
}

.req { color: var(--green-500); }

.map-embed {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  line-height: 0;
}
.map-embed iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

.map-placeholder {
  height: 260px;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  border-radius: var(--radius-md);
  border: 2px dashed var(--green-300);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-bottom: 2rem;
  text-align: center;
  padding: 1.5rem;
}
.map-pin { font-size: 2.5rem; margin-bottom: .3rem; }
.map-placeholder strong { color: var(--green-900); font-size: 1.05rem; }
.map-placeholder p { color: var(--text-mid); font-size: .88rem; }

.transport-info h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--green-900);
  margin-bottom: 1rem;
}
.transport-item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--green-50);
}
.transport-item:last-child { border-bottom: none; }
.transport-item > span { font-size: 1.3rem; flex-shrink: 0; }
.transport-item strong { display: block; font-size: .9rem; color: var(--green-800); margin-bottom: .15rem; }
.transport-item p { font-size: .82rem; color: var(--text-light); }

/* ── SSS ─────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  border-left: 4px solid var(--green-400);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(3px);
}
.faq-item h4 {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: var(--green-900);
  margin-bottom: .6rem;
}
.faq-item p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-story-img { height: 320px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .full-menu-grid { grid-template-columns: 1fr; }
  .contact-main-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .page-hero { height: 380px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .menu-intro-badges { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .page-hero { height: 320px; }
  .page-hero-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .about-story-img { height: 240px; }
  .menu-note { flex-direction: column; gap: .5rem; padding: 1.2rem; }
  .faq-item { padding: 1.2rem; }
}
