/* Drujba Choco — premium landing */

:root {
  --bg: #120b18;
  --glass-bg: rgba(255, 255, 255, 0.10);
  --glass-border: rgba(255, 255, 255, 0.22);
  --glass-hover: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.75);
  --brand: #DB4A78;
  --accent: #E8A53E;
  --radius: 22px;
  --card-max: 440px;
}

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

html, body { height: 100%; }

body {
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ============ Background ============ */
.page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  position: relative;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  inset: -40px;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  object-fit: cover;
  filter: saturate(1.1) brightness(0.5);
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(219, 74, 120, 0.35), transparent 55%),
    radial-gradient(circle at 82% 92%, rgba(232, 165, 62, 0.28), transparent 55%),
    linear-gradient(180deg, rgba(10, 6, 14, 0.55) 0%, rgba(10, 6, 14, 0.82) 100%);
}

/* ============ Card ============ */
.card {
  width: 100%;
  max-width: var(--card-max);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 32px 24px;
}

/* ============ Hero / Logo ============ */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.brand-logo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 40px rgba(219, 74, 120, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.5),
    inset 0 0 0 2px rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.5px;
  line-height: 1.15;
  background: linear-gradient(135deg, #ffffff 0%, #ffe9c8 60%, #ffd887 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 14px;
}

.brand-sub {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-top: 4px;
}

/* ============ Language Switcher ============ */
.lang-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.lang-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: #ffffff;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.lang-btn:hover {
  background: var(--glass-hover);
  transform: translateY(-1px);
}

.lang-btn.active {
  background: linear-gradient(135deg, #DB4A78 0%, #E8A53E 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(219, 74, 120, 0.4);
}

/* ============ Social Row ============ */
.social-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.social-icon:hover {
  background: linear-gradient(135deg, rgba(230,59,123,0.75), rgba(247,179,43,0.75));
  border-color: transparent;
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 8px 20px rgba(219, 74, 120, 0.35);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ============ Glass Buttons ============ */
.cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.glass-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.05) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  min-height: 52px;
  cursor: pointer;
  overflow: hidden;
}

.glass-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: skewX(-18deg);
  transition: left 0.7s ease;
  pointer-events: none;
}

.glass-btn:hover::after { left: 120%; }

.glass-btn:active {
  transform: scale(0.97);
}

.glass-btn:hover {
  background: linear-gradient(135deg, rgba(230,59,123,0.22) 0%, rgba(247,179,43,0.18) 100%);
  border-color: rgba(255, 216, 135, 0.45);
  box-shadow: 0 10px 30px rgba(219, 74, 120, 0.25);
  color: #ffffff;
}

.glass-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(230,59,123,0.35), rgba(247,179,43,0.35));
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.glass-btn:hover .glass-btn-icon {
  transform: rotate(-4deg) scale(1.05);
}

.glass-btn-icon svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.glass-btn-label {
  flex: 1;
  text-align: left;
  color: #ffffff;
}

.phone-inline {
  font-weight: 600;
}

/* ============ Footer meta ============ */
.footer-meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 12.5px;
  margin-top: 12px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.footer-meta .dot {
  opacity: 0.5;
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  .glass-btn,
  .glass-btn:hover,
  .glass-btn:active,
  .social-icon,
  .social-icon:hover {
    transition: none;
  }
}

/* ============ Small screens ============ */
@media (max-width: 400px) {
  .card { padding: 24px 16px; }
  .brand-name { font-size: 22px; }
  .brand-logo { width: 60px; height: 60px; }
}
