/*
Theme Name: Sahil Cafe Restaurant
Theme URI: https://sahilcaferestaurant.com.tr/
Author: Sahil Cafe Restaurant
Description: Sahil Cafe Restaurant icin ozel WordPress temasi. QR menu oncelikli, mobil odakli.
Version: 1.0
Text Domain: sahilcafe
*/

/* ===== Design tokens ===== */
:root {
  --color-navy: #1c3f66;
  --color-navy-deep: #0a1420;
  --color-navy-soft: #2c5a86;
  --color-black: #0b0b0c;
  --color-gold: #d99a3f;
  --color-gold-light: #e9b876;
  --color-gold-dark: #a85f1f;
  --color-cream: #ffffff;
  --color-cream-soft: #eef1f4;
  --color-text: #12181f;
  --color-text-muted: #55606b;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
  --container-width: 1180px;
  --radius: 10px;
  --shadow-soft: 0 12px 30px rgba(10, 20, 32, 0.18);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 0.5em;
  line-height: 1.2;
  color: var(--color-navy);
}
p { margin: 0 0 1em; }
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
  color: var(--color-navy-deep);
  box-shadow: var(--shadow-soft);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(12, 24, 38, 0.26); }
.btn-outline {
  background: transparent;
  border-color: var(--color-cream);
  color: var(--color-cream);
}
.btn-outline:hover { background: rgba(247, 242, 233, 0.12); transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--color-gold-light); outline-offset: 3px; }

/* ===== Site header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 22px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header__brand img { height: 56px; width: auto; }
.site-header__brand span {
  font-family: var(--font-display);
  color: var(--color-cream);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.site-header nav ul {
  display: flex;
  gap: 28px;
}
.site-header nav a {
  color: var(--color-cream);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.site-header nav a:hover { color: var(--color-gold-light); }

.site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.site-header__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-cream);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.no-hero .site-header__toggle span { background: var(--color-cream); }
.site-header__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__toggle.is-open span:nth-child(2) { opacity: 0; }
.site-header__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Non-hero pages need a solid header */
.no-hero .site-header {
  position: relative;
  background: var(--color-navy);
}

