/* =====================================================
   LAMPIN' CLUB - COMPLETE STYLES
   Minimal Sandy Gray Palette - Index & Blog
   ===================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  /* Base Colors */
  --background: linear-gradient(135deg, #2e2e2e 0%, #3a3632 25%, #323232 50%, #2e2e2e 75%, #3a3a37 100%);
  --bg-primary: #242424;
  --bg-secondary: #2e2e2e;
  
  /* Text Colors */
  --text-primary: #f7f5f3;
  --text-secondary: #e0ddd8;
  --text-muted: #c4c0b8;
  
  /* Accent Colors */
  --accent-primary: #d4c4a8;
  --accent-secondary: #f7f3ef;
  --accent-gray: #9a9a9a;
  --accent-stone: #b8b5b0;
  
  /* Glass Elements */
  --glass-bg: rgba(247, 245, 243, 0.08);
  --glass-border: rgba(247, 245, 243, 0.15);
  --glass-hover-bg: rgba(247, 245, 243, 0.12);
  --glass-hover-border: rgba(247, 245, 243, 0.22);
  --glass-stone-bg: rgba(184, 181, 176, 0.15);
  --glass-stone-border: rgba(184, 181, 176, 0.25);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #d4c4a8 0%, #f7f3ef 100%);
  --gradient-stone: linear-gradient(135deg, #b8b5b0 0%, #f4f2ee 50%, #d4c4a8 100%);
  
  /* Typography */
  --body-font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --heading-font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  
  /* Spacing */
  --space-xs: 0.75rem;
  --space-sm: 1.25rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  
  /* Border radius */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(46, 46, 46, 0.15);
  --shadow-md: 0 4px 24px rgba(46, 46, 46, 0.2);
  --shadow-lg: 0 8px 48px rgba(46, 46, 46, 0.25);
  --shadow-xl: 0 16px 72px rgba(46, 46, 46, 0.3);
}

/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  line-height: 1.7;
  letter-spacing: 0.02em;
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-primary);
  font-size: 16px;
  background: var(--background);
  overflow-x: hidden;
  font-weight: 400;
  position: relative;
}

/* Atmospheric background overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 25%, rgba(212, 196, 168, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(247, 243, 239, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 45% 55%, rgba(154, 154, 154, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 65% 35%, rgba(184, 181, 176, 0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
}

::selection {
  background: rgba(212, 196, 168, 0.3);
  color: #fff;
}

::-moz-selection {
  background: rgba(212, 196, 168, 0.3);
  color: #fff;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  color: var(--accent-primary);
  font-family: var(--heading-font);
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }

p {
  font-weight: 400;
  color: var(--text-primary);
  font-size: 1.125rem;
  line-height: 1.8;
  font-family: var(--body-font);
  margin-bottom: 1.75rem;
  max-width: 65ch;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

a:hover, a:focus {
  color: var(--accent-secondary);
  text-decoration: none;
}

a:focus, button:focus, select:focus {
  outline: 2px solid rgba(212, 196, 168, 0.5);
  outline-offset: 2px;
}

/* ===== LAYOUT ===== */
.container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  padding-left: 0;
  padding-right: 0;
}

/* ===== NAVIGATION ===== */
.navbar {
  background: transparent !important;
  backdrop-filter: none;
  border-bottom: none;
  padding: var(--space-md) 0;
  min-height: auto;
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 100;
}

.navbar.scrolled {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navbar-brand {
  align-items: center;
  display: flex;
}

.navbar-brand .navbar-item {
  padding: var(--space-sm);
}

.navbar-item {
  margin: 0;
  padding: var(--space-xs) var(--space-sm);
}

/* Logo styling */
.navbar-item img {
  max-height: 80px;
  width: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.1);
}

.navbar-item img:hover {
  filter: brightness(1.2);
  transform: scale(1.02);
}

/* Larger logo when not scrolled */
.navbar:not(.scrolled) .navbar-item img {
  max-height: 120px;
}

/* Smaller logo when scrolled */
.navbar.scrolled .navbar-item img {
  max-height: 60px;
}

