/*
Theme Name: CodeForge Academy
Theme URI: https://codeforgeacademy.com
Author: CodeForge Academy
Author URI: https://codeforgeacademy.com
Description: A modern, dark-themed WordPress theme for CodeForge Academy - an online coding education platform.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: codeforge
*/

/* ===== CSS Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #020617;
  color: #f1f5f9;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== CSS Variables ===== */
:root {
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-200: #bae6fd;
  --primary-300: #7dd3fc;
  --primary-400: #38bdf8;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --primary-800: #075985;
  --primary-900: #0c4a6e;
  --primary-950: #082f49;

  --accent-50: #fdf4ff;
  --accent-100: #fae8ff;
  --accent-200: #f5d0fe;
  --accent-300: #f0abfc;
  --accent-400: #e879f9;
  --accent-500: #d946ef;
  --accent-600: #c026d3;
  --accent-700: #a21caf;
  --accent-800: #86198f;
  --accent-900: #701a75;
  --accent-950: #4a044e;

  --dark-50: #f8fafc;
  --dark-100: #f1f5f9;
  --dark-200: #e2e8f0;
  --dark-300: #cbd5e1;
  --dark-400: #94a3b8;
  --dark-500: #64748b;
  --dark-600: #475569;
  --dark-700: #334155;
  --dark-800: #1e293b;
  --dark-900: #0f172a;
  --dark-950: #020617;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== Utility Classes ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.gradient-text {
  background: linear-gradient(to right, var(--primary-400), var(--accent-400), var(--primary-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow {
  box-shadow: 0 0 40px rgba(14, 165, 233, 0.3), 0 0 80px rgba(217, 70, 239, 0.2);
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(14, 165, 233, 0.1);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(to right, var(--primary-500), var(--accent-500));
  color: white;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background-color: var(--dark-700);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--dark-600);
}

.btn-enroll {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  color: white;
}

.btn-enroll.popular {
  background: linear-gradient(to right, var(--primary-500), var(--accent-500));
}

.btn-enroll.popular:hover {
  opacity: 0.9;
}

.btn-enroll:not(.popular) {
  background-color: var(--dark-700);
}

.btn-enroll:not(.popular):hover {
  background-color: var(--dark-600);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-800);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(to bottom right, var(--primary-500), var(--accent-500));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.05);
}

.logo-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.logo-text span {
  color: var(--primary-400);
}

.main-nav {
  display: none;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.main-nav a {
  color: var(--dark-300);
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: white;
}

.header-actions {
  display: none;
}

@media (min-width: 768px) {
  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.header-actions .sign-in {
  color: var(--dark-300);
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
}

.header-actions .sign-in:hover {
  color: white;
}

.header-actions .start-free {
  padding: 0.5rem 1rem;
  background: linear-gradient(to right, var(--primary-500), var(--accent-500));
  color: white;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
}

.header-actions .start-free:hover {
  opacity: 0.9;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--dark-300);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle:hover {
  color: white;
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero {
    padding: 10rem 0 8rem;
  }
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14, 165, 233, 0.1), transparent, transparent);
}

.hero-glow-1 {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background-color: rgba(14, 165, 233, 0.2);
  border-radius: 50%;
  filter: blur(64px);
}

.hero-glow-2 {
  position: absolute;
  bottom: 25%;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background-color: rgba(217, 70, 239, 0.2);
  border-radius: 50%;
  filter: blur(64px);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--dark-800);
  border: 1px solid var(--dark-700);
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent-400);
}

.hero-badge span {
  font-size: 0.875rem;
  color: var(--dark-300);
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero h1 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 4.5rem; }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--dark-300);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

@media (min-width: 640px) {
  .hero-description { font-size: 1.25rem; }
}

.hero-stats {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: var(--dark-400);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.hero-stat-divider {
  width: 1px;
  height: 2rem;
  background-color: var(--dark-700);
}

/* Code Block Preview */
.code-preview {
  margin-top: 5rem;
  position: relative;
}

.code-preview-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark-950), transparent, transparent);
  z-index: 10;
  pointer-events: none;
}

