/* SK SOUL FOOD LTD - Unique Full-Screen Snap + Graphite + Mint Design */
/* No images - pure color, typography and modern clean UI */

:root {
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --text: #1E293B;
  --text-light: #64748B;
  --primary: #0F766E; /* Deep teal/mint */
  --accent: #14B8A6; /* Bright mint */
  --graphite: #1F2937;
  --border: #E2E8F0;
  --radius: 4px;
  --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.7;
}

/* Full-Screen Snap Sections */
.snap-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  position: relative;
  padding: 4rem 2rem;
}

.snap-section.dark {
  background: var(--graphite);
  color: #F1F5F9;
}

.snap-section.light {
  background: var(--bg);
}

/* Header */
header {
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Navigation */
.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

/* Typography - Large and bold for full-screen */
.snap-section h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.snap-section h2 {
  font-size: 2.25rem;
  font-weight: 600;
}

/* Cards - Clean border only, no shadow */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Buttons - Thin border, square-ish */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  text-decoration: none;
  border: 2px solid var(--text);
  background: transparent;
  color: var(--text);
  font-size: 0.95rem;
}

.btn:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

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

.btn-primary:hover {
  background: #0D5C5A;
  border-color: #0D5C5A;
}

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

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

/* Sidebar */
.sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

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

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

.pull-quote {
  font-size: 1.4rem;
  font-style: italic;
  border-left: 5px solid var(--accent);
  padding-left: 2rem;
  margin: 2.5rem 0;
  color: var(--text-light);
}

/* Mobile Menu */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

/* Footer */
footer {
  background: var(--graphite);
  color: #CBD5E1;
}

footer a {
  color: #CBD5E1;
}

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