/* ===== Site variables (Inci Patisserie brand) ===== */
:root {
  --site-primary: #2B5B6D;
  --site-primary-dark: #234a58;
  --site-cream: #F5F1E8;
  --site-cream-dark: #e8e4db;
  --site-text: #333;
  --site-text-muted: #6c757d;
  --site-accent: #c9a86c;
  --site-shadow: 0 2px 12px rgba(0,0,0,0.06);
  --site-shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
}

/* ===== Base ===== */
html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body.site-body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--site-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(43, 91, 109, 0.25);
}

/* ===== Header ===== */
.site-header {
  background: var(--site-cream);
  box-shadow: var(--site-shadow);
  position: sticky;
  top: 0;
  z-index: 1020;
  overflow: visible;
}

.site-header .navbar {
  padding: 0.4rem 0;
  min-height: 56px;
}

.site-header .navbar-brand {
  font-weight: 700;
  color: var(--site-primary);
}

.site-brand-text {
  color: var(--site-primary);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

@media (min-width: 576px) {
  .site-brand-text {
    font-size: 1.1rem;
  }
}

.site-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (min-width: 576px) {
  .site-logo {
    height: 84px;
  }
}

.site-header .nav-link {
  color: var(--site-text) !important;
  font-weight: 500;
  padding: 0.5rem 0.75rem !important;
  border-radius: 8px;
}

.site-header .nav-link:hover {
  color: var(--site-primary) !important;
  background: rgba(43, 91, 109, 0.06);
}

.site-header .navbar-toggler {
  border-color: rgba(0,0,0,0.1);
  padding: 0.4rem 0.5rem;
}

/* Tüm ekranlar: logo ortada, hamburger ve Ana Sayfa gizli */
.site-header .navbar-toggler {
  display: none;
}
.site-header .navbar-collapse {
  display: none !important;
}
.site-header .navbar-brand {
  justify-content: center;
  width: 100%;
  margin: 0;
}
/* Navbar'da küçük logo kaldırıldığında sadece marka metni gösterilir */

.site-logo {
  height: 88px;
}
@media (min-width: 576px) {
  .site-logo {
    height: 96px;
  }
}

/* Slogan: navbar altında, tek yapı – içerik @media ile değişir */
.site-tagline {
  margin: 0;
  padding: 0.5rem 1rem 0.75rem;
  text-align: center;
  font-weight: 300;
  color: var(--site-primary);
  opacity: 0.92;
  border-top: 1px solid rgba(43, 91, 109, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, transparent 100%);
}

.tagline-desktop {
  display: none;
}

.tagline-mobile {
  display: inline;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (min-width: 769px) {
  .tagline-desktop {
    display: inline;
    font-size: 0.85rem;
    letter-spacing: 2px;
  }

  .tagline-mobile {
    display: none;
  }
}

/* ===== Main ===== */
.site-main {
  padding-bottom: 0;
}

/* ===== Landing hero (Home) ===== */
.landing-hero {
  position: relative;
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 3rem;
  overflow: hidden;
}

.landing-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--site-cream) 0%, var(--site-cream-dark) 50%, rgba(201, 168, 108, 0.08) 100%);
  pointer-events: none;
}

.landing-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .landing-hero-inner {
    margin-top: -10vh;
  }
}

.landing-logo-wrap {
  margin-bottom: 1.5rem;
}

.landing-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.06));
}

@media (min-width: 576px) {
  .landing-logo {
    max-width: 240px;
  }
}

.landing-text-mobile {
  margin-bottom: 1rem;
}

.landing-text-mobile .landing-title {
  margin-bottom: 0;
}

.landing-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--site-primary);
  margin: 0 0 0.5rem;
  opacity: 0.9;
}

.landing-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--site-primary);
  margin: 0 0 0.35rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

@media (min-width: 576px) {
  .landing-title {
    font-size: 2.5rem;
  }
}

.landing-lead {
  font-size: 1rem;
  color: var(--site-text-muted);
  margin: 0 0 2rem;
  line-height: 1.5;
  font-weight: 400;
}

/* Hareketli CTA – QR menüye gider */
.landing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff !important;
  text-decoration: none;
  background: linear-gradient(135deg, var(--site-primary) 0%, var(--site-primary-dark) 100%);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(43, 91, 109, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: cta-float 3s ease-in-out infinite;
}

.landing-cta:hover {
  color: #fff !important;
  animation: none;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(43, 91, 109, 0.45);
}

.landing-cta:active {
  transform: translateY(-1px);
}

.landing-cta-icon {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 1.15em;
}

.landing-cta:hover .landing-cta-icon {
  transform: translateX(4px);
}

@keyframes cta-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Container override for non-landing pages */
.site-main .container:not(.landing-hero-inner) {
  padding-top: 1.5rem;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--site-cream);
  padding: 1rem 1rem 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
}

.footer-top {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--site-text);
}

.footer-top .footer-link {
  font-weight: 600;
  color: var(--site-primary);
  text-decoration: none;
}

.footer-top .footer-link:hover {
  color: var(--site-primary-dark);
  text-decoration: underline;
}

.footer-bottom {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--site-text-muted);
  opacity: 0.85;
}

.footer-credit {
  color: inherit;
  text-decoration: none;
  opacity: 0.9;
}

.footer-credit:hover {
  color: var(--site-primary);
  opacity: 1;
}

.footer-link {
  color: var(--site-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: var(--site-primary);
}