.navbar-item .navbar-link {
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.navbar-item .navbar-link:active, 
.navbar-item .navbar-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  transform: translateY(-1px);
}

.navbar-menu {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
}

.navbar-end {
  display: flex;
  align-items: center;
  margin-left: auto;
}

/* Mobile navigation */
.navbar-burger {
  color: rgba(255, 255, 255, 0.9);
  height: 3rem;
  width: 3rem;
  border: 0;
  border-radius: var(--radius-sm);
  background-color: rgba(42, 47, 53, 0.8);
  cursor: pointer;
  display: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: auto;
}

.navbar-burger:hover {
  color: #fff;
  background-color: rgba(42, 47, 53, 0.95);
  transform: scale(1.05);
}

.navbar-burger span {
  background-color: #fff;
  display: block;
  height: 2px;
  width: 20px;
  margin: 4px auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.hero-background {
  background: transparent;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero Background Photo */
.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/lampin.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  transition: all 0.6s ease;
}

/* Hero Photo Overlay */
.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg, 
    rgba(46, 46, 46, 0.3) 0%, 
    rgba(46, 46, 46, 0.1) 30%, 
    rgba(46, 46, 46, 0.1) 70%, 
    rgba(46, 46, 46, 0.3) 100%
  );
  z-index: -1;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.hero-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) 0;
  position: relative;
  z-index: 10;
}

.hero-text {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Logo styling */
.hero-subtitle img {
  filter: drop-shadow(0 4px 12px rgba(46, 46, 46, 0.3));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-subtitle img:hover {
  filter: drop-shadow(0 6px 20px rgba(46, 46, 46, 0.4));
  transform: scale(1.02);
}

/* Glassmorphism background for logo */
.hero-text::before {
  content: '';
  position: absolute;
  top: -2rem;
  left: -2rem;
  right: -2rem;
  bottom: -2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  opacity: 0.7;
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-text:hover::before {
  opacity: 0.8;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ===== BLOG POST STYLES ===== */
.blog-post {
  padding: var(--space-2xl) 0;
}

.blog-post .container {
  max-width: 800px;
  margin: 0 auto;
}

/* Post Header */
.post-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-xl);
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.post-category {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.post-date {
  color: var(--text-muted);
  font-weight: 500;
}

.reading-time {
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
}

.reading-time::before {
  content: "•";
  margin-right: var(--space-xs);
  color: var(--accent-stone);
}

.post-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--accent-primary);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
  max-width: 15ch;
  margin-left: auto;
  margin-right: auto;
}

.author-byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--bg-primary);
  font-size: 1.125rem;
}

.author-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.author-name {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
}

.author-role {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 400;
}

/* Featured Image */
.featured-image {
  margin-bottom: var(--space-2xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
}

.featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Post Content */
.post-content {
  color: var(--text-primary);
  line-height: 1.8;
  font-size: 1.125rem;
}

.post-content p {
  max-width: none;
  margin-bottom: var(--space-lg);
  color: var(--text-secondary);
}

.post-lead {
  margin-bottom: var(--space-xl);
}

.post-lead p {
  font-size: 1.375rem;
  line-height: 1.6;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 0;
  border-left: 4px solid var(--accent-primary);
  padding-left: var(--space-lg);
  font-style: italic;
}

.post-content h2 {
  color: var(--accent-secondary);
  font-size: 2rem;
  font-weight: 600;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.post-content h2:first-of-type {
  margin-top: var(--space-xl);
}

.post-content h3 {
  color: var(--accent-primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.post-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.post-content em {
  color: var(--accent-primary);
  font-style: italic;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(212, 196, 168, 0.1) 0%, rgba(247, 243, 239, 0.08) 100%);
  border: 1px solid rgba(212, 196, 168, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 196, 168, 0.05) 0%, transparent 60%);
  pointer-events: none;
  border-radius: var(--radius-md);
}

.highlight-box p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--accent-primary);
  font-weight: 500;
  margin: 0;
  text-align: center;
  font-style: italic;
  position: relative;
  z-index: 2;
}