/* Front page header solidifies once you scroll past the hero */
.site-header {
  transition: background 0.25s ease, padding 0.25s ease;
}
.site-header.is-scrolled {
  background: var(--color-navy);
  padding: 14px 0;
  box-shadow: 0 6px 20px rgba(12, 24, 38, 0.25);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-black);
  color: var(--color-cream-soft);
  padding: 64px 0 28px;
}
.site-footer__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer__cta h2 { color: var(--color-cream); margin: 0; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.site-footer__columns ul { display: flex; flex-direction: column; gap: 8px; }
.site-footer__label {
  margin-bottom: 2px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer h4 {
  color: var(--color-gold-light);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.site-footer a:hover { color: var(--color-gold-light); }
.site-footer__bottom {
  border-top: 1px solid rgba(247, 242, 233, 0.12);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(247, 242, 233, 0.6);
}

/* ===== Front page: hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--color-cream);
  overflow: hidden;
  background-color: var(--color-navy-deep);
}
.hero__slides { position: absolute; inset: 0; }
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero__bg.is-active { opacity: 1; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,24,38,0.55) 0%, rgba(12,24,38,0.35) 40%, rgba(12,24,38,0.92) 100%);
}
.hero__content {
  position: relative;
  z-index: 5;
  padding-bottom: 90px;
  width: 100%;
  text-align: center;
}
.hero__logo { width: 130px; height: auto; margin: 0 auto 20px; }
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--color-cream);
  margin-bottom: 12px;
}
.hero__subtitle {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 30px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: var(--color-cream);
  opacity: 0.7;
  font-size: 1.6rem;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Hero slider controls */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(247, 242, 233, 0.4);
  background: rgba(12, 24, 38, 0.35);
  color: var(--color-cream);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero__arrow:hover { background: rgba(12, 24, 38, 0.6); border-color: var(--color-gold-light); }
.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }

.hero__dots {
  position: absolute;
  bottom: 74px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 10px;
}
.hero__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(247, 242, 233, 0.6);
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.hero__dot.is-active { background: var(--color-gold-light); border-color: var(--color-gold-light); }

/* Rotating QR badge */
.hero__badge {
  position: absolute;
  right: 28px;
  bottom: 110px;
  z-index: 6;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__badge-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: var(--color-cream);
  font-size: 8.6px;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  animation: spin 14s linear infinite;
}
.hero__badge-icon {
  position: relative;
  font-size: 1.6rem;
  background: var(--color-gold);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (max-width: 640px) {
  .hero__badge { width: 76px; height: 76px; right: 16px; bottom: 96px; }
  .hero__badge-icon { width: 34px; height: 34px; font-size: 1.3rem; }
  .hero__arrow { width: 36px; height: 36px; font-size: 1.2rem; }
}

/* ===== Section shells ===== */
.section { padding: 90px 0; }
.section--navy { background: var(--color-navy); color: var(--color-cream); }
.section--navy h2 { color: var(--color-cream); }
.section-eyebrow {
  display: block;
  color: var(--color-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.section--navy .section-eyebrow { color: var(--color-gold-light); }
.section-heading { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.section-heading h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.section-heading p { color: var(--color-text-muted); }
.section--navy .section-heading p { color: rgba(247,242,233,0.75); }

/* ===== About / intro ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center 20%;
}
.about-grid h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.about-grid p { color: var(--color-text-muted); }
.about-grid--reverse { grid-template-columns: 0.9fr 1.1fr; }
.about-grid__image--figure {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}
.about-grid__image--figure::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid var(--color-cream-soft);
  z-index: 0;
}
.about-grid__image--figure img {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 25%;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(10, 20, 32, 0.22));
  mask-image: radial-gradient(circle at center, #000 68%, transparent 96%);
  -webkit-mask-image: radial-gradient(circle at center, #000 68%, transparent 96%);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

/* ===== Featured items ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(20, 38, 63, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(20, 38, 63, 0.14); }
.feature-card__img { aspect-ratio: 4/3; overflow: hidden; }
.feature-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.feature-card:hover .feature-card__img img { transform: scale(1.06); }
.feature-card__body { padding: 18px 20px 22px; }
.feature-card__body h3 { font-size: 1.05rem; margin-bottom: 4px; }
.feature-card__price { color: var(--color-gold-dark); font-weight: 700; }

/* ===== Info strip (hours / location) ===== */
.info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  text-align: center;
}
.info-strip__item {
  background: rgba(247, 242, 233, 0.06);
  border: 1px solid rgba(247, 242, 233, 0.14);
  border-radius: var(--radius);
  padding: 30px 20px;
}
.info-strip__item .icon { font-size: 1.8rem; margin-bottom: 12px; color: var(--color-gold-light); }
.info-strip__item h4 { color: var(--color-cream); margin-bottom: 8px; }
.info-strip__item p { color: rgba(247,242,233,0.75); margin: 0; }

.info-strip--light .info-strip__item {
  background: #fff;
  border: 1px solid var(--color-cream-soft);
  box-shadow: var(--shadow-soft);
}
.info-strip--light .info-strip__item h4 { color: var(--color-navy); }
.info-strip--light .info-strip__item p { color: var(--color-text-muted); }

/* ===== CTA menu banner ===== */
.menu-cta {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
  color: var(--color-navy-deep);
}
.menu-cta h2 { color: var(--color-navy-deep); }
.menu-cta p { color: rgba(12,24,38,0.75); max-width: 480px; margin: 0 auto 24px; }
.menu-cta .btn-gold {
  background: var(--color-navy-deep);
  color: var(--color-cream);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-grid .about-grid__image { order: -1; }
  .site-header__toggle { display: flex; }
  .site-header nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    background: var(--color-navy-deep);
    transition: max-height 0.25s ease;
  }
  .site-header nav.is-open { max-height: 320px; }
  .site-header nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
  }
  .site-header nav li { border-top: 1px solid rgba(247, 242, 233, 0.12); }
  .site-header nav a { display: block; padding: 14px 0; }
  .section { padding: 64px 0; }
}

/* ===== Generic inner page (page.php) ===== */
.page-hero {
  background: var(--color-navy);
  color: var(--color-cream);
  padding: 140px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--color-cream); }
.page-content { padding: 70px 0; }
.page-content .container { max-width: 820px; }

/* ===== QR Menu page ===== */
body.page-template-page-menu { background: var(--color-cream); }
.menu-hero {
  position: relative;
  background: linear-gradient(160deg, var(--color-navy-deep) 0%, var(--color-navy) 55%, var(--color-navy-soft) 100%);
  color: var(--color-cream);
  text-align: center;
  overflow: hidden;
}
.menu-hero__inner { padding: 40px 24px 60px; }
.menu-hero__logo { width: 56px; margin: 0 auto 16px; display: block; }
.menu-hero__eyebrow {
  display: block;
  color: var(--color-gold-light);
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.menu-hero h1 {
  color: var(--color-cream);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 10px;
}
.menu-hero__sub {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto;
  max-width: 280px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.menu-hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 30px;
  display: block;
}
.menu-hero__wave path { fill: var(--color-cream); }

.menu-tabs {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-cream-soft);
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 12px 16px;
  display: flex;
  gap: 10px;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tabs a {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--color-cream-soft);
  color: var(--color-navy);
  font-size: 0.88rem;
  font-weight: 600;
}
.menu-tabs a.is-active,
.menu-tabs a:hover {
  background: var(--color-navy);
  color: var(--color-cream);
  border-color: var(--color-navy);
}

.menu-list { padding: 8px 0 60px; }
.menu-category { padding: 30px 0 6px; scroll-margin-top: 66px; }
.menu-category h2 {
  font-size: 1.3rem;
  border-bottom: 2px solid var(--color-gold);
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 16px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 640px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (min-width: 960px) {
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
}

.menu-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(10, 20, 32, 0.08);
  display: flex;
  flex-direction: column;
}
.menu-card__img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-cream-soft);
}
.menu-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-card__img-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-cream-soft), #fff);
}
.menu-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px 14px;
}
.menu-card__name { font-weight: 600; color: var(--color-text); font-size: 0.92rem; line-height: 1.25; }
.menu-card__desc { font-size: 0.8rem; color: var(--color-text-muted); font-weight: 400; }
.menu-card__price {
  margin-top: 6px;
  font-weight: 700;
  color: var(--color-gold-dark);
  font-size: 0.92rem;
}
.menu-empty { padding: 60px 20px; text-align: center; color: var(--color-text-muted); }