.code-block {
  background-color: var(--dark-900);
  border: 1px solid var(--dark-700);
  border-radius: 0.75rem;
  padding: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
  font-family: 'Fira Code', monospace;
}

.code-block-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.code-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.code-dot.red { background-color: #ef4444; }
.code-dot.yellow { background-color: #eab308; }
.code-dot.green { background-color: #22c55e; }

.code-filename {
  margin-left: 1rem;
  font-size: 0.875rem;
  color: var(--dark-500);
}

.code-block pre {
  font-size: 0.875rem;
  overflow-x: auto;
  line-height: 1.7;
}

.code-block .keyword { color: var(--accent-400); }
.code-block .variable { color: var(--primary-300); }
.code-block .property { color: #4ade80; }
.code-block .string { color: #fde047; }
.code-block .punctuation { color: var(--dark-400); }
.code-block .comment { color: var(--dark-500); }

/* ===== Features Section ===== */
.features {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .features { padding: 8rem 0; }
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .section-header h2 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .section-header h2 { font-size: 3rem; }
}

.section-header p {
  font-size: 1.125rem;
  color: var(--dark-300);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  padding: 1.5rem;
  background-color: var(--dark-900);
  border: 1px solid var(--dark-800);
  border-radius: 1rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.2s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.feature-icon.blue { background: linear-gradient(to bottom right, var(--primary-500), var(--primary-600)); }
.feature-icon.purple { background: linear-gradient(to bottom right, var(--accent-500), var(--accent-600)); }
.feature-icon.green { background: linear-gradient(to bottom right, #22c55e, #16a34a); }
.feature-icon.yellow { background: linear-gradient(to bottom right, #eab308, #ca8a04); }
.feature-icon.pink { background: linear-gradient(to bottom right, #ec4899, #db2777); }
.feature-icon.orange { background: linear-gradient(to bottom right, #f97316, #ea580c); }

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--dark-400);
  line-height: 1.6;
}

/* ===== Learning Paths Section ===== */
.learning-paths {
  padding: 5rem 0;
  background-color: rgba(15, 23, 42, 0.5);
}

@media (min-width: 1024px) {
  .learning-paths { padding: 8rem 0; }
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .paths-grid { grid-template-columns: repeat(3, 1fr); }
}

.path-card {
  position: relative;
  background-color: var(--dark-900);
  border: 1px solid var(--dark-800);
  border-radius: 1rem;
  overflow: hidden;
}

.path-card-gradient {
  height: 0.5rem;
}

.path-card-gradient.blue { background: linear-gradient(to right, var(--primary-500), #3b82f6); }
.path-card-gradient.purple { background: linear-gradient(to right, var(--accent-500), #a855f7); }
.path-card-gradient.green { background: linear-gradient(to right, #22c55e, #14b8a6); }

.path-card-content {
  padding: 1.5rem;
}

.path-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.path-card > .path-card-content > p {
  color: var(--dark-400);
  margin-bottom: 1.5rem;
}

.path-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.path-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--dark-300);
}

.path-meta-item svg {
  width: 1rem;
  height: 1rem;
}

.path-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.path-skill {
  padding: 0.25rem 0.75rem;
  background-color: var(--dark-800);
  color: var(--dark-300);
  font-size: 0.875rem;
  border-radius: 9999px;
}

.path-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--dark-800);
}

.path-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.path-modules {
  color: var(--dark-400);
}

.path-popular-badge {
  padding: 0.25rem 0.75rem;
  background-color: rgba(217, 70, 239, 0.2);
  color: var(--accent-400);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.path-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.path-price {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
}

.path-original-price {
  font-size: 1.125rem;
  color: var(--dark-500);
  text-decoration: line-through;
}

.path-savings {
  font-size: 0.875rem;
  color: #4ade80;
  font-weight: 500;
}

/* ===== Interactive Demo Section ===== */
.interactive-demo {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .interactive-demo { padding: 8rem 0; }
}

.demo-container {
  max-width: 56rem;
  margin: 0 auto;
}

.demo-window {
  background-color: var(--dark-900);
  border: 1px solid var(--dark-700);
  border-radius: 1rem;
  overflow: hidden;
}

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: var(--dark-800);
  border-bottom: 1px solid var(--dark-700);
}

.demo-header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.demo-filename {
  margin-left: 1rem;
  font-family: 'Fira Code', monospace;
  font-size: 0.875rem;
  color: var(--dark-400);
}

.demo-content {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .demo-content {
    grid-template-columns: 1fr 1fr;
  }
}

.demo-editor, .demo-output {
  padding: 1rem;
}

.demo-editor {
  border-bottom: 1px solid var(--dark-700);
}

@media (min-width: 1024px) {
  .demo-editor {
    border-bottom: none;
    border-right: 1px solid var(--dark-700);
  }
}

.demo-editor pre {
  font-family: 'Fira Code', monospace;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--dark-100);
  white-space: pre-wrap;
  min-height: 16rem;
}

.demo-output {
  background-color: rgba(2, 6, 23, 0.5);
}

.demo-output-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--dark-400);
}

.demo-output-header svg {
  width: 1rem;
  height: 1rem;
  color: #22c55e;
}

.demo-output pre {
  font-family: 'Fira Code', monospace;
  font-size: 0.875rem;
  color: #4ade80;
  min-height: 14rem;
}

.demo-note {
  text-align: center;
  color: var(--dark-400);
  margin-top: 1.5rem;
}

/* ===== Testimonials Section ===== */
.testimonials {
  padding: 5rem 0;
  background-color: rgba(15, 23, 42, 0.5);
}

@media (min-width: 1024px) {
  .testimonials { padding: 8rem 0; }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  padding: 1.5rem;
  background-color: var(--dark-900);
  border: 1px solid var(--dark-800);
  border-radius: 1rem;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  fill: #facc15;
  color: #facc15;
}

.testimonial-content {
  color: var(--dark-300);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  color: white;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--dark-400);
}

/* ===== FAQ Section ===== */
.faq {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .faq { padding: 8rem 0; }
}

.faq-container {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--dark-900);
  border: 1px solid var(--dark-800);
  border-radius: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: rgba(30, 41, 59, 0.5);
}

.faq-question span {
  font-size: 1.125rem;
  font-weight: 500;
  color: white;
  padding-right: 1rem;
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--dark-400);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--dark-300);
  line-height: 1.6;
}

/* ===== CTA Section ===== */
.cta {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cta { padding: 8rem 0; }
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14, 165, 233, 0.1), rgba(217, 70, 239, 0.1), rgba(14, 165, 233, 0.1));
}

.cta-glow-1 {
  position: absolute;
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background-color: rgba(14, 165, 233, 0.2);
  border-radius: 50%;
  filter: blur(64px);
}

.cta-glow-2 {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background-color: rgba(217, 70, 239, 0.2);
  border-radius: 50%;
  filter: blur(64px);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .cta h2 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .cta h2 { font-size: 3rem; }
}

.cta > .cta-content > p {
  font-size: 1.125rem;
  color: var(--dark-300);
  margin-bottom: 2.5rem;
}

.cta-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(30, 41, 59, 0.5);
  border: 1px solid var(--dark-700);
  border-radius: 9999px;
}

.cta-benefit svg {
  width: 1rem;
  height: 1rem;
  color: #4ade80;
}

.cta-benefit span {
  font-size: 0.875rem;
  color: var(--dark-200);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.cta-note {
  color: var(--dark-400);
}

/* ===== Footer ===== */
.site-footer {
  background-color: var(--dark-900);
  border-top: 1px solid var(--dark-800);
  padding: 3rem 0 4rem;
}

@media (min-width: 1024px) {
  .site-footer { padding: 4rem 0; }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(6, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { gap: 3rem; }
}

.footer-brand {
  grid-column: span 2;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--dark-400);
  max-width: 20rem;
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--dark-400);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-800);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--dark-400);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--dark-500);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: var(--dark-900);
}

::-webkit-scrollbar-thumb {
  background-color: var(--dark-600);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--dark-500);
}
