/* ============================================
   DEMKA EMLAK - GLOBAL STYLES
   Ultra Premium Base
============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

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

button {
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
  font-family: inherit;
}

img, video {
  max-width: 100%;
  display: block;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ratio-16-9 {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.ratio-4-3 {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.ratio-1-1 {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

svg {
  display: inline-block;
  flex-shrink: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.2;
}

/* ============================================
   LAYOUT
============================================ */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================
   PREMIUM SECTION HEADING
============================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 18px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--color-gold-gradient);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ============================================
   SCROLL ANIMATIONS
============================================ */
.animate-on-scroll {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.fade-up   { transform: translateY(50px); }
.fade-in   { transform: translateY(0); }
.zoom-in   { transform: scale(0.92); }

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-100 { transition-delay: 0.10s; }
.delay-200 { transition-delay: 0.20s; }
.delay-300 { transition-delay: 0.30s; }
.delay-400 { transition-delay: 0.40s; }
.delay-500 { transition-delay: 0.50s; }

/* ============================================
   SHINE EFFECT (Luxury Glare)
============================================ */
.shine-effect {
  position: relative;
  overflow: hidden;
}
.shine-effect::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255,255,255,0.30) 50%,
    transparent 80%
  );
  transform: translateX(-100%);
  transition: transform 0.65s var(--ease-smooth);
  pointer-events: none;
  z-index: 10;
}
.shine-effect:hover::after {
  transform: translateX(100%);
}

/* ============================================
   GOLD LIFT HOVER (3D Card Effect)
============================================ */
.card-hover {
  transition: transform var(--t-normal), box-shadow var(--t-normal), border-color var(--t-normal);
  will-change: transform;
}
.card-hover:hover {
  transform: translateY(-14px) scale(1.015);
  box-shadow: var(--shadow-gold);
  border-color: var(--border-gold) !important;
  z-index: 5;
}

/* ============================================
   PREMIUM BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: all var(--t-normal);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-text);
  color: var(--color-white);
  border: 2px solid var(--color-text);
}
.btn-primary:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-gold {
  background: var(--color-gold-gradient);
  color: var(--color-primary);
  border: 2px solid transparent;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-intense);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

/* ============================================
   UTILITIES
============================================ */
.text-center { text-align: center; }
.text-gold   { color: var(--color-gold); }
.mt-sm  { margin-top: 1rem; }
.mt-md  { margin-top: 2rem; }
.mt-lg  { margin-top: 3rem; }
.mb-sm  { margin-bottom: 1rem; }
.mb-md  { margin-bottom: 2rem; }
.mb-lg  { margin-bottom: 3rem; }
.mt-5   { margin-top: 3rem; }
.mb-0   { margin-bottom: 0; }
.gap-sm { gap: 0.5rem; }
.gap-md { gap: 1rem; }

/* ============================================
   MOBILE GLOBAL OVERRIDES (BULLETPROOF)
============================================ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-title { font-size: 28px !important; line-height: 1.25; margin-bottom: 12px; }
  .section-subtitle { font-size: 16px !important; margin-bottom: 30px !important; }
  .btn { padding: 14px 20px; width: 100%; justify-content: center; display: flex; text-align: center; font-size: 16px; }
}
