/* CSS Design System for DessertGnuss - Luxurious Dark Chocolate & Cherry Glassmorphism Theme */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playball&family=Montserrat:ital,wght@0,300..900;1,300..900&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Luxurious & Appetizing Dark Color Palette */
  --color-primary: #8a2b3d;          /* Burgundy Rose / Cherry accent */
  --color-primary-light: #b03a4e;    /* Light Cherry Pink */
  --color-primary-dark: #4a0d17;     /* Dark Black Cherry */
  
  --color-accent: #c29c67;           /* Warm Golden Caramel / Gold leaf */
  --color-accent-light: #f5eedf;     /* Soft Honey Cream */
  --color-accent-dark: #9e7541;      /* Cinnamon/Toffee Brown */
  
  /* Text and BG Colors - Optimized for Dark Theme & Glassmorphism readability */
  --color-dark: #120608;             /* Dark Cocoa base */
  --color-text-primary: #f5eedf;     /* Honey Cream - Very bright, premium readability */
  --color-text-muted: #c8bba6;       /* Warm Sand Cream - Secondary text */
  --color-white: #ffffff;
  --color-border: rgba(194, 156, 103, 0.22); /* Warm gold-tint translucent border */
  
  --color-success: #3d8c40;
  --color-error: #cf4242;
  
  /* Typography */
  --font-headings: 'Playfair Display', Georgia, serif;
  --font-accent: 'Playball', cursive;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-nav: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 0.75rem;
  --space-sm: 1.25rem;
  --space-md: 2.5rem;
  --space-lg: 4rem;
  --space-xl: 5.5rem;
  
  /* Layout Dimensions */
  --container-width: 1200px;         /* Max width constrained so background is visible on sides */
  --header-height: 85px;
  --border-radius-sm: 12px;
  --border-radius-md: 20px;
  --border-radius-lg: 28px;
  
  /* Premium Dark Shadow Systems */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.55);
  
  /* Dynamic Transitions */
  --transition-fast: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-normal: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  /* The background image is tinted with a dark chocolate & cherry gradient overlay.
     This maintains texture, removes dominant white, and creates contrast. */
  background-image: linear-gradient(rgba(22, 9, 11, 0.78), rgba(15, 6, 7, 0.86)), url('../assets/brand/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Animated gradient background blobs for depth */
body::before, body::after {
  content: '';
  position: fixed;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.18;
  z-index: -2;
  pointer-events: none;
}

body::before {
  background: var(--color-primary);
  top: -10%;
  left: -5%;
  animation: float-blob-1 25s infinite alternate ease-in-out;
}

body::after {
  background: var(--color-accent-dark);
  bottom: -10%;
  right: -5%;
  animation: float-blob-2 30s infinite alternate ease-in-out;
}

@keyframes float-blob-1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5vw, 10vh) scale(1.1); }
  100% { transform: translate(-3vw, 5vh) scale(0.95); }
}

@keyframes float-blob-2 {
  0% { transform: translate(0, 0) scale(0.95); }
  50% { transform: translate(-6vw, -5vh) scale(1.15); }
  100% { transform: translate(3vw, 8vh) scale(1.02); }
}

main {
  flex-grow: 1;
  padding-top: calc(var(--header-height) + var(--space-sm));
  padding-bottom: var(--space-lg);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-accent-light);
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

p {
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

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

/* Layout Containers */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

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

.section-title-wrap {
  text-align: center;
  margin-bottom: var(--space-md);
}

.section-subtitle-accent {
  font-family: var(--font-accent);
  color: var(--color-accent);
  font-size: 2.2rem;
  margin-bottom: 0.2rem;
  display: block;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-title {
  font-size: 2.6rem;
  color: var(--color-white);
  position: relative;
  display: inline-block;
  font-weight: 800;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background-color: var(--color-accent);
  margin: 0.6rem auto 0;
  border-radius: 2px;
}

.section-desc {
  max-width: 700px;
  margin: 1.2rem auto 0;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.8;
}

/* Unified Frosted Dark Glass Panel Container */
.glass-sheet {
  background: rgba(32, 14, 17, 0.65);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  margin-bottom: var(--space-md);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
}

.glass-sheet:hover {
  background: rgba(38, 17, 21, 0.72);
  border-color: rgba(194, 156, 103, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .glass-sheet {
    padding: var(--space-sm);
    border-radius: var(--border-radius-md);
  }
}

/* Grids */
.grid {
  display: grid;
  gap: var(--space-md);
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }

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

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

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  gap: 0.6rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(138, 43, 61, 0.35);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(138, 43, 61, 0.55);
}

.btn--secondary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(194, 156, 103, 0.25);
}

.btn--secondary:hover {
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
  color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(194, 156, 103, 0.45);
}

.btn--outline {
  background: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent-light);
  box-shadow: none;
}

.btn--outline:hover {
  background-color: var(--color-accent);
  color: var(--color-dark);
  transform: translateY(-2px);
}

/* Cards (Grid Items) */
.card {
  background: rgba(36, 16, 19, 0.65);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border-radius: var(--border-radius-md);
  padding: var(--space-sm);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  background: rgba(44, 20, 24, 0.75);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  border-color: rgba(194, 156, 103, 0.5);
}

.card-img-wrapper {
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  margin-bottom: var(--space-xs);
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255,255,255,0.05);
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-img-wrapper img {
  transform: scale(1.06);
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent-light);
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.card-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  flex-grow: 1;
}

/* Lists styling */
.list-unstyled {
  list-style: none;
}

.list-checked {
  list-style: none;
}

.list-checked li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.02rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.list-checked li::before {
  content: '✦';
  color: var(--color-accent);
  position: absolute;
  left: 0.25rem;
  font-weight: bold;
}