/* Tip Box */
.tip-box {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--accent-stone);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  position: relative;
}

.tip-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(184, 181, 176, 0.05) 0%, transparent 60%);
  pointer-events: none;
  border-radius: var(--radius-md);
}

.tip-box h3 {
  color: var(--accent-stone);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 2;
}

.tip-box p {
  color: var(--text-secondary);
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Quote Styling */
.post-quote {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--accent-primary);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin: var(--space-2xl) 0;
  font-style: italic;
  font-size: 1.375rem;
  line-height: 1.6;
  color: var(--text-primary);
  text-align: center;
  position: relative;
}

.post-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 196, 168, 0.05) 0%, transparent 60%);
  pointer-events: none;
  border-radius: var(--radius-md);
}

.post-quote cite {
  display: block;
  margin-top: var(--space-md);
  font-size: 1rem;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* Blockquote Styling */
blockquote {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--accent-primary);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin: var(--space-2xl) 0;
  font-style: italic;
  font-size: 1.375rem;
  line-height: 1.6;
  color: var(--text-primary);
  text-align: center;
  position: relative;
}

blockquote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 196, 168, 0.05) 0%, transparent 60%);
  pointer-events: none;
  border-radius: var(--radius-md);
}

blockquote p {
  margin: 0;
  position: relative;
  z-index: 2;
}

blockquote cite {
  display: block;
  margin-top: var(--space-md);
  font-size: 1rem;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* Post Conclusion */
.post-conclusion {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-2xl) 0;
  text-align: center;
  position: relative;
}

.post-conclusion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 196, 168, 0.05) 0%, transparent 60%);
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.post-conclusion p {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 2;
}

.post-conclusion p:last-child {
  margin-bottom: 0;
  color: var(--accent-primary);
  font-weight: 600;
}

/* Post Footer */
.post-footer {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--glass-border);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  justify-content: center;
}

.tag {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--glass-hover-bg);
  border-color: var(--glass-hover-border);
  color: var(--text-secondary);
}

/* Author Bio */
.author-bio {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  position: relative;
}

