/* ========================================
   COWART — Galería de Arte Vacuno
   Estilos principales
   ======================================== */

/* --- VARIABLES --- */
:root {
  --orange: #F57F17;
  --orange-light: #FF9800;
  --wine: #773C4E;
  --wine-light: #935757;
  --dark: #222222;
  --gray: #CECECE;
  --gray-light: #F5F5F5;
  --white: #FFFFFF;
  --overlay: rgba(0, 0, 0, 0.92);

  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-accent: 'PT Serif', serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
  --shadow-frame: 0 2px 12px rgba(0, 0, 0, 0.06);

  --container-max: 1280px;
  --header-height: 70px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--orange);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.header.hidden {
  transform: translateY(-100%);
}

.header.scrolled {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-fast);
}

/* --- HERO WITH CAROUSEL --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 8s ease forwards;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: 0.2em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: letterReveal 0.7s ease forwards;
  animation-delay: calc(var(--i) * 0.1s + 0.3s);
}

@keyframes letterReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-claim {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
  max-width: 650px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  min-height: 2.5em;
  transition: opacity 0.6s ease;
}

.hero-claim.fading {
  opacity: 0 !important;
}

.hero-line {
  width: 60px;
  height: 2px;
  background: var(--white);
  margin: 2rem auto 0;
  opacity: 0;
  animation: expandLine 0.8s ease 1.6s forwards;
}

@keyframes expandLine {
  from { width: 0; opacity: 0; }
  to { width: 60px; opacity: 1; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.hero-cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.9rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  transition: all 0.35s ease;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.hero-cta:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 127, 23, 0.3);
}

/* Hero indicators */
.hero-indicators {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.2);
}

.hero-dot:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.4);
}

.scroll-arrow {
  position: absolute;
  bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  z-index: 3;
  opacity: 0;
  animation: floatDown 2s ease-in-out infinite, fadeIn 1s ease 2.5s forwards;
}

@keyframes floatDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* --- ABOUT (Orange Section) --- */
.about {
  background: var(--orange);
  padding: 6rem 0;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.about-logo {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-text {
  color: var(--white);
  font-size: 1.05rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* --- GALLERY --- */
.gallery {
  padding: 7rem 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: var(--dark);
  text-transform: uppercase;
}

.section-line {
  width: 50px;
  height: 3px;
  background: var(--orange);
  margin: 1rem auto;
}

.section-desc {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--wine-light);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.gallery-item {
  cursor: pointer;
}

.artwork-frame {
  position: relative;
  overflow: hidden;
  background: var(--gray-light);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-frame);
  aspect-ratio: 1;
  transition: box-shadow var(--transition), transform var(--transition);
}

.artwork-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.artwork-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(119, 60, 78, 0.85) 0%, rgba(119, 60, 78, 0.2) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.artwork-overlay-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.05em;
  transform: translateY(10px);
  transition: transform var(--transition);
}

.gallery-item:hover .artwork-frame {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

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

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

.gallery-item:hover .artwork-overlay-title {
  transform: translateY(0);
}

.artwork-title {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--wine);
  text-align: center;
  margin-top: 0.8rem;
  transition: color var(--transition-fast);
}

.gallery-item:hover .artwork-title {
  color: var(--orange);
}

/* --- YOUTUBE FEED --- */
.youtube {
  padding: 6rem 0;
  background: var(--gray-light);
}

.youtube-feed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.youtube-video-card {
  display: block;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.youtube-video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.youtube-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--dark);
}

.youtube-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.youtube-video-card:hover .youtube-thumb img {
  transform: scale(1.08);
}

.youtube-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(245, 127, 23, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.youtube-play-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
  margin-left: 3px;
}

.youtube-video-card:hover .youtube-play-icon {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--orange);
}

.youtube-video-info {
  padding: 1rem 1.2rem;
}

.youtube-video-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.3rem;
}

.youtube-video-date {
  font-size: 0.78rem;
  color: var(--wine-light);
}

.youtube-cta-wrapper {
  text-align: center;
  margin-top: 1rem;
}

.youtube-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--white);
  background: #FF0000;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.youtube-cta:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.youtube-cta svg {
  width: 20px;
  height: 20px;
}

