/*
Theme Name: RoadHouse Paris
Theme URI: https://roadhouse-paris.fr
Author: Kevin
Description: Thème WordPress sur mesure pour le RoadHouse Paris - Bar à thème dans le 5e arrondissement. Compatible ACF et YOAST SEO.
Version: 1.0.0
Text Domain: roadhouse
*/

/* ===== VARIABLES CSS ===== */
:root {
  --color-bg-dark: #0a0a0a;
  --color-bg-section: #1a1a1a;
  --color-bg-card: #1f1f1f;
  --color-white: #ffffff;
  --color-gray-light: #e5e5e5;
  --color-gray: #9ca3af;
  --color-border: #333333;
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: "Dancing Script", cursive;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-dark);
  background-image: url('assets/fond.png'), url('assets/fond2.png');
  background-size: 100% auto, 100% auto;
  background-position: top left, bottom left;
  background-repeat: repeat-y;
  color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-style: italic;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  color: var(--color-white);
}

/* ===== HEADER ===== */
.site-header {
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
}

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

.site-logo {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--color-white);
}

.site-logo img {
  height: 40px;
  width: auto;
}

.main-nav ul {
  display: flex;
  gap: 15px;
}

.main-nav a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 25px;
  font-size: 0.9rem;
  transition: var(--transition);
  background: transparent;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Desktop navbar styles */
@media (min-width: 769px) {
  .site-logo {
    font-size: 2.5rem;
  }

  .site-logo img {
    height: 60px;
  }

  .main-nav a {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
  }
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 60px;
  margin-top: 25px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 20px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.5)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 40px;
}

.hero-title {
  color: var(--color-white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title-mobile {
  display: none;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 40px;
  max-width: 500px;
}

/* Desktop hero styles */
@media (min-width: 769px) {
  .hero-background {
    margin: 60px 40px 40px 40px;
    border: 1px solid #8c8c8c;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  }

  .hero-background img {
    filter: blur(1.5px);
  }

  .hero-content {
    padding: 60px;
    margin-top: 40px;
  }

  .hero-buttons .btn {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }

  .hero-buttons .btn-primary {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
  }

  .hero-buttons .btn-primary:hover {
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.6);
  }

  .hero-buttons .btn-secondary {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  }

  .hero-buttons .btn-secondary:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  }
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--color-white);
  color: var(--color-bg-dark);
  border: 1px solid var(--color-white);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

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

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-card {
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(140, 140, 140, 0.5);
  border-radius: var(--border-radius-lg);
  padding: 60px 120px;
  margin: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

/* ===== SOIREES SECTION ===== */
.soirees-section {
  padding: 40px 0;
}

.soirees-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.soirees-slider {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-card);
}

.soirees-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.soirees-slider img.active {
  opacity: 1;
}

.soirees-info h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.soirees-meta {
  margin-bottom: 20px;
}

.soirees-meta p {
  font-size: 0.95rem;
  margin-bottom: 5px;
  color: var(--color-gray);
}

.soirees-description p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.soirees-description strong {
  color: var(--color-white);
}

/* ===== GALLERY CAROUSEL ===== */
.gallery-section {
  padding: 60px 0;
}

.gallery-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery-carousel::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 auto;
  width: 350px;
  border-radius: var(--border-radius);
  overflow: hidden;
  scroll-snap-align: center;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.gallery-dot {
  width: 60px;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-dot.active {
  background: var(--color-white);
}

/* Gallery Mobile */
@media (max-width: 768px) {
  .gallery-section {
    padding: 40px 0;
  }

  .gallery-carousel {
    gap: 15px;
    padding: 15px;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
  }

  .gallery-item {
    width: 280px;
    min-width: 280px;
    scroll-snap-align: start;
  }

  .gallery-item img {
    height: 200px;
  }

  .gallery-dots {
    margin-top: 20px;
  }

  .gallery-dot {
    width: 40px;
    height: 3px;
  }
}

@media (max-width: 480px) {
  .gallery-carousel {
    gap: 15px;
    padding: 0 calc((100vw - 80vw) / 2);
    scroll-snap-type: x mandatory;
    scroll-padding: 0 calc((100vw - 80vw) / 2);
  }

  .gallery-item {
    width: 80vw;
    min-width: 80vw;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .gallery-item img {
    height: 200px;
  }

  .gallery-dot {
    width: 30px;
  }
}

/* ===== CARTE SECTION ===== */
.carte-section {
  padding: 40px 0;
}

.carte-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

.carte-text {
  text-align: center;
}

.carte-text p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.carte-text .btn-secondary {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.carte-text .btn-secondary:hover {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.carte-image {
  overflow: hidden;
}

.carte-image img {
  width: 80%;
  height: auto;
  border-radius: 20px;
}

/* Section separator */
.section-separator {
  display: none;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0 20px;
}

/* Carte responsive */
@media (max-width: 768px) {
  .carte-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .carte-image {
    display: flex;
    justify-content: center;
    order: -1;
  }

  .carte-image img {
    width: 90%;
    max-width: 400px;
  }

  .section-separator {
    display: block;
  }
}

/* ===== INFOS SECTION ===== */
.infos-section {
  padding: 40px 0;
}

.infos-title {
  text-align: center;
  font-style: italic;
  margin-bottom: 30px;
}

.infos-address {
  margin-bottom: 10px;
}

.infos-address a {
  text-decoration: underline;
  font-weight: 500;
}

.infos-horaires {
  color: var(--color-white);
  margin-bottom: 40px;
}

.infos-horaires p {
  margin-bottom: 5px;
}

.infos-map {
  width: 100%;
  height: 400px;
  background: var(--color-gray-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 30px;
}

.infos-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.infos-closing {
  text-align: right;
  font-size: 20px;
  color: #ffffff;
  line-height: normal;
}

.scroll-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 40px auto 0;
  background: var(--color-white);
  color: var(--color-bg-dark);
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.scroll-to-top:hover {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.scroll-to-top svg {
  width: 28px;
  height: 28px;
}

/* ===== AVIS GOOGLE SECTION ===== */
.avis-section {
  margin-top: 60px;
  text-align: center;
}

.avis-title {
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-white);
  margin-bottom: 40px;
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.avis-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.avis-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.avis-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.avis-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a73e8;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.avis-avatar.has-image {
  background-size: cover;
  background-position: center;
}

.avis-user-info {
  flex: 1;
}

.avis-nom {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1f1f1f;
  margin-bottom: 2px;
}

.avis-meta {
  font-size: 0.8rem;
  color: #5f6368;
}

.avis-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.avis-stars {
  color: #fbbc04;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.avis-date {
  font-size: 0.8rem;
  color: #5f6368;
}

.avis-texte {
  font-size: 0.9rem;
  color: #3c4043;
  line-height: 1.5;
  margin: 0;
}

.btn-avis-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #1a73e8;
  padding: 10px 24px;
  border: 1px solid #dadce0;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-avis-google:hover {
  background: #f8f9fa;
  border-color: #1a73e8;
}

.btn-avis-google svg {
  width: 18px;
  height: 18px;
}

/* Infos responsive */
@media (max-width: 768px) {
  .infos-section .container {
    display: flex;
    flex-direction: column;
  }

  .infos-title {
    order: 1;
  }

  .infos-map {
    order: 2;
  }

  .infos-address {
    order: 3;
    text-align: center;
    margin-top: 30px;
  }

  .infos-horaires {
    order: 4;
    text-align: center;
  }

  .infos-closing {
    display: none;
  }

  .avis-section {
    order: 5;
    margin-top: 40px;
  }

  .avis-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .avis-card {
    padding: 16px;
  }

  .avis-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }

  .avis-texte {
    font-size: 0.85rem;
  }

  .btn-avis-google {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .scroll-to-top {
    order: 6;
    margin-top: 20px;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(10px);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(140, 140, 140, 0.5);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  text-align: center;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--color-white);
}

.footer-col p {
  font-size: 0.9rem;
  color: var(--color-white);
  margin-bottom: 5px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--color-bg-card);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-white);
  color: var(--color-bg-dark);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  border-top: 1px solid var(--color-white);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--color-white);
}

.mentions-link {
  color: var(--color-white);
  text-decoration: underline;
  cursor: pointer;
  transition: var(--transition);
}

.mentions-link:hover {
  opacity: 0.8;
}

/* ===== MENTIONS LÉGALES ===== */
.mentions-legales-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  border-top: 1px solid transparent;
}

.mentions-legales-content.active {
  max-height: 2000px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 40px;
}

.mentions-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.mentions-inner h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
  text-align: center;
}

.mentions-intro {
  font-size: 0.9rem;
  color: var(--color-white);
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
}

.mentions-inner h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-top: 25px;
  margin-bottom: 15px;
}