/* ===== Flowing tag ticker ===== */
.ticker {
  background: var(--color-black);
  overflow: hidden;
  padding: 16px 0;
}
.ticker__track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: ticker-scroll 24s linear infinite;
}
.ticker__item {
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0.85;
}
.ticker__item:nth-child(odd) { color: var(--color-gold-light); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ===== Coffee bean + cup scene ===== */
.bean-scene { background: var(--color-cream-soft); }
.bean-scene__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.bean-scene__img {
  width: 100%;
  height: auto;
  max-width: 440px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin: 0 auto;
  display: block;
  animation: bean-pop 0.7s ease backwards;
}
@keyframes bean-pop {
  from { opacity: 0; transform: scale(0.92); transform-origin: center; }
  to { opacity: 1; transform: scale(1); }
}
.bean-scene__text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.bean-scene__text p { color: var(--color-text-muted); max-width: 46ch; }
@media (max-width: 900px) {
  .bean-scene__grid { grid-template-columns: 1fr; text-align: center; }
  .bean-scene__text p { margin-left: auto; margin-right: auto; }
}

/* ===== Top 10 menu carousel ===== */
.section--top10 { background: #fff; }
.top10 {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 40px;
  align-items: center;
}
.top10__intro p { color: var(--color-text-muted); margin-bottom: 20px; }
.top10__carousel-wrap { position: relative; display: flex; align-items: center; gap: 14px; min-width: 0; }
.top10__track {
  display: flex;
  flex: 1;
  min-width: 0;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 16px;
  -webkit-overflow-scrolling: touch;
}
.top10__track::-webkit-scrollbar { height: 6px; }
.top10__track::-webkit-scrollbar-thumb { background: var(--color-cream-soft); border-radius: 4px; }
.top10__card {
  flex: 0 0 220px;
  scroll-snap-align: start;
}
.top10__arrow {
  position: static;
  transform: none;
  flex-shrink: 0;
  background: var(--color-navy);
  border-color: var(--color-navy);
}
.top10__arrow:hover { background: var(--color-navy-soft); }
@media (max-width: 900px) {
  .top10 { grid-template-columns: 1fr; }
  .top10__carousel-wrap { display: flex; align-items: center; gap: 10px; }
}

/* ===== Farkımızla accordion ===== */
.farkimizla {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.farkimizla__quote {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-gold-light);
  font-size: 1.15rem;
  max-width: 46ch;
}
.accordion { border-top: 1px solid rgba(247, 242, 233, 0.15); }
.accordion__item { border-bottom: 1px solid rgba(247, 242, 233, 0.15); }
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  background: none;
  border: none;
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
}
.accordion__icon {
  flex-shrink: 0;
  color: var(--color-gold-light);
  font-size: 1.3rem;
  transition: transform 0.25s ease;
}
.accordion__item.is-open .accordion__icon { transform: rotate(45deg); }
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion__item.is-open .accordion__panel { max-height: 200px; }
.accordion__panel p { color: rgba(247, 242, 233, 0.75); padding: 0 4px 18px; }
.farkimizla__art img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
  border: 6px solid var(--color-gold);
  box-shadow: var(--shadow-soft);
  mask-image: radial-gradient(circle at center, #000 90%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, #000 90%, transparent 100%);
  transition: opacity 0.15s ease, transform 0.25s ease;
}
.farkimizla__art img.is-fading { opacity: 0; transform: scale(0.94); }
@media (max-width: 900px) {
  .farkimizla { grid-template-columns: 1fr; }
  .farkimizla__art { order: -1; }
}

/* ===== X-shaped crossing tagline banners ===== */
.cross-banner {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: var(--color-cream-soft);
}
.cross-banner::before,
.cross-banner::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.cross-banner::before { left: 0; background: linear-gradient(90deg, var(--color-cream-soft), rgba(238, 241, 244, 0)); }
.cross-banner::after { right: 0; background: linear-gradient(270deg, var(--color-cream-soft), rgba(238, 241, 244, 0)); }
.cross-banner__strip {
  position: absolute;
  left: 50%;
  width: 160vw;
  margin-left: -80vw;
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
  transform-origin: 50% 50%;
}
.cross-banner__strip--one {
  top: 50%;
  background: var(--color-navy);
  transform: translateY(-50%) rotate(-4deg);
}
.cross-banner__strip--two {
  top: 50%;
  background: var(--color-gold);
  transform: translateY(-50%) rotate(4deg);
}
.cross-banner__track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: ticker-scroll 18s linear infinite;
}
.cross-banner__strip--two .cross-banner__track { animation-direction: reverse; }
.cross-banner__strip span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.cross-banner__strip--one span { color: var(--color-cream); }
.cross-banner__strip--two span { color: var(--color-navy-deep); }
@media (max-width: 640px) {
  .cross-banner { height: 220px; }
  .cross-banner__strip span { font-size: 1rem; }
}
