/* Tatlı Bank — Premium Coming Soon */

:root {
  --cream: #fcfbf4;
  --cream-light: #fffdf9;
  --beige: #f0e6da;
  --warm-beige: #e8ddd0;
  --caramel: #b8862a;
  --gold: #c9a05a;
  --chocolate: #3a2518;
  --burgundy: #7b161c;
  --burgundy-dark: #5e1015;
  --brand-orange: #f37021;
  --brand-orange-light: #ff8533;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --whatsapp-deep: #128c7e;
  --text: #4a3c32;
  --text-muted: #6f5f52;
  --white: #ffffff;
  --radius: 2px;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100dvh;
  padding: 2.5rem 0 3rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/landing_bg.png") 72% center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(252, 251, 244, 0.97) 0%,
      rgba(252, 251, 244, 0.9) 28%,
      rgba(252, 251, 244, 0.55) 48%,
      rgba(252, 251, 244, 0.12) 68%,
      transparent 82%
    ),
    linear-gradient(
      180deg,
      rgba(252, 251, 244, 0.35) 0%,
      transparent 45%,
      rgba(58, 37, 24, 0.08) 100%
    );
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 55% 45% at 22% 50%,
    rgba(201, 160, 90, 0.14) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-inner {
  width: 100%;
  max-width: 26rem;
}

.hero-inner > * {
  animation: fade-up 0.85s ease backwards;
}

.logo-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  animation-delay: 0.05s;
}

.logo {
  height: clamp(4rem, 14vw, 5.75rem);
  width: auto;
  filter: drop-shadow(0 6px 20px rgba(58, 37, 24, 0.12));
}

.eyebrow {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 1rem;
  animation-delay: 0.12s;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 2.875rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--chocolate);
  animation-delay: 0.2s;
}

.hero-lead {
  margin-top: 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--text-muted);
  animation-delay: 0.28s;
}

.brand-note {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--caramel);
  animation-delay: 0.36s;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.875rem;
  animation-delay: 0.44s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 14.5rem;
  padding: 0.8125rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border: 1px solid transparent;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.36);
}

.btn-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.4375rem 0.875rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(201, 160, 90, 0.32);
  backdrop-filter: blur(8px);
  animation-delay: 0.52s;
}

.badge-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--brand-orange);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

/* ─── Footer ─── */
.footer {
  position: relative;
  z-index: 2;
  background: var(--cream);
  border-top: 1px solid rgba(201, 160, 90, 0.2);
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
}

.footer-inner {
  max-width: 36rem;
  margin: 0 auto;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--caramel);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
}

.footer-contact a {
  color: var(--burgundy);
  opacity: 0.82;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-contact a:hover {
  color: var(--brand-orange);
  opacity: 1;
}

.footer-contact a.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--whatsapp-deep);
  opacity: 1;
  font-weight: 500;
}

.footer-contact a.contact-whatsapp:hover {
  color: var(--whatsapp-dark);
}

.footer-contact .contact-icon {
  width: 0.875rem;
  height: 0.875rem;
}

.footer-sep {
  color: rgba(123, 22, 28, 0.22);
  font-size: 0.625rem;
}

.footer-copy,
.footer-credit {
  font-size: 0.6875rem;
  color: rgba(74, 60, 50, 0.5);
  margin-top: 0.625rem;
}

.footer-credit a {
  color: var(--burgundy);
  font-weight: 500;
}

.footer-credit a:hover {
  color: var(--brand-orange);
}

/* ─── WhatsApp FAB ─── */
.whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.05);
  background: var(--whatsapp-dark);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.42);
}

.whatsapp-fab svg {
  width: 1.5rem;
  height: 1.5rem;
}

.protected-media {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

/* ─── Responsive ─── */
@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .btn {
    width: auto;
    min-width: 10.25rem;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 3rem 0 3.5rem;
  }

  .hero-shell {
    padding: 0 3rem;
  }

  .hero-inner {
    max-width: 28rem;
  }

  .logo {
    height: 5.75rem;
  }
}

@media (max-width: 767px) {
  .hero-bg {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(252, 251, 244, 0.94) 0%,
        rgba(252, 251, 244, 0.88) 42%,
        rgba(252, 251, 244, 0.72) 68%,
        rgba(252, 251, 244, 0.45) 100%
      ),
      linear-gradient(
        105deg,
        rgba(252, 251, 244, 0.92) 0%,
        rgba(252, 251, 244, 0.5) 55%,
        transparent 85%
      );
  }

  .hero-inner {
    max-width: 22rem;
    margin: 0 auto;
    text-align: center;
  }

  .logo {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    align-items: center;
  }

  .coming-badge {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-inner > *,
  .badge-dot {
    animation: none;
  }
}