/* Page Headers (Hero Banner) - Redesigned Dark Translucent Banner */
.page-banner {
  background: linear-gradient(135deg, rgba(40, 16, 20, 0.7) 0%, rgba(26, 10, 12, 0.85) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: var(--space-md) 0;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.page-banner h1 {
  color: var(--color-white);
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.page-banner p {
  color: var(--color-accent);
  font-size: 1.35rem;
  font-family: var(--font-accent);
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .page-banner {
    padding: var(--space-sm) 0;
  }
  .page-banner h1 {
    font-size: 2.2rem;
  }
  .page-banner p {
    font-size: 1.15rem;
  }
}

/* Header component styles - Redesigned Dark Glass Nav */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(26, 10, 12, 0.8);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-normal);
}

.header-nav.scrolled {
  height: 75px;
  background: rgba(18, 6, 8, 0.92);
  border-bottom: 1px solid rgba(194, 156, 103, 0.4);
}

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

.logo-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  line-height: 1;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: transform var(--transition-fast);
}

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

.logo-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-main {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--color-accent-light);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.logo-sub {
  font-family: var(--font-nav);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-accent);
  margin-top: 2px;
  line-height: 1;
}

.nav-menu {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.nav-link {
  color: var(--color-text-primary);
  font-weight: 500;
  font-family: var(--font-nav);
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  font-size: 0.9rem;
  position: relative;
  transition: all var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--color-accent-light);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: 0 4px 12px rgba(138, 43, 61, 0.35);
  font-weight: 600;
}

.burger-menu {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  z-index: 1001;
}

.burger-bar {
  width: 100%;
  height: 3px;
  background-color: var(--color-accent-light);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

@media (max-width: 1200px) {
  .burger-menu {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(22, 9, 11, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: calc(var(--header-height) + var(--space-sm)) var(--space-sm) var(--space-sm);
    transition: right var(--transition-normal);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    overflow-y: auto;
    border-left: 2px solid var(--color-accent);
    gap: 0.35rem;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .burger-menu.open .burger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .burger-menu.open .burger-bar:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.open .burger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .nav-link {
    font-size: 1.05rem;
    font-weight: 500;
    padding: 0.75rem 1.1rem;
    border-radius: 10px;
  }
  
  .nav-link.active {
    font-weight: 600;
  }
}

/* Footer Component Styles - Deep Chocolate Base */
.footer {
  background: linear-gradient(180deg, #16080a 0%, #0c0405 100%);
  border-top: 2px solid var(--color-accent);
  color: var(--color-text-primary);
  padding: var(--space-md) 0 var(--space-sm);
  margin-top: var(--space-xl);
}

.footer h3 {
  color: var(--color-accent);
  font-size: 1.35rem;
  margin-bottom: var(--space-xs);
  font-family: var(--font-headings);
  font-weight: 700;
  text-shadow: none;
}

.footer p, .footer li {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: var(--space-sm);
  margin-top: var(--space-md);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(194, 156, 103, 0.45);
}

/* Interactive Form Styling */
.form-group {
  margin-bottom: var(--space-sm);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-accent-light);
  font-family: var(--font-nav);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text-primary);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(194, 156, 103, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Select element styling specifics */
select.form-control option {
  background: #251013;
  color: var(--color-text-primary);
}

/* Alert Boxes */
.alert {
  padding: 1.1rem 1.4rem;
  border-radius: var(--border-radius-sm);
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.alert--error {
  background-color: rgba(207, 66, 66, 0.15);
  border-left: 4px solid var(--color-error);
  color: #ff9e9e;
  border: 1px solid rgba(207, 66, 66, 0.3);
  border-left-width: 4px;
}

.alert--success {
  background-color: rgba(61, 140, 64, 0.15);
  border-left: 4px solid var(--color-success);
  color: #a3ffa6;
  border: 1px solid rgba(61, 140, 64, 0.3);
  border-left-width: 4px;
}

/* Lightbox Styling */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 6, 8, 0.97);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 15px 50px rgba(0,0,0,0.8);
  transform: scale(0.96);
  transition: transform var(--transition-normal);
  border: 1px solid var(--color-accent);
}

.lightbox.open .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--color-accent-light);
  font-size: 3rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-accent);
}

/* Custom styles for grid galleries */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 1px solid var(--color-border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 13, 23, 0.45);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-overlay::after {
  content: '🔍';
  font-size: 2rem;
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Google Reviews Card Style */
.google-reviews-card {
  text-align: center;
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-md) var(--space-sm);
}

.google-reviews-card img {
  max-width: 140px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: transform var(--transition-normal);
}

.google-reviews-card:hover img {
  transform: scale(1.05);
}

/* Menu Table (Price List) Styling */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-md);
  text-align: left;
}

.price-table th, .price-table td {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--color-border);
}

.price-table th {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  color: var(--color-accent);
  font-weight: 700;
  background: rgba(194, 156, 103, 0.15);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.price-table td {
  color: var(--color-text-primary);
  font-size: 1rem;
}

.price-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.price-table tr:hover td {
  background: rgba(194, 156, 103, 0.1);
}

.price-table td.price {
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-headings);
  font-size: 1.1rem;
}

@media (max-width: 576px) {
  .price-table th, .price-table td {
    padding: 0.85rem 0.6rem;
    font-size: 0.92rem;
  }
}

/* Custom Scrollbar & Selection Styles */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(26, 10, 12, 0.5);
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent-dark);
  border-radius: 5px;
  border: 2px solid rgba(26, 10, 12, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-light);
}

::selection {
  background-color: var(--color-primary-light);
  color: var(--color-white);
}
