/* GPT HÅGASLETTA 10 AS — Dreamy Lavender + Mint Design */
/* Very rounded, soft, premium feel */

:root {
  --bg: #F8F5F0;
  --surface: #FFFFFF;
  --text: #2C2C2C;
  --text-light: #5C5C5C;
  --primary: #A78BFA;
  --accent: #6EE7B7;
  --border: #E8E2D9;
  --radius: 30px;
  --shadow: 0 15px 35px -10px rgba(167, 139, 250, 0.15);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
}

h1, h2, .serif {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

/* Dreamy Header */
header {
  background: rgba(248, 245, 240, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

/* Horizontal Scroll Sections */
.horizontal-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding-bottom: 2rem;
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.scroll-item {
  flex: 0 0 85%;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .scroll-item {
    flex: 0 0 45%;
  }
}

/* Beautiful Cards */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px) scale(1.01);
}

/* Tags */
.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  color: white;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid var(--text);
  background: transparent;
  color: var(--text);
}

.btn:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: #8B6EF5;
  border-color: #8B6EF5;
}

/* Form */
input, textarea {
  width: 100%;
  padding: 18px 24px;
  border: 2px solid var(--border);
  border-radius: 20px;
  font-size: 1rem;
  background: var(--surface);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.1);
}

/* Article */
.article-content {
  max-width: 720px;
  margin: 0 auto;
}

.article-content h2 {
  font-size: 1.8rem;
  margin-top: 3.5rem;
  color: var(--primary);
}

.pull-quote {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  border-left: 6px solid var(--accent);
  padding-left: 2.5rem;
  margin: 3rem 0;
}

/* Footer */
footer {
  background: #2C2C2C;
  color: #E8E2D9;
}

footer a:hover {
  color: var(--accent);
}