/*
  Dämmerware - Premium Pottery Studio Website
  Modern design system with CSS Grid, premium typography, and smooth animations
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Light theme defaults */
  --primary-bg: #f5f3f1;
  --primary-text: #333333;
  --secondary-text: #666666;
  --light-text: #ffffff;
  --dark-bg: #ffffff;
  --navbar-bg: #4a4441;
  --navbar-text: #e8e6e4;
  --primary-color: #a97c50;
  --primary-hover: #936b46;
  --secondary-color: #a3b1b2;
  --secondary-hover: #8da0a1;
  --footer-bg: #2d2a29;
  --footer-text: #e8e6e4;
  --card-shadow: 0 2px 8px rgba(0,0,0,0.1);
  --card-bg: #ffffff;
  --border-color: #e0ddd9;
  --input-bg: #ffffff;
  --input-border: #d0ccc8;
  --accent-warm: #d4a574;
  --accent-cool: #8fb5b8;

  /* Transition speed */
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
  --radius: 14px;
}

html[data-theme="dark"] {
  --primary-bg: #1a1815;
  --primary-text: #e8e6e4;
  --secondary-text: #b8b5b0;
  --light-text: #ffffff;
  --dark-bg: #2d2a29;
  --navbar-bg: #1a1815;
  --navbar-text: #e8e6e4;
  --primary-color: #d4a574;
  --primary-hover: #e8c898;
  --secondary-color: #8fb5b8;
  --secondary-hover: #a5c5c9;
  --footer-bg: #0d0b0a;
  --footer-text: #d4c5b9;
  --card-shadow: 0 8px 24px rgba(0,0,0,0.4);
  --card-bg: #2d2a29;
  --border-color: #3d3a39;
  --input-bg: #3d3a39;
  --input-border: #4d4a49;
  --accent-warm: #d4a574;
  --accent-cool: #8fb5b8;
}

/* Typography */
body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--primary-bg);
  color: var(--primary-text);
  transition: background-color var(--transition), color var(--transition);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1rem;
  color: var(--secondary-text);
  line-height: 1.7;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

/* Navigation */
.navbar {
  background-color: var(--navbar-bg) !important;
  transition: background-color var(--transition);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.8rem !important;
  color: var(--navbar-text) !important;
  font-weight: 700;
  letter-spacing: -1px;
  transition: color var(--transition);
}

.navbar-brand:hover {
  color: var(--primary-color) !important;
}

.nav-link {
  color: var(--navbar-text) !important;
  transition: color var(--transition);
  font-weight: 500;
  margin: 0 0.5rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-item:last-child .nav-link {
  margin-right: 0;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.75rem;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23e8e6e4' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Control buttons in navbar */
.nav-controls {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-left: 1rem;
}

.nav-controls button {
  background: none;
  border: none;
  color: var(--navbar-text);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  transition: color var(--transition);
  font-weight: 500;
}

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

.lang-menu {
  position: relative;
  display: inline-block;
}

.lang-menu select,
.lang-menu .dropdown-menu {
  background-color: var(--card-bg);
  color: var(--primary-text);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.5rem;
  transition: all var(--transition);
}

.lang-menu select:hover {
  border-color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--light-text);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  padding: 8rem 2rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  margin-top: 4rem;
  overflow: hidden;
  animation: fadeInDown 0.8s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-content h1 {
  animation: slideInLeft 0.8s ease-out 0.3s both;
}

.hero-content p {
  animation: slideInLeft 0.8s ease-out 0.4s both;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
}

/* Buttons */
.btn {
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--light-text);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-text);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
  border-color: var(--primary-color);
}

/* Cards & Grid */
.card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.card-img-top {
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition);
}

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

/* Bento Grid Layouts */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* More sophisticated bento layouts */
.bento-grid-2 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.bento-item {
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}

.bento-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.bento-item.span-2 {
  grid-column: span 2;
}

.bento-item.span-6 {
  grid-column: span 6;
}

.bento-item.span-12 {
  grid-column: span 12;
}

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

