/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--primary-white);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5 {
  font-weight: 700;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Hero section içindeki gradient text için beyaz renk */
.hero-section .gradient-text {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--primary-white);
  background-clip: unset;
  color: var(--primary-white);
  font-weight: 700;
}
