/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap");

/* CSS Variables for NKG Grup Design System (UI Revamp) */
:root {
  /* Colors */
  --color-primary: #064e3b;
  --color-primary-dark: #022c22;
  --color-secondary: #000000; /* Koyu Siyah (Daha keskin Coca-Cola hissi) */
  --color-accent: #eab308;
  --color-bg-light: #f8f9fa;
  --color-bg-white: #ffffff;
  --color-bg-gray: #f1f5f9;

  --color-text-main: #334155;
  --color-text-light: #64748b;
  --color-text-inverse: #ffffff;

  --color-border: #e2e8f0;

  /* Typography */
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-modern: "Manrope", sans-serif;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-10: 5rem;
  --space-12: 6rem;
  --space-16: 8rem;
  --space-20: 10rem;
  --space-section: 8rem 1.5rem; /* Daha devasa boşluklar */

  /* Radii (Coca-Cola devasa oval hatlar) */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 48px;
  --radius-3xl: 64px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 10px 30px -5px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 40px -10px rgb(0 0 0 / 0.15);
  --shadow-hover: 0 25px 50px -12px rgb(0 0 0 / 0.25);

  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gradients */
.bg-gradient-warm {
  background: linear-gradient(
    135deg,
    #8B6914 0%,
    #D4AF37 35%,
    #C49A3A 65%,
    #6B5410 100%
  ); /* Koyu altın multi-stop geçişi */
  height: 730px !important;
  min-height: auto !important;
}
.bg-gradient-cool {
  background: linear-gradient(180deg, #c2e59c 0%, #64b3f4 100%);
  background: linear-gradient(180deg, #00f2fe 0%, #4facfe 100%);
}
.bg-gradient-fresh {
  background: linear-gradient(180deg, #d4fc79 0%, #96e6a1 100%);
}
.bg-gradient-teal-yellow {
  background: linear-gradient(
    135deg,
    #8B6914 0%,
    #D4AF37 35%,
    #C49A3A 65%,
    #6B5410 100%
  ); /* Koyu altın multi-stop geçişi */
}

/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-weight: 800; /* Daha kalın, daha vurucu başlıklar */
  line-height: 1.1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: var(--space-5);
} /* Daha büyük hero h1 */
h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.04em;
}
h3 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

p {
  margin-bottom: var(--space-4);
  font-size: 1.125rem;
}
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--color-primary-dark);
}
ul,
ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-6);
} /* Daha geniş container */
.section {
  padding: var(--space-10) 0;
  position: relative;
} /* Section padding ayarlandı */

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-2 {
  margin-bottom: var(--space-2) !important;
}
.mb-4 {
  margin-bottom: var(--space-4) !important;
}
.mb-6 {
  margin-bottom: var(--space-6) !important;
}
.mb-8 {
  margin-bottom: var(--space-8) !important;
}
.mb-12 {
  margin-bottom: var(--space-12) !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-4 {
  margin-top: var(--space-4) !important;
}
.mt-8 {
  margin-top: var(--space-8) !important;
}
.mt-12 {
  margin-top: var(--space-12) !important;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-6);
}
.grid-cols-2 {
  grid-template-columns: repeat(1, 1fr);
}
.grid-cols-3 {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Flex */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-2 {
  gap: var(--space-2);
}
.gap-4 {
  gap: var(--space-4);
}
.gap-8 {
  gap: var(--space-8);
}