.bento-item:hover img {
  transform: scale(1.05);
}

.bento-item-content {
  padding: 2rem;
}

.bento-item-content h3 {
  margin-bottom: 1rem;
  color: var(--primary-text);
}

/* Product Cards */
.product-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: all var(--transition);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

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

.product-card:hover img {
  transform: scale(1.08);
}

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

.product-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-text);
}

.product-card-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Testimonial Cards */
.testimonial-card {
  background-color: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  margin-right: 0.25rem;
  transition: transform var(--transition);
}

.testimonial-stars svg:hover {
  transform: scale(1.1);
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--primary-text);
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
}

/* Sections */
section {
  padding: 4rem 0;
  transition: background-color var(--transition);
}

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

.section-dark {
  background-color: var(--dark-bg);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeIn 0.6s ease-out;
}

.section-title h2 {
  color: var(--primary-text);
  margin-bottom: 0.5rem;
}

.section-title p {
  font-size: 1.2rem;
  color: var(--secondary-text);
  max-width: 600px;
  margin: 0 auto;
}

/* Footer */
footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 3rem 0 1rem;
  transition: background-color var(--transition);
  border-top: 1px solid var(--border-color);
}

footer h5 {
  color: var(--accent-warm);
  margin-bottom: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
}

footer a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color var(--transition);
}

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

footer ul li {
  margin-bottom: 0.5rem;
}

footer .footer-divider {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-top: 1rem;
}