/* YouTube loading skeleton */
.youtube-skeleton {
  background: var(--gray-light);
  border-radius: 12px;
  overflow: hidden;
  animation: shimmer 1.5s infinite;
}

.youtube-skeleton .youtube-thumb {
  background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* --- AUTHOR --- */
.author {
  background: var(--orange);
  padding: 6rem 0;
  overflow: hidden;
}

.author-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}

.author-photo-frame {
  text-align: center;
}

.author-name-badge {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.author-bio {
  color: var(--white);
}

.author-bio p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
}

.author-quote {
  font-size: 1.2rem;
  line-height: 1.8;
}

.author-highlight {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
}

.author-bio strong {
  color: var(--white);
  font-weight: 700;
}

.author-final {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.15rem;
}

/* --- CONTACT --- */
.contact {
  padding: 6rem 0;
  background: var(--white);
}

.contact-content {
  text-align: center;
}

.contact-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  color: var(--wine);
  margin-bottom: 0.5rem;
}

.contact-line {
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin: 1rem auto 2rem;
}

.contact-email {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--orange);
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition-fast);
  display: inline-block;
  padding-bottom: 2px;
}

.contact-email:hover {
  border-color: var(--orange);
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-social a {
  color: var(--wine);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.contact-social a:hover {
  color: var(--orange);
  transform: translateY(-3px);
}

/* --- FOOTER --- */
.footer {
  background: var(--dark);
  padding: 2rem 0;
  text-align: center;
}

.footer-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer-content a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.footer-content a:hover {
  color: var(--orange);
}

.footer-cookies {
  margin-top: 0.5rem;
}

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: var(--overlay);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  text-align: center;
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-img {
  max-width: 85vw;
  max-height: 78vh;
  object-fit: contain;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.lightbox.active .lightbox-img {
  opacity: 1;
  transform: scale(1);
}

.lightbox-title {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 1.2rem;
}

.lightbox-counter {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.15em;
  margin-top: 0.5rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  transition: color var(--transition-fast), transform var(--transition-fast);
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--white);
  transform: scale(1.15);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

/* --- SCROLL ANIMATIONS --- */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.fade-up {
  transform: translateY(40px);
}

.animate-on-scroll.slide-left {
  transform: translateX(-50px);
}

.animate-on-scroll.slide-right {
  transform: translateX(50px);
}

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

/* Staggered delays for gallery items */
.gallery-item.animate-on-scroll {
  transition-delay: calc(var(--delay) * 0.08s);
}

/* --- REAL IMAGES --- */
.about-logo-img {
  max-width: 380px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.author-photo-img {
  width: 280px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* --- NEW BADGE --- */
.badge-new {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(245, 127, 23, 0.4);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 2px 8px rgba(245, 127, 23, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 4px 14px rgba(245, 127, 23, 0.6); }
}

.gallery-item--new .artwork-frame {
  border-color: var(--orange);
  border-width: 3px;
}

/* --- RESPONSIVE --- */

/* Tablet landscape */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

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

/* Tablet portrait */
@media (max-width: 900px) {
  .about-grid,
  .author-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .about-text,
  .author-bio {
    text-align: left;
  }

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

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

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--orange);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-title {
    font-size: 2.5rem;
  }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-nav { width: 40px; height: 40px; }
}

/* Mobile */
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

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

  .hero-title {
    letter-spacing: 0.12em;
  }

  .container {
    padding: 0 1.2rem;
  }

  .about, .author {
    padding: 4rem 0;
  }

  .gallery {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .artwork-title {
    font-size: 0.8rem;
  }

  .lightbox-img {
    max-width: 95vw;
    max-height: 70vh;
  }

  .lightbox-close {
    top: 0.8rem;
    right: 1rem;
    font-size: 2rem;
  }

  .lightbox-title {
    font-size: 1rem;
  }

  .hero-indicators {
    bottom: 4rem;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 320px;
    margin: 0 auto;
  }

  .youtube-feed {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto 2rem;
  }
}

/* --- NAV TOGGLE ANIMATION --- */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* --- SELECTION --- */
::selection {
  background: var(--orange);
  color: var(--white);
}

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

::-webkit-scrollbar-track {
  background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
  background: var(--gray);
  border-radius: 4px;
}

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