/* ==========================================================================
   ÇİÇEK YALITIM — BESPOKE INDUSTRIAL CORPORATE DESIGN SYSTEM
   ThemeForest-Caliber Premium Architectural & Engineering Identity
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Core Palette: Controlled Burgundy + Deep Charcoal + Warm White */
  --cicek-burgundy: #8B1E2B;
  --cicek-burgundy-hover: #721823;
  --cicek-burgundy-tint: #FBF1F2;
  --cicek-burgundy-dark: #5C121C;

  /* Surfaces & Dark Tones */
  --cicek-dark: #121316;
  --cicek-dark-surface: #16181D;
  --cicek-dark-card: #1F2228;
  --cicek-dark-border: #282C35;

  /* Warm White & Light Neutrals */
  --cicek-warm: #FBFBFA;
  --cicek-surface: #F4F3EE;
  --cicek-border: #E5E3DC;
  --cicek-border-light: #ECEAE3;

  /* Typography */
  --cicek-text-head: #121417;
  --cicek-text-body: #454952;
  --cicek-text-muted: #787D88;
  --cicek-text-light: #9FA4B0;

  /* Radius (Architectural, not overly rounded) */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  /* Subtle Shadows */
  --shadow-subtle: 0 4px 20px rgba(18, 19, 22, 0.04);
  --shadow-elevated: 0 12px 36px rgba(18, 19, 22, 0.08);
  --shadow-burgundy: 0 8px 24px rgba(139, 30, 43, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--cicek-text-body);
  background-color: var(--cicek-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  background-color: var(--cicek-warm);
}

img, video, svg {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  color: var(--cicek-text-head);
  letter-spacing: -0.025em;
  font-weight: 700;
}

/* Custom Architectural Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #121316;
}
::-webkit-scrollbar-thumb {
  background: #282C35;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--cicek-burgundy);
}

/* Selection */
::selection {
  background-color: var(--cicek-burgundy);
  color: #ffffff;
}

/* -------------------------------------------------------------
   BUTTONS (Architectural, Crisp & High-End)
   ------------------------------------------------------------- */
.btn-burgundy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: var(--cicek-burgundy);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-burgundy);
  text-decoration: none;
  border: 1px solid var(--cicek-burgundy);
  cursor: pointer;
}
.btn-burgundy:hover {
  background-color: var(--cicek-burgundy-hover);
  border-color: var(--cicek-burgundy-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(139, 30, 43, 0.35);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.btn-ghost-light:hover {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: transparent;
  color: var(--cicek-dark) !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  border: 1px solid var(--cicek-border);
  text-decoration: none;
  cursor: pointer;
}
.btn-outline-dark:hover {
  background-color: var(--cicek-dark);
  color: #ffffff !important;
  border-color: var(--cicek-dark);
  transform: translateY(-2px);
}

/* -------------------------------------------------------------
   EDITORIAL GRIDS & CARDS
   ------------------------------------------------------------- */
.editorial-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid var(--cicek-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.editorial-card:hover {
  border-color: var(--cicek-burgundy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.editorial-card-dark {
  position: relative;
  background-color: var(--cicek-dark-surface);
  border: 1px solid var(--cicek-dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.editorial-card-dark:hover {
  border-color: rgba(139, 30, 43, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

/* Image Zoom on hover */
.img-zoom-container {
  overflow: hidden;
}
.img-zoom-container img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.editorial-card:hover .img-zoom-container img,
.editorial-card-dark:hover .img-zoom-container img {
  transform: scale(1.06);
}

/* Subtle hairline borders */
.hairline-b {
  border-bottom: 1px solid var(--cicek-border);
}
.hairline-dark-b {
  border-bottom: 1px solid var(--cicek-dark-border);
}

/* Badge micro styling */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-xs);
}