.author-bio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.author-avatar-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--bg-primary);
  font-size: 2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.author-bio-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.author-bio-content h3 {
  color: var(--accent-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.author-bio-content p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.post-navigation {
  text-align: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  font-size: 1rem;
}

.nav-link:hover {
  background: var(--glass-hover-bg);
  border-color: var(--glass-hover-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--text-primary);
}

.nav-arrow {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.nav-link:hover .nav-arrow {
  transform: translateX(-3px);
}

/* ===== PAGE HEADERS ===== */
.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  color: var(--accent-primary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-align: center;
}

.page-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== GUIDES GRID ===== */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.guide-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.guide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.guide-card:hover {
  background: var(--glass-hover-bg);
  border-color: var(--glass-hover-border);
  transform: translateY(-8px);
  box-shadow: 
    0 20px 80px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.guide-image {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--bg-secondary);
}

/* Guide image backgrounds */
.guide-image-spring {
  background-image: url('../img/tealamp.webp');
}

.guide-image-winter {
  background-image: url('../img/winterlamp.png');
}

.guide-image-home {
  background-image: url('../img/home.jpg');
}

.guide-image-urban {
  background-image: url('../img/city.webp');
}

.guide-image-summer {
  background-image: url('../img/benchlamp.webp');
}

/* Guide badges */
.guide-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 3;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-badge.spring { 
  background: linear-gradient(135deg, rgba(154, 154, 154, 0.9), rgba(212, 196, 168, 0.9));
  color: var(--bg-primary); 
}

.guide-badge.winter { 
  background: linear-gradient(135deg, rgba(247, 243, 239, 0.9), rgba(200, 185, 156, 0.9));
  color: var(--bg-primary); 
}

.guide-badge.home { 
  background: linear-gradient(135deg, rgba(244, 242, 238, 0.9), rgba(212, 196, 168, 0.9));
  color: var(--bg-primary); 
}

.guide-badge.urban { 
  background: linear-gradient(135deg, rgba(184, 181, 176, 0.9), rgba(154, 154, 154, 0.9));
  color: var(--bg-primary); 
}

.guide-content {
  padding: var(--space-xl);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.guide-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.guide-title {
  margin-bottom: var(--space-md);
  flex-grow: 0;
  font-size: 1.375rem;
}

.guide-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.4;
}

.guide-title a:hover {
  color: var(--accent-primary);
}

.guide-excerpt {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  flex-grow: 1;
  font-size: 1.063rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--gradient-primary);
  color: var(--bg-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  align-self: flex-start;
  margin-top: auto;
  letter-spacing: 0.02em;
}

.read-more:hover {
  transform: translateX(4px) translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--bg-primary);
}

.read-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-more:hover svg {
  transform: translateX(2px);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  margin: var(--space-2xl) 0;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.newsletter-title {
  color: var(--accent-secondary);
  margin-bottom: var(--space-md);
  font-size: 2rem;
  position: relative;
  z-index: 2;
}

.newsletter-description {
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.newsletter-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  gap: var(--space-sm);
  position: relative;
  z-index: 2;
}

.newsletter-input {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 2px rgba(212, 196, 168, 0.2);
  background: var(--glass-hover-bg);
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-submit {
  padding: var(--space-sm) var(--space-md);
  background: var(--gradient-primary);
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.feature-card:hover {
  background: var(--glass-hover-bg);
  border-color: var(--glass-hover-border);
  transform: translateY(-4px);
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.feature-card .media-content h3 {
  color: var(--accent-primary);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
  font-weight: 500;
}

.feature-card .media-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0;
}

.feature-card .svg-icon {
  filter: brightness(1.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .svg-icon {
  filter: brightness(1.3);
  transform: scale(1.05);
}

/* ===== IMAGE CARDS ===== */
.image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.image-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 16px 64px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: var(--glass-hover-border);
}

.image-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-card:hover::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, transparent 100%);
}

/* Background image styles */
.bg-image {
  background-image: url('../img/lampin.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-image-bench {
  background-image: url('../img/city.webp');
}

.bg-image-winter {
  background-image: url('../img/winterlamp.png');
}

.bg-image-home {
  background-image: url('../img/home.jpg');
}
.bg-image-summer {
  background-image: url('../img/benchlamp.webp');
}
/* ===== STATS SECTION ===== */
.stats-section {
  margin: var(--space-2xl) 0;
  padding: var(--space-xl) 0;
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.stat-value {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: var(--space-xs);
  line-height: 1;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.stat-value.animate {
  animation: countUp 0.8s ease-out forwards;
}

.stat-label {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FUTURE PLANS SECTION ===== */
.future-header {
  font-size: 2.5rem;
  color: var(--accent-secondary);
  font-weight: 500;
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.future-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  height: 100%;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.future-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.future-card:hover {
  background: var(--glass-hover-bg);
  border-color: var(--glass-hover-border);
  transform: translateY(-6px);
  box-shadow: 
    0 16px 64px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.future-card h3 {
  color: var(--accent-gray);
  margin-bottom: var(--space-md);
  font-size: 1.375rem;
}

.future-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0;
}

/* ===== STARRY SKY ===== */
.starry-sky {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.star {
  position: absolute;
  background: var(--accent-secondary);
  border-radius: 50%;
  animation: twinkle 4s infinite;
  box-shadow: 0 0 6px rgba(247, 243, 239, 0.6);
}

@keyframes twinkle {
  0%, 100% { 
    opacity: 0.3; 
    transform: scale(1);
    box-shadow: 0 0 6px rgba(247, 243, 239, 0.4);
  }
  50% { 
    opacity: 0.9; 
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(247, 243, 239, 0.8);
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: var(--space-2xl) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

/* Footer glassmorphism overlay */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg, 
    rgba(247, 245, 243, 0.02) 0%, 
    transparent 40%, 
    rgba(184, 181, 176, 0.01) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Footer container */
.footer .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Scroll to top section */
.scroll-top {
  margin-bottom: var(--space-lg);
}

.scroll-top a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(247, 245, 243, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(247, 245, 243, 0.12);
  border-radius: 50%;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 300;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 20px rgba(46, 46, 46, 0.08),
    inset 0 1px 0 rgba(247, 245, 243, 0.08);
  position: relative;
}

.scroll-top a::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, rgba(212, 196, 168, 0.1), rgba(184, 181, 176, 0.1));
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.scroll-top a:hover {
  color: var(--text-primary);
  background: rgba(247, 245, 243, 0.1);
  border-color: rgba(212, 196, 168, 0.2);
  transform: translateY(-6px) scale(1.05);
  box-shadow: 
    0 8px 32px rgba(46, 46, 46, 0.15),
    0 4px 16px rgba(212, 196, 168, 0.1),
    inset 0 1px 0 rgba(247, 245, 243, 0.15);
}

.scroll-top a:hover::before {
  opacity: 1;
}

.scroll-top a:active {
  transform: translateY(-4px) scale(1.02);
}

/* Arrow icon styling */
.scroll-top a i {
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  user-select: none;
  transition: transform 0.3s ease;
}

.scroll-top a:hover i {
  transform: translateY(-2px);
}

/* Copyright section */
.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.copyright:hover {
  opacity: 1;
}

/* ===== UTILITY CLASSES ===== */
.has-text-centered {
  text-align: center !important;
}

.is-size-4 {
  font-size: 1.5rem !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-6 {
  margin-bottom: 3.5rem !important;
}

.is-multiline {
  flex-wrap: wrap !important;
}

.columns {
  display: flex;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}

.columns:last-child {
  margin-bottom: -0.75rem;
}

.columns:not(:last-child) {
  margin-bottom: calc(1.5rem - 0.75rem);
}

.column {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0.75rem;
}

.is-4 {
  flex: none;
  width: 33.33333337%;
}

.is-8 {
  flex: none;
  width: 66.66666674%;
}

.is-10 {
  flex: none;
  width: 83.33333337%;
}

.is-offset-1 {
  margin-left: 8.33333337%;
}

.content {
  color: var(--text-primary);
}

.content p {
  margin-bottom: 1rem;
}

.media {
  align-items: flex-start;
  display: flex;
  text-align: inherit;
}

.media-content {
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  text-align: inherit;
}

.media-right {
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
  margin-left: 1rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media screen and (max-width: 1023px) {
  .container {
    max-width: 765px;
    padding: 0 var(--space-md);
  }
  
  .navbar {
    padding: var(--space-md) 0;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .columns {
    flex-direction: column;
  }

  .is-4, .is-8, .is-10 {
    width: 100%;
  }

  .is-offset-1 {
    margin-left: 0;
  }

  .guides-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  /* Hero responsive */
  .hero {
    min-height: 80vh;
  }

  .hero-body {
    padding: var(--space-xl) 0;
  }

  .hero-text::before {
    top: -1.5rem;
    left: -1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
  }

  /* Mobile navigation */
  .navbar-menu {
    display: none;
    position: absolute;
    left: var(--space-md);
    right: var(--space-md);
    top: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: var(--space-lg);
    box-shadow: 
      0 16px 64px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 100;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    margin-top: var(--space-sm);
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-burger {
    display: block;
    margin-top: 0;
    position: relative;
  }

  /* Mobile logo adjustments */
  .navbar-item img {
    max-height: 70px;
  }

  .navbar:not(.scrolled) .navbar-item img {
    max-height: 90px;
  }

  .navbar.scrolled .navbar-item img {
    max-height: 50px;
  }
  
  .navbar-burger.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  
  .navbar-burger.is-active span:nth-child(2) {
    opacity: 0;
  }
  
  .navbar-burger.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  
  .navbar-item {
    display: block;
    text-align: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--glass-border);
  }
  
  .navbar-item:last-child {
    border-bottom: none;
  }

  /* Author bio responsive */
  .author-bio {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .container {
    max-width: 540px;
    padding: 0 var(--space-md);
  }
  
  .section {
    padding: var(--space-xl) 0;
  }

  .guides-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .guide-image {
    height: 220px;
  }

  .guide-content {
    padding: var(--space-lg);
  }

  .guide-title {
    font-size: 1.25rem;
  }

  .guide-excerpt {
    font-size: 1rem;
  }

  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }

  .stats-section {
    padding: var(--space-lg) 0;
    margin: var(--space-xl) 0;
  }

  .stat-value {
    font-size: 2.5rem;
  }

  .future-header {
    font-size: 2rem;
    margin-bottom: var(--space-xl);
  }

  .hero {
    min-height: 70vh;
  }

  .hero-text::before {
    top: -1rem;
    left: -1rem;
    right: -1rem;
    bottom: -1rem;
  }

  /* Blog post responsive */
  .blog-post {
    padding: var(--space-xl) 0;
  }

  .blog-post .container {
    padding: 0 var(--space-md);
  }

  .post-header {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
  }

  .post-meta {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .post-title {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: var(--space-md);
    max-width: none;
  }

  .author-byline {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .author-details {
    align-items: center;
    text-align: center;
  }

  .featured-image {
    margin-bottom: var(--space-xl);
    border-radius: var(--radius-md);
  }

  .featured-image img {
    height: 300px;
  }

  .post-content {
    font-size: 1.063rem;
  }

  .post-lead p {
    font-size: 1.25rem;
    padding-left: var(--space-md);
  }

  .post-content h2 {
    font-size: 1.625rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
  }

  .post-content h3 {
    font-size: 1.375rem;
  }

  .post-content p {
    margin-bottom: var(--space-md);
  }

  .highlight-box,
  .tip-box {
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
  }

  .post-quote,
  blockquote {
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    font-size: 1.125rem;
  }

  .post-conclusion {
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
  }

  .post-footer {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
  }

  .post-tags {
    margin-bottom: var(--space-lg);
  }

  .author-bio {
    padding: var(--space-lg);
    gap: var(--space-md);
  }

  .author-avatar-large {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .nav-link {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .columns {
    flex-direction: column;
  }

  .is-4, .is-8, .is-10 {
    width: 100%;
  }

  .is-offset-1 {
    margin-left: 0;
  }

  .guides-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .guide-image {
    height: 200px;
  }

  .guide-content {
    padding: var(--space-md);
  }

  .guide-title {
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .guide-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .read-more {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.85rem;
  }

  .newsletter {
    padding: var(--space-lg);
  }

  .newsletter-title {
    font-size: 1.5rem;
  }

  .feature-card,
  .future-card {
    padding: var(--space-md);
  }

  .stats-section {
    padding: var(--space-md) 0;
  }

  .stat-value {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .future-header {
    font-size: 1.75rem;
  }

  p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-body {
    padding: var(--space-lg) 0;
  }

  .hero-text::before {
    top: -0.75rem;
    left: -0.75rem;
    right: -0.75rem;
    bottom: -0.75rem;
    border-radius: var(--radius-md);
  }

  .navbar-burger {
    margin-top: 0;
    position: relative;
  }

  /* Small mobile logo adjustments */
  .navbar-item img {
    max-height: 60px;
  }

  .navbar:not(.scrolled) .navbar-item img {
    max-height: 75px;
  }

  .navbar.scrolled .navbar-item img {
    max-height: 45px;
  }

  /* Blog post mobile styles */
  .blog-post {
    padding: var(--space-lg) 0;
  }

  .blog-post .container {
    padding: 0 var(--space-sm);
  }

  .post-header {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
  }

  .post-meta {
    font-size: 0.8rem;
  }

  .post-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    line-height: 1.3;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .featured-image {
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-sm);
  }

  .featured-image img {
    height: 250px;
  }

  .post-content {
    font-size: 1rem;
    line-height: 1.7;
  }

  .post-lead p {
    font-size: 1.125rem;
    padding-left: var(--space-sm);
  }

  .post-content h2 {
    font-size: 1.5rem;
    margin-top: var(--space-lg);
  }

  .post-content h3 {
    font-size: 1.25rem;
  }

  .highlight-box,
  .tip-box {
    padding: var(--space-md);
    margin: var(--space-md) 0;
  }

  .highlight-box p {
    font-size: 1.125rem;
  }

  .post-quote,
  blockquote {
    padding: var(--space-md);
    margin: var(--space-lg) 0;
    font-size: 1rem;
  }

  .post-conclusion {
    padding: var(--space-md);
    margin: var(--space-lg) 0;
  }

  .post-tags {
    gap: var(--space-xs);
  }

  .tag {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
  }

  .author-bio {
    padding: var(--space-md);
    gap: var(--space-sm);
  }

  .author-avatar-large {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .author-bio-content h3 {
    font-size: 1.125rem;
  }

  .author-bio-content p {
    font-size: 0.9rem;
  }

  .nav-link {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
    width: 100%;
    justify-content: center;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: high) {
  :root {
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --background: #000000;
  }
}

/* Focus indicators */
.navbar-link:focus {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* ===== MAILERLITE NEWSLETTER FORM ===== */
.newsletter-section {
    padding: var(--space-2xl) 0;
    position: relative;
}

.form-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    border-radius: var(--radius-xl);
}

.form-header {
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

.form-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--accent-secondary);
    margin-bottom: var(--space-md);
    font-family: var(--heading-font);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.form-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
    font-family: var(--body-font);
}

.form-fields-row {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.form-field {
    flex: 1;
    text-align: left;
}

.form-field.submit-field {
    flex: 0 0 auto;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    font-size: 0.875rem;
    font-family: var(--body-font);
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--text-primary);
    font-family: var(--body-font);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: var(--glass-hover-bg);
    box-shadow: 
        0 0 0 2px rgba(212, 196, 168, 0.2),
        var(--shadow-md);
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: var(--text-muted);
    font-style: italic;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    justify-content: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.checkbox-input {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    accent-color: var(--accent-primary);
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
    font-family: var(--body-font);
    text-align: left;
}

.checkbox-label a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.submit-btn {
    min-width: 180px;
    padding: var(--space-sm) var(--space-xl);
    background: var(--gradient-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--body-font);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--gradient-stone);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-footer {
    margin-top: var(--space-lg);
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--body-font);
    position: relative;
    z-index: 2;
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--body-font);
    position: relative;
    z-index: 2;
}

.powered-by a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.powered-by a:hover {
    color: var(--accent-secondary);
}

/* Success and Error Messages */
.success-message {
    display: none;
    background: linear-gradient(135deg, rgba(184, 181, 176, 0.9), rgba(212, 196, 168, 0.9));
    color: var(--bg-primary);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    text-align: center;
    font-weight: 600;
    font-family: var(--body-font);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
}

.success-message.show {
    display: block;
    animation: slideIn 0.4s ease-out;
}

.error-message {
    display: none;
    background: linear-gradient(135deg, rgba(154, 154, 154, 0.9), rgba(184, 181, 176, 0.9));
    color: var(--bg-primary);
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    text-align: center;
    font-size: 0.875rem;
    font-family: var(--body-font);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
}

.error-message.show {
    display: block;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .form-container {
        padding: var(--space-xl);
        margin: 0 var(--space-md);
    }
    
    .form-fields-row {
        flex-direction: column;
        gap: var(--space-md);
        align-items: stretch;
    }
    
    .form-field.submit-field {
        flex: 1;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .checkbox-group {
        text-align: left;
        max-width: none;
    }
}

@media screen and (max-width: 480px) {
    .newsletter-section {
        padding: var(--space-xl) 0;
    }
    
    .form-container {
        padding: var(--space-lg);
        margin: 0 var(--space-sm);
        border-radius: var(--radius-lg);
    }

    .form-title {
        font-size: 1.75rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .form-fields-row {
        gap: var(--space-sm);
    }
    
    .form-input {
        padding: var(--space-sm);
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
    }
}