/* ==========================================================================
   Twisted Wings Outfitters - Main Stylesheet
   Bespoke nature-themed design with Mossy Oak camo textures,
   duck art icons, hunter orange accents, and parallax effects.
   ========================================================================== */

/* ---- FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;600;700&display=swap');

/* ---- COLORS & FONTS ---- */
:root {
  --font-heading: 'Bebas Neue', Arial, sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --bark: #15110d;
  --bark-soft: #221c15;
  --bark-elevated: #2d251c;
  --hide: #f6efe0;
  --brass: #b89151;
  --brass-bright: #d4a862;
  --rust: #9e4331;
  --rust-bright: #c4553e;
  --moss: #4a5238;
  --moss-light: #6b7a4e;
  --hunter-orange: #FF6600;
  --hunter-orange-dark: #cc5200;
  --cream: #f0e6cd;
  --line: rgba(244, 233, 210, 0.12);
  --line-strong: rgba(244, 233, 210, 0.25);
  --text: #f6efe0;
  --text-muted: #f6efe0b3;
  --text-strong: #f6efe0;
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.25);
  --shadow-medium: 0 10px 40px rgba(0,0,0,0.35);
  --shadow-strong: 0 20px 60px rgba(0,0,0,0.45);
}

/* ---- RESET & BASE ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--hide);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  color: var(--bark);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4, .display {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: linear-gradient(to bottom, rgba(21, 17, 13, 0.95) 0%, rgba(21, 17, 13, 0) 100%);
  transition: all 0.3s ease;
}
.nav.scrolled {
  background-color: var(--bark);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(184, 145, 81, 0.2);
}
.nav-brand img { height: 46px; width: auto; }
.nav-links {
  display: flex;
  gap: 2.2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}
.nav-links a {
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 2px;
  background: var(--hunter-orange);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--font-body);
  border: 2px solid var(--hunter-orange);
  background: var(--hunter-orange);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  box-shadow: 0 0 15px rgba(255,102,0,0.3);
}
.nav-cta:hover {
  background: transparent;
  color: var(--hunter-orange);
  box-shadow: 0 0 25px rgba(255,102,0,0.5);
}

/* Mobile menu button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bark);
    flex-direction: column;
    gap: 0;
    padding: 1rem 5%;
  }
  .nav-links.active { display: flex; }
  .nav-links a {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: block; }
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 540px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  transform: scale(1.05);
}
.hero-slide.active { 
  opacity: 1; 
  transform: scale(1);
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 80%, var(--bark) 100%);
}

.slide-text {
  position: absolute;
  z-index: 2;
  max-width: 600px;
  padding: 2rem;
}
.slide-text--left { left: 5%; right: auto; text-align: left; }
.slide-text--center { left: 50%; transform: translateX(-50%); text-align: center; }
.slide-text--right { right: 5%; left: auto; text-align: right; }
.slide-text--top { top: 5%; }
.slide-text--middle { top: 50%; transform: translateY(-50%); }
.slide-text--bottom { bottom: 5%; }

.slide-text h2 {
  font-family: var(--font-body);
  font-size: 3.2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0,0,0,0.6);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.slide-text h2 br { display: block; }
.slide-text p {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--brass);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  margin-bottom: 1.5rem;
}
.slide-text .btn-primary {
  display: inline-block;
  background: var(--hunter-orange);
  color: #fff;
  padding: 0.7rem 1.8rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: 2px solid var(--hunter-orange);
  box-shadow: 0 0 15px rgba(255,102,0,0.3);
}
.slide-text .btn-primary:hover {
  background: transparent;
  color: var(--hunter-orange);
  box-shadow: 0 0 25px rgba(255,102,0,0.5);
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 2;
}
.hero-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(244, 233, 210, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}
.hero-dot.active {
  background: var(--hunter-orange);
  width: 20px;
  box-shadow: 0 0 10px rgba(255,102,0,0.5);
}

@media (max-width: 768px) {
  .slide-text h2 { font-size: 1.8rem; }
  .slide-text { padding: 1rem; max-width: 100%; }
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .kicker {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  color: var(--rust);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.section-header .kicker::before,
.section-header .kicker::after {
  content: '';
  height: 1px;
  width: 40px;
  background: var(--rust);
  opacity: 0.5;
}
.section-header h2 {
  font-family: var(--font-body);
  font-size: 2.5rem;
  color: inherit;
  margin-bottom: 0.5rem;
}
.section-header p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* ==========================================================================
   BUTTONS — Hunter Orange Primary, Camo Outlines
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--hunter-orange);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 0%;
  background: var(--bark);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.btn-primary {
  background: var(--hunter-orange);
  color: #fff;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(255,102,0,0.3);
}
.btn-primary:hover {
  color: var(--hunter-orange);
}
.btn-primary:hover::after {
  height: 100%;
}
.btn-outline {
  background: transparent;
  color: var(--hunter-orange);
  border-color: var(--hunter-orange);
}
.btn-outline::after {
  background: var(--hunter-orange);
}
.btn-outline:hover {
  color: #fff;
}
.btn-outline:hover::after {
  height: 100%;
}

/* Camo button variant — uses Mossy Oak pattern */
.btn-camo {
  background-image: url('images/graphics/MossyOakStore_2880x1620_Greenleaf_2400x.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  border: 2px solid var(--moss);
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  font-weight: bold;
}
.btn-camo:hover {
  border-color: var(--hunter-orange);
  box-shadow: 0 0 20px rgba(255,102,0,0.4);
}

/* ==========================================================================
   CONTENT SECTIONS
   ========================================================================== */
section { padding: 5rem 0; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  section { padding: 3rem 0; }
  .container { padding: 0 1rem; }
}

/* ==========================================================================
   GRID SYSTEM
   ========================================================================== */
.grid {
  display: grid;
  gap: 2rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PARALLAX SECTIONS
   ========================================================================== */
.parallax {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 0;
}
.parallax .container {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   CAMO TEXTURE BACKGROUNDS
   ========================================================================== */
.camo-bg-bottomland {
  background-image: url('images/graphics/MossyOakStore_2880x1620_Bottomland_2400x.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.camo-bg-bottomland::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 0;
}
.camo-bg-bottomland .container { position: relative; z-index: 1; }

.camo-bg-greenleaf {
  background-image: url('images/graphics/MossyOakStore_2880x1620_Greenleaf_2400x.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.camo-bg-greenleaf::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}
.camo-bg-greenleaf .container { position: relative; z-index: 1; }

.camo-bg-shadowgrass {
  background-image: url('images/graphics/Mossy_Oak_Shadow_Grass_original_proof_aRGB_1080-as3c1_2400x.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.camo-bg-shadowgrass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}
.camo-bg-shadowgrass .container { position: relative; z-index: 1; }

/* ==========================================================================
   GRASS VECTOR BORDERS (CSS-only grass edge)
   ========================================================================== */
.grass-border-top {
  position: relative;
}
.grass-border-top::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40'%3E%3Cpath d='M0,40 L0,20 Q50,0 100,20 Q150,40 200,20 Q250,0 300,20 Q350,40 400,20 Q450,0 500,20 Q550,40 600,20 Q650,0 700,20 Q750,40 800,20 Q850,0 900,20 Q950,40 1000,20 Q1050,0 1100,20 Q1150,40 1200,20 L1200,40 Z' fill='%23221c15' opacity='0.8'/%3E%3C/svg%3E") repeat-x top center;
  background-size: 300px 40px;
  z-index: 2;
  pointer-events: none;
}

.grass-border-bottom {
  position: relative;
}
.grass-border-bottom::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40'%3E%3Cpath d='M0,0 L0,20 Q50,40 100,20 Q150,0 200,20 Q250,40 300,20 Q350,0 400,20 Q450,40 500,20 Q550,0 600,20 Q650,40 700,20 Q750,0 800,20 Q850,40 900,20 Q950,0 1000,20 Q1050,40 1100,20 Q1150,0 1200,20 L1200,0 Z' fill='%23221c15' opacity='0.8'/%3E%3C/svg%3E") repeat-x bottom center;
  background-size: 300px 40px;
  z-index: 2;
  pointer-events: none;
}

/* ==========================================================================
   DUCK ART ICONS (decorative)
   ========================================================================== */
.duck-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.duck-icon--mallard { background-image: url('images/graphics/duck art/ducksart-01.png'); }
.duck-icon--flying { background-image: url('images/graphics/duck art/ducksart-03.png'); }
.duck-icon--goose { background-image: url('images/graphics/duck art/ducksart-18.png'); }
.duck-icon--flock { background-image: url('images/graphics/duck art/Flock of Ducks.H03.2k.png'); }
.duck-icon--large-goose { background-image: url('images/graphics/duck art/Large Wild Goose Walking Pose.H03.2k.png'); }

/* Decorative duck divider */
.duck-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}
.duck-divider::before,
.duck-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: var(--brass);
  opacity: 0.3;
}
.duck-divider .duck-icon {
  width: 50px;
  height: 30px;
  opacity: 0.6;
}

/* ==========================================================================
   HUNT TYPE CARDS
   ========================================================================== */
.hunt-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--bark-soft);
  color: var(--hide);
}
.hunt-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}
.hunt-card .hunt-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hunt-card .hunt-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bark) 0%, transparent 60%);
}
.hunt-card .hunt-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--hunter-orange);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 0 10px rgba(255,102,0,0.4);
}
.hunt-card .hunt-body {
  padding: 1.5rem;
}
.hunt-card .hunt-body h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--brass);
  margin-bottom: 0.5rem;
}
.hunt-card .hunt-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.hunt-card .hunt-body .hunt-price {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--hunter-orange);
  margin-bottom: 0.3rem;
}
.hunt-card .hunt-body .hunt-detail {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ==========================================================================
   TESTIMONIAL CAROUSEL
   ========================================================================== */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-slide {
  min-width: 100%;
  padding: 2rem;
  text-align: center;
}
.testimonial-slide .quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-slide .author {
  font-family: var(--font-body);
  color: var(--brass);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}
.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(184, 145, 81, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}
.carousel-dot.active {
  background: var(--hunter-orange);
  width: 14px;
  box-shadow: 0 0 8px rgba(255,102,0,0.4);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background-color: #110e0a;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
  color: var(--text-muted);
  padding: 5rem 0 2rem;
  border-top: 3px solid var(--hunter-orange);
}
footer .footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
footer .footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--brass);
  margin-bottom: 1rem;
}
footer .footer-col ul { list-style: none; }
footer .footer-col ul li { margin-bottom: 0.6rem; }
footer .footer-col a:hover { color: var(--hunter-orange); }
footer .social-links { display: flex; gap: 1rem; margin-top: 1rem; }
footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--brass);
  color: var(--bark);
  border-radius: 50%;
  transition: all 0.2s ease;
}
footer .social-links a:hover {
  background: var(--hunter-orange);
  color: #fff;
  transform: scale(1.1);
}
footer .newsletter {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
footer .newsletter h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--brass);
  margin-bottom: 1rem;
}
footer .newsletter form {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
}
footer .newsletter input {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: rgba(255,255,255,0.05);
  color: var(--hide);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
footer .newsletter input::placeholder { color: var(--text-muted); }
footer .newsletter button {
  padding: 0.6rem 1.2rem;
  background: var(--hunter-orange);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}
footer .newsletter button:hover {
  background: var(--hunter-orange-dark);
}
footer .copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  footer .footer-top { grid-template-columns: 1fr; }
  footer .newsletter form { flex-direction: column; }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }

/* ==========================================================================
   LOGO CAROUSEL — scrolling partners with on/off focus effect
   ========================================================================== */
.logo-carousel {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.logo-carousel-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: logo-scroll 30s linear infinite;
  width: max-content;
}
.logo-carousel-track:hover {
  animation-play-state: paused;
}
.logo-carousel-item {
  position: relative;
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-carousel-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  transition: opacity 0.3s ease;
}
.logo-carousel-item .logo-off {
  position: absolute;
  opacity: 1;
}
.logo-carousel-item .logo-on {
  position: absolute;
  opacity: 0;
}
.logo-carousel-item:hover .logo-off {
  opacity: 0;
}
.logo-carousel-item:hover .logo-on {
  opacity: 1;
}
@keyframes logo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .logo-carousel-item { width: 120px; height: 60px; }
  .logo-carousel-track { gap: 2rem; }
}