footer .copyright {
  text-align: center;
  color: var(--secondary-text);
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* Forms */
.form-control,
.form-select {
  background-color: var(--input-bg);
  color: var(--primary-text);
  border: 1px solid var(--input-border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all var(--transition);
  font-family: 'Outfit', sans-serif;
}

.form-control:focus,
.form-select:focus {
  background-color: var(--input-bg);
  color: var(--primary-text);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(169, 124, 80, 0.25);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Utilities */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--secondary-text);
}

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

/* Bootstrap Grid Compatibility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.row > [class*='col-'] {
  padding-right: 1rem;
  padding-left: 1rem;
}

.col-1 { flex: 0 0 8.333%; max-width: 8.333%; }
.col-2 { flex: 0 0 16.666%; max-width: 16.666%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-5 { flex: 0 0 41.666%; max-width: 41.666%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333%; max-width: 58.333%; }
.col-8 { flex: 0 0 66.666%; max-width: 66.666%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333%; max-width: 83.333%; }
.col-11 { flex: 0 0 91.666%; max-width: 91.666%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

.col { flex: 1 0 0%; }

.g-0 { gap: 0; }
.g-1 { gap: 0.5rem; }
.g-2 { gap: 1rem; }
.g-3 { gap: 1.5rem; }
.g-4 { gap: 2rem; }
.g-5 { gap: 3rem; }

/* Responsive Grid */
@media (max-width: 992px) {
  .col-lg-1 { flex: 0 0 8.333%; max-width: 8.333%; }
  .col-lg-2 { flex: 0 0 16.666%; max-width: 16.666%; }
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-lg-5 { flex: 0 0 41.666%; max-width: 41.666%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7 { flex: 0 0 58.333%; max-width: 58.333%; }
  .col-lg-8 { flex: 0 0 66.666%; max-width: 66.666%; }
  .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
  .col-lg-10 { flex: 0 0 83.333%; max-width: 83.333%; }
  .col-lg-11 { flex: 0 0 91.666%; max-width: 91.666%; }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (max-width: 768px) {
  .col-md-1 { flex: 0 0 8.333%; max-width: 8.333%; }
  .col-md-2 { flex: 0 0 16.666%; max-width: 16.666%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-md-5 { flex: 0 0 41.666%; max-width: 41.666%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-7 { flex: 0 0 58.333%; max-width: 58.333%; }
  .col-md-8 { flex: 0 0 66.666%; max-width: 66.666%; }
  .col-md-9 { flex: 0 0 75%; max-width: 75%; }
  .col-md-10 { flex: 0 0 83.333%; max-width: 83.333%; }
  .col-md-11 { flex: 0 0 91.666%; max-width: 91.666%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (max-width: 576px) {
  .col-sm-1 { flex: 0 0 8.333%; max-width: 8.333%; }
  .col-sm-2 { flex: 0 0 16.666%; max-width: 16.666%; }
  .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
  .col-sm-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-sm-5 { flex: 0 0 41.666%; max-width: 41.666%; }
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-7 { flex: 0 0 58.333%; max-width: 58.333%; }
  .col-sm-8 { flex: 0 0 66.666%; max-width: 66.666%; }
  .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
  .col-sm-10 { flex: 0 0 83.333%; max-width: 83.333%; }
  .col-sm-11 { flex: 0 0 91.666%; max-width: 91.666%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Display & Visibility */
.d-none { display: none; }
.d-block { display: block; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-start { justify-content: flex-start; }
.justify-content-end { justify-content: flex-end; }

.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }

.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }
.flex-column-reverse { flex-direction: column-reverse; }

.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* Display helpers */
@media (max-width: 992px) {
  .flex-lg-row { flex-direction: row; }
}

@media (max-width: 768px) {
  .flex-column-reverse { flex-direction: column-reverse; }
}

/* Position & Float */
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }

/* Text Alignment */
.text-start { text-align: start; }
.text-center { text-align: center; }
.text-end { text-align: end; }

/* Text Decoration */
.text-decoration-none { text-decoration: none; }

/* Font Styles */
.fw-bold { font-weight: 700; }
.fw-normal { font-weight: 400; }
.fst-italic { font-style: italic; }

.small { font-size: 0.875rem; }
.h4 { font-size: 1.5rem; font-weight: 600; }

/* List Styles */
.list-unstyled { list-style: none; padding-left: 0; }

/* Borders */
.border-top { border-top: 1px solid var(--border-color); }
.border-bottom { border-bottom: 1px solid var(--border-color); }
.border-secondary { border-color: var(--border-color); }

/* Shadow Utilities */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Spacing Classes */
.ps-lg-5 { padding-left: 3rem; }
.ps-5 { padding-left: 3rem; }
.me-3 { margin-right: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mb-lg-0 { margin-bottom: 0; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.px-0 { padding-left: 0; padding-right: 0; }

/* Image Utilities */
.img-fluid { max-width: 100%; height: auto; }

/* Carousel Support */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  color: var(--light-text);
  text-align: center;
  background: rgba(0,0,0,0.3);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(0,0,0,0.5);
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

/* Dropdown Support */
.dropdown { position: relative; display: inline-block; }
.dropdown-toggle::after { content: ''; }
.dropdown-menu {
  position: absolute;
  min-width: 160px;
  padding: 0.5rem 0;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  display: none;
  z-index: 1000;
}

.dropdown-menu.show { display: block; }

.dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--primary-text);
  text-decoration: none;
  transition: background-color var(--transition);
}

.dropdown-item:hover {
  background-color: var(--primary-bg);
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero-section {
    padding: 6rem 1rem;
    min-height: 50vh;
    margin-top: 3rem;
  }

  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }

  section {
    padding: 3rem 0;
  }

  .bento-grid {
    gap: 1rem;
  }

  .bento-grid-2 {
    grid-template-columns: repeat(6, 1fr);
  }

  .bento-item.span-6 {
    grid-column: span 6;
  }

  .container {
    padding: 0 1rem;
  }

  footer {
    padding: 2rem 0 1rem;
  }

  footer h5 {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero-section {
    padding: 4rem 1rem;
    min-height: 40vh;
  }

  .bento-grid-2 {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento-item.span-6 {
    grid-column: span 3;
  }

  .bento-item.span-12 {
    grid-column: span 3;
  }

  nav.navbar {
    padding: 0.75rem 0;
  }

  .navbar-brand {
    font-size: 1.4rem !important;
  }

  .nav-link {
    margin: 0.25rem 0;
    font-size: 0.9rem;
  }
}
