/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --color-background: #0b1120;
  --color-background-subtle: #11192e;
  --color-text: #ffffff;
  --color-primary: #d4af37; /* Gold */
  --color-secondary: #800020; /* Burgundy */
  --color-border: rgba(255, 255, 255, 0.1);
  --font-primary: 'Assistant', sans-serif;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.7;
  font-weight: 400;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #e6c66a;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
}

.section-title h2, .section-title .h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title h2::after, .section-title .h1::after {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
}

.text-gold {
  color: var(--color-primary);
}

.bg-dark-subtle {
  background-color: var(--color-background-subtle) !important;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-background);
  padding: 10px 15px;
  z-index: 10000;
  transition: top 0.3s;
  font-weight: 600;
}

.skip-to-content:focus {
  top: 10px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  background: transparent;
}

#header.header-scrolled {
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(10px);
  height: 70px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo a {
  color: #fff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
}

.btn-whatsapp {
  border: 2px solid var(--color-primary);
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  font-weight: 600;
}

.btn-whatsapp:hover {
  background: var(--color-primary);
  color: var(--color-background);
}

.btn-whatsapp i {
  margin-left: 5px;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  left: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: var(--color-background);
  overflow-y: auto;
  transition: 0.3s;
  border-radius: 10px;
}

.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 18px;
  color: var(--color-text);
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  width: 100%;
  height: 100vh;
  background: url('../img/cheese-wine-hero.webp') top center;
  background-size: cover;
  position: relative;
}

.hero-section:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  margin: 0 0 10px 0;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-section p {
  color: #fff;
  margin-bottom: 50px;
  font-size: 1.2rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-background);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #e6c66a;
  border-color: #e6c66a;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
}

.btn-outline-light:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-background);
}

.btn-outline-primary {
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: var(--color-primary);
  color: var(--color-background);
}

/*--------------------------------------------------------------
# WebLite Promo Section
--------------------------------------------------------------*/
.weblite-promo-section .promo-box {
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  display: inline-block;
}

.weblite-promo-section p {
  margin: 0;
  display: inline;
  margin-left: 1rem;
}

.btn-weblite {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 600;
}

.btn-weblite:hover {
  background: var(--color-primary);
  color: var(--color-background);
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#about p {
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Menu / Pairing Cards
--------------------------------------------------------------*/
.pairing-card {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.pairing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--color-primary);
}

.pairing-card .card-body {
  padding: 2rem;
}

/* Make sure pairing card text is visible on dark background */
.pairing-card,
.pairing-card .card-body,
.pairing-card .card-title,
.pairing-card .card-text,
.pairing-card p,
.pairing-card h3,
.pairing-card .badge {
  color: var(--color-text) !important;
}

/* If a light badge is used inside a dark card, ensure contrast */
.pairing-card .badge.bg-light {
  background-color: rgba(255,255,255,0.92) !important;
  color: #111 !important;
}

.pairing-card hr {
  border-top: 1px solid var(--color-border);
}

/*--------------------------------------------------------------
# Tastings & Events
--------------------------------------------------------------*/
.event-list {
  padding-right: 0;
}
.event-list li {
  padding-bottom: 15px;
  font-size: 1.1rem;
}
.event-list i {
  font-size: 20px;
  padding-left: 8px;
  position: relative;
  top: 3px;
}

/*--------------------------------------------------------------
# Gift Cards
--------------------------------------------------------------*/
.gift-card {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  text-align: center;
  padding: 1.5rem;
}

.gift-card .price-range {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

/* Ensure gift-card text is visible on dark backgrounds */
.gift-card,
.gift-card .card-body,
.gift-card .card-title,
.gift-card h3,
.gift-card p,
.gift-card .price-range,
.gift-card .btn-outline-primary {
  color: var(--color-text) !important;
}

.gift-card .price-range {
  color: var(--color-primary) !important;
}

.gift-card .btn-outline-primary {
  border-color: var(--color-primary) !important;
  color: var(--color-primary) !important;
}

/*--------------------------------------------------------------
# Reviews
--------------------------------------------------------------*/
.review {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-background-subtle);
}

.review .review-icon {
  font-size: 2rem;
  color: var(--color-primary);
  opacity: 0.5;
  display: block;
  margin-bottom: 1rem;
}

.review p {
  font-style: italic;
  margin: 0 auto 1rem auto;
}

.review .blockquote-footer {
  color: #ccc;
}

/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/
.contact-form .form-control, .contact-form .form-select {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 0.75rem 1rem;
}

.contact-form .form-control:focus, .contact-form .form-select:focus {
  background-color: var(--color-background);
  color: var(--color-text);
  border-color: var(--color-primary);
  box-shadow: none;
}

.contact-form .form-control::placeholder {
  color: #bdbdbd;
}

.contact-form .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23d4af37' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.contact-form .invalid-feedback {
  color: #ff8b8b;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  color: #e0e0e0;
  font-size: 14px;
}

.weblite-promo-section-footer {
  background-color: var(--color-background-subtle);
}

.weblite-promo-section-footer .promo-box-footer {
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  border-radius: 8px;
  background: var(--color-background);
}

.weblite-promo-section-footer p {
  margin: 0;
  display: inline;
  margin-left: 1rem;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--color-background-subtle);
}