.mentions-inner p {
  font-size: 0.9rem;
  color: var(--color-white);
  line-height: 1.7;
  margin-bottom: 8px;
}

.mentions-inner a {
  color: var(--color-white);
  text-decoration: underline;
}

.mentions-inner a:hover {
  opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .soirees-content,
  .carte-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 35px;
  }

  .site-header.scrolled {
    top: 0;
  }

  .main-nav ul {
    gap: 10px;
  }

  .main-nav a {
    padding: 8px 15px;
    font-size: 0.8rem;
  }

  .hero-background img {
    filter: blur(2px);
  }

  .hero-content {
    padding: 20px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section-card {
    padding: 40px 20px;
    margin: 0 10px;
  }

  .section-title {
    text-align: left;
  }

  .gallery-item {
    width: 280px;
  }

  /* Hero tablet/mobile style */
  .hero-title {
    display: none;
  }

  .hero-title-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
  }

  .hero-title-mobile span {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 5px;
  }

  .hero-subtitle {
    display: none;
  }

  .hero-buttons {
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
    text-align: center;
  }

  .hero-buttons .btn:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
  }
}

@media (max-width: 576px) {
  .site-logo {
    font-size: 1.5rem;
  }

  .main-nav {
    display: none;
  }

  .hero-background {
    margin: 10px;
  }
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 576px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .main-nav a {
    display: inline-block;
    font-size: 1.1rem;
    padding: 15px 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
    transition: var(--transition);
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
  }
}

body.menu-open {
  overflow: hidden;
}

/* ===== SLIDER PLACEHOLDER ===== */
.slider-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: var(--color-bg-card);
  border: 2px dashed var(--color-border);
  border-radius: var(--border-radius);
  text-align: center;
  padding: 40px;
}

.slider-placeholder p {
  color: var(--color-gray);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

/* ===== YOAST BREADCRUMBS ===== */
.yoast-breadcrumbs {
  padding: 15px 0;
  font-size: 0.85rem;
  color: var(--color-gray);
}

.yoast-breadcrumbs a {
  color: var(--color-gray-light);
}

.yoast-breadcrumbs a:hover {
  color: var(--color-white);
}

.breadcrumb-sep {
  margin: 0 8px;
}