#footer .footer-top h3 {
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-contact,
#footer .footer-top .footer-hours {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-left: 10px;
  color: var(--color-primary);
  font-size: 12px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul a {
  color: #aaa;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--color-primary);
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-left: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: var(--color-primary);
  color: var(--color-background);
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid var(--color-border);
}

#footer .copyright {
  float: right;
}

#footer .credits {
  float: left;
  font-size: 13px;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --color-background: #0b1120;
  --color-background-subtle: #11192e;
  --color-text: #e1e1e1;
  --color-primary: #d4af37; /* Gold */
  --color-secondary: #800020; /* Burgundy */
  --color-border: rgba(255, 255, 255, 0.1);
  --font-primary: 'Assistant', sans-serif;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.7;
  font-weight: 300;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s;
}

    --color-text: #ffffff;
  color: #e6c66a;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
}

.section-title h2, .section-title .h1 {
  font-size: 2.5rem;
    font-weight: 400;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title h2::after, .section-title .h1::after {
  content: '';
  position: absolute;
  display: block;
    color: rgba(255, 255, 255, 0.95);
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
}
    color: #e0e0e0;
.text-gold {
  color: var(--color-primary);
}

    color: #bdbdbd;
  background-color: var(--color-background-subtle) !important;
}

    color: #ccc;
# Accessibility
--------------------------------------------------------------*/
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-background);
  padding: 10px 15px;
  z-index: 10000;
  transition: top 0.3s;
  font-weight: 600;
}

.skip-to-content:focus {
  top: 10px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  background: transparent;
}

#header.header-scrolled {
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(10px);
  height: 70px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo a {
  color: #fff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
}

.btn-whatsapp {
  border: 2px solid var(--color-primary);
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  font-weight: 600;
}

.btn-whatsapp:hover {
  background: var(--color-primary);
  color: var(--color-background);
}

.btn-whatsapp i {
  margin-left: 5px;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  left: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: var(--color-background);
  overflow-y: auto;
  transition: 0.3s;
  border-radius: 10px;
}

.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 18px;
  color: var(--color-text);
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  width: 100%;
  height: 100vh;
  background: url('../img/cheese-wine-hero.webp') top center;
  background-size: cover;
  position: relative;
}

.hero-section:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  margin: 0 0 10px 0;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-section p {
  color: #fff;
  margin-bottom: 50px;
  font-size: 1.2rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-background);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #e6c66a;
  border-color: #e6c66a;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
}

.btn-outline-light:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-background);
}

.btn-outline-primary {
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: var(--color-primary);
  color: var(--color-background);
}

/*--------------------------------------------------------------
# WebLite Promo Section
--------------------------------------------------------------*/
.weblite-promo-section .promo-box {
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  display: inline-block;
}

.weblite-promo-section p {
  margin: 0;
  display: inline;
  margin-left: 1rem;
}

.btn-weblite {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 600;
}

.btn-weblite:hover {
  background: var(--color-primary);
  color: var(--color-background);
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#about p {
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Menu / Pairing Cards
--------------------------------------------------------------*/
.pairing-card {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.pairing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--color-primary);
}

.pairing-card .card-body {
  padding: 2rem;
}

.pairing-card hr {
  border-top: 1px solid var(--color-border);
}

/*--------------------------------------------------------------
# Tastings & Events
--------------------------------------------------------------*/
.event-list {
  padding-right: 0;
}
.event-list li {
  padding-bottom: 15px;
  font-size: 1.1rem;
}
.event-list i {
  font-size: 20px;
  padding-left: 8px;
  position: relative;
  top: 3px;
}

/*--------------------------------------------------------------
# Gift Cards
--------------------------------------------------------------*/
.gift-card {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  text-align: center;
  padding: 1.5rem;
}

.gift-card .price-range {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

/*--------------------------------------------------------------
# Reviews
--------------------------------------------------------------*/
.review {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-background-subtle);
}

.review .review-icon {
  font-size: 2rem;
  color: var(--color-primary);
  opacity: 0.5;
  display: block;
  margin-bottom: 1rem;
}

.review p {
  font-style: italic;
  margin: 0 auto 1rem auto;
}

.review .blockquote-footer {
  color: #aaa;
}

/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/
.contact-form .form-control, .contact-form .form-select {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 0.75rem 1rem;
}

.contact-form .form-control:focus, .contact-form .form-select:focus {
  background-color: var(--color-background);
  color: var(--color-text);
  border-color: var(--color-primary);
  box-shadow: none;
}

.contact-form .form-control::placeholder {
  color: #888;
}

.contact-form .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23d4af37' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.contact-form .invalid-feedback {
  color: #ff8b8b;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  color: #aaa;
  font-size: 14px;
}

.weblite-promo-section-footer {
  background-color: var(--color-background-subtle);
}

.weblite-promo-section-footer .promo-box-footer {
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  border-radius: 8px;
  background: var(--color-background);
}

.weblite-promo-section-footer p {
  margin: 0;
  display: inline;
  margin-left: 1rem;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--color-background-subtle);
}

#footer .footer-top h3 {
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-contact,
#footer .footer-top .footer-hours {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-left: 10px;
  color: var(--color-primary);
  font-size: 12px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul a {
  color: #aaa;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--color-primary);
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-left: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: var(--color-primary);
  color: var(--color-background);
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid var(--color-border);
}

#footer .copyright {
  float: right;
}

#footer .credits {
  float: left;
  font-size: 13px;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}
