/* 
========================================================================
   SITH EMPIRE FCI - OFFICIAL PREMIUM STYLESHEET
   Aesthetic: Dark Cinematic / Sith theme (Star Wars Inspired)
   Functional Reference: taurokennel.com
========================================================================
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@400;500;600;700&display=swap');

/* --- Design Tokens / Variables --- */
:root {
  /* Colors */
  --red: #cc0000;
  --red-light: #ff3333;
  --red-glow: rgba(204, 0, 0, 0.4);
  --red-glow-bright: rgba(255, 0, 60, 0.85);
  --gold: #c9a84c;
  --gold-glow: rgba(201, 168, 76, 0.3);
  --dark: #050505;
  --dark-card: rgba(14, 14, 14, 0.8);
  --dark-card-hover: rgba(22, 22, 22, 0.9);
  --dark-border: rgba(255, 255, 255, 0.05);
  --dark-border-hover: rgba(204, 0, 0, 0.25);
  --light: #f5f5f5;
  --text-muted: #8e8e8e;
  --text-dark: #333333;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease-out;
}

/* --- Global Reset & Scroll --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--dark);
}

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--red-light);
}

body {
  background-color: var(--dark);
  color: var(--light);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none; /* Hide default cursor on desktop */
}

/* Enable default cursor when custom cursor is disabled or on touch devices */
@media (hover: none) {
  body {
    cursor: auto !important;
  }
  #cursor-dot, #cursor-ring, .trail {
    display: none !important;
  }
}

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

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

/* --- Custom Cursor Styles --- */
#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--red-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--red-light), 0 0 20px var(--red);
}

#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 0, 60, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, border-color 0.25s, background-color 0.25s;
  box-shadow: 0 0 12px rgba(204, 0, 0, 0.15);
}

#cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: var(--red-light);
  background-color: rgba(204, 0, 0, 0.05);
  box-shadow: 0 0 18px var(--red-glow-bright);
}

.trail {
  position: fixed;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  background: rgba(204, 0, 0, 0.6);
  animation: trailFade 0.6s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

@keyframes trailFade {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.1);
  }
}

/* --- Utility Components --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #ffffff;
}

.section-title .accent {
  color: var(--red-light);
  text-shadow: 0 0 15px rgba(255, 0, 60, 0.3);
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--red);
  margin-bottom: 40px;
  box-shadow: 0 0 8px var(--red-glow-bright);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--light);
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: 0.5s;
}

.btn:hover::after {
  left: 100%;
}

.btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
}

.btn-accent {
  border-color: var(--red);
  color: var(--red-light);
  box-shadow: 0 0 10px rgba(204, 0, 0, 0.1);
}

.btn-accent:hover {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
  box-shadow: 0 0 20px var(--red-glow-bright);
}

/* --- Navigation Header --- */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dark-border);
  transition: var(--transition-smooth);
}

header.site-header.scrolled {
  background: rgba(3, 3, 3, 0.96);
  padding: 10px 0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.8);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--red-light);
  text-shadow: 0 0 8px var(--red-glow-bright);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 12px;
  height: 75px;
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-item:hover > .nav-link, .nav-link.active {
  color: #ffffff;
}

.nav-link.has-dropdown::after {
  content: '▼';
  font-size: 8px;
  margin-left: 5px;
  color: var(--text-muted);
  display: inline-block;
  transition: transform 0.2s ease;
}

.nav-item:hover > .nav-link.has-dropdown::after {
  transform: rotate(180deg);
  color: var(--red-light);
}

/* Dropdown Menu Styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(13, 13, 13, 0.98);
  border: 1px solid var(--dark-border);
  border-top: 2px solid var(--red);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  min-width: 200px;
  list-style: none;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  z-index: 1001;
  backdrop-filter: blur(10px);
}

.dropdown-menu li a {
  padding: 10px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}

.dropdown-menu li a:hover {
  color: #ffffff;
  background: rgba(204, 0, 0, 0.1);
  padding-left: 24px;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 6px;
  margin-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 10px;
}

.lang-btn {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  transition: var(--transition-fast);
}

.lang-btn.active {
  color: var(--red-light);
  border: 1px solid var(--red);
  background: rgba(204, 0, 0, 0.05);
}

.lang-btn:hover {
  color: #ffffff;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

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

/* --- Hero Slider (Karuzela) --- */
.hero-slider-container {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-slider-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
  z-index: 5;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) contrast(1.1);
  transform: scale(1.05);
  transition: transform 6s ease-out;
}

.hero-slide.active .slide-bg {
  transform: scale(1);
}

.slide-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.3s, opacity 0.8s ease 0.3s;
}

.hero-slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-tagline {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.slide-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(32px, 6vw, 62px);
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 14px;
  color: #ffffff;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.slide-subtitle {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(12px, 2vw, 18px);
  font-weight: 400;
  letter-spacing: 8px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.slide-desc {
  font-size: clamp(14px, 1.8vw, 18px);
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Slider Navigation Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(5, 5, 5, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10;
  font-size: 20px;
}

.slider-arrow:hover {
  background: var(--dark);
  border-color: var(--red);
  color: #ffffff;
  box-shadow: 0 0 15px var(--red-glow);
}

.slider-arrow-prev {
  left: 30px;
}

.slider-arrow-next {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background: var(--red-light);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 10px var(--red-glow-bright);
}

/* --- Section Formatting --- */
section {
  padding: 100px 0;
  position: relative;
  border-bottom: 1px solid var(--dark-border);
}

.about {
  background: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-box {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--dark-card);
  padding: 10px;
}

.about-img-box::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid rgba(254, 0, 60, 0.08);
  pointer-events: none;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: #0d0d0d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 2px dashed rgba(255, 255, 255, 0.05);
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  gap: 15px;
  text-align: center;
}

.about-img-placeholder svg {
  color: var(--red-light);
  opacity: 0.5;
}

.about-text p {
  color: #b3b3b3;
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* --- Achievement Stats Grid --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 45px;
}

.stat-card {
  background: rgba(13, 13, 13, 0.6);
  border: 1px solid var(--dark-border);
  padding: 28px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  border-color: var(--dark-border-hover);
  background: var(--dark-card-hover);
  box-shadow: 0 10px 30px rgba(204, 0, 0, 0.05);
  transform: translateY(-5px);
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.stat-card.accent-stat .stat-number {
  color: var(--gold);
  text-shadow: 0 0 10px var(--gold-glow);
}

.stat-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* --- Breeds Showcase --- */
.breeds {
  background: #090909;
}

.breeds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.breed-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.breed-card:hover {
  border-color: var(--dark-border-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(204, 0, 0, 0.05);
  transform: translateY(-4px);
}

.breed-img-box {
  width: 100%;
  aspect-ratio: 16/10;
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
}

.breed-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid var(--dark-border);
  text-transform: uppercase;
}

.breed-info {
  padding: 32px;
}

.breed-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.breed-tag {
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.breed-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.breed-bar {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  transition: width 0.3s ease, background 0.3s ease;
}

.breed-card:hover .breed-bar {
  width: 80px;
  background: var(--red);
  box-shadow: 0 0 8px var(--red-light);
}

/* --- Dogs Showcase (Tabs / Category System) --- */
.dogs-showcase {
  background: var(--dark);
}

.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 45px;
}

.tabs-container {
  display: flex;
  gap: 12px;
}

.tab-btn {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 24px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.tab-btn.active {
  color: #ffffff;
  border-color: var(--red);
  background: rgba(204, 0, 0, 0.08);
  box-shadow: 0 0 15px rgba(204, 0, 0, 0.05);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

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

.dogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.dog-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.dog-card:hover {
  border-color: var(--dark-border-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 12px rgba(204, 0, 0, 0.08);
  transform: translateY(-4px);
}

.dog-img-box {
  width: 100%;
  aspect-ratio: 1/1;
  background: #0b0b0b;
  position: relative;
  overflow: hidden;
}

.dog-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  gap: 12px;
}

.dog-img-placeholder svg {
  color: var(--red);
  opacity: 0.3;
}

.dog-info {
  padding: 24px;
}

.dog-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.dog-name span {
  font-family: 'Rajdhani', sans-serif;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
}

.dog-titles {
  font-size: 12px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.dog-stats-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
  margin-bottom: 18px;
}

.dog-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.dog-meta-lbl {
  color: var(--text-muted);
}

.dog-meta-val {
  color: #dddddd;
  font-weight: 600;
}

.dog-meta-val.health-ok {
  color: #34d399; /* Green for clear health tests */
}

/* --- Available Puppies Module --- */
.available-puppies {
  background: #090909;
}

.puppies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.puppy-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.puppy-card:hover {
  border-color: var(--dark-border-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  transform: translateY(-4px);
}

.puppy-img-box {
  width: 100%;
  aspect-ratio: 16/10;
  background: #0c0c0c;
  position: relative;
}

.puppy-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.1);
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 14px;
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  z-index: 10;
}

.status-available {
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid #34d399;
  color: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.15);
}

.status-reserved {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid #f59e0b;
  color: #f59e0b;
}

.status-sold {
  background: rgba(156, 163, 175, 0.15);
  border: 1px solid #9ca3af;
  color: #9ca3af;
}

.status-planned {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid #a855f7;
  color: #a855f7;
}

.puppy-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.puppy-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
}

.puppy-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 16px;
}

.puppy-meta-item {
  font-size: 13px;
  display: flex;
  flex-direction: column;
}

.puppy-meta-lbl {
  color: var(--text-muted);
  margin-bottom: 2px;
}

.puppy-meta-val {
  font-weight: 600;
  color: #ffffff;
}

.puppy-parents {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  margin-bottom: 24px;
}

.puppy-parent-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.puppy-parent-lbl {
  color: var(--text-muted);
}

.puppy-parent-val {
  font-weight: 600;
  color: var(--gold);
}

.puppy-btn {
  margin-top: auto;
  width: 100%;
}

/* --- Features Section ("Dlaczego Sith Empire") --- */
.features {
  background: var(--dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 45px;
}

.feat-card {
  background: var(--dark);
  padding: 40px 30px;
  transition: var(--transition-smooth);
}

.feat-card:hover {
  background: var(--dark-card-hover);
}

.feat-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.feat-card:hover .feat-icon-box {
  border-color: var(--red);
  background: rgba(204, 0, 0, 0.05);
  box-shadow: 0 0 12px var(--red-glow);
}

.feat-icon-box svg {
  color: var(--red-light);
  width: 24px;
  height: 24px;
}

.feat-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
}

.feat-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* --- Gallery Grid --- */
.gallery {
  background: #090909;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  cursor: pointer;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.05);
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px dashed rgba(255, 255, 255, 0.03);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.gallery-overlay-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--red);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 0 15px var(--red-glow);
}

/* --- FAQ Accordion --- */
.faq {
  background: var(--dark);
}

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--dark-border-hover);
}

.faq-header {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  padding-right: 20px;
}

.faq-chevron {
  font-size: 12px;
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--red-light);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
  padding: 0 30px 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.faq-content p {
  margin-bottom: 12px;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

/* --- Testimonials / Feedback --- */
.testimonials {
  background: #090909;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 40px 32px;
  position: relative;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 90px;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
}

.test-quote {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.test-meta {
  display: flex;
  flex-direction: column;
}

.test-author {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 4px;
}

.test-location {
  font-size: 12px;
  color: var(--text-muted);
}

/* --- Contact & Forms --- */
.contact {
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 35px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-box svg {
  color: var(--red-light);
  width: 16px;
  height: 16px;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
}

.contact-item-lbl {
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contact-item-val {
  font-weight: 600;
  color: #ffffff;
}

/* Contact Socials */
.contact-socials {
  display: flex;
  gap: 12px;
}

.social-circle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-circle:hover {
  border-color: var(--red);
  background: rgba(204, 0, 0, 0.05);
  color: #ffffff;
  box-shadow: 0 0 10px var(--red-glow);
}

.social-circle svg {
  width: 16px;
  height: 16px;
}

/* Brutalist Dark Form Styles */
.contact-form-box {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(5, 5, 5, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 16px;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 12px var(--red-glow);
  background: rgba(10, 10, 10, 0.95);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted);
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--red);
  margin-top: 3px;
}

.form-btn {
  width: 100%;
  margin-top: 10px;
}

.form-response-message {
  margin-top: 20px;
  padding: 12px 16px;
  border-left: 3px solid;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  display: none;
  animation: fadeIn 0.3s ease forwards;
}

.form-response-message.success {
  background: rgba(52, 211, 153, 0.05);
  border-color: #34d399;
  color: #34d399;
}

.form-response-message.error {
  background: rgba(239, 68, 68, 0.05);
  border-color: #ef4444;
  color: #ef4444;
}

/* --- Dynamic Modal (lightbox / pedigree window) --- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 3, 3, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.modal-dialog {
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  background: #0d0d0d;
  border: 1px solid rgba(255, 0, 60, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(204, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.modal.active .modal-dialog {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 30px;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--red-light);
  transform: rotate(90deg);
}

.modal-body {
  padding: 40px;
  overflow-y: auto;
  max-height: 80vh;
}

/* Lightbox Modal Specifics */
.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.lightbox-img-placeholder {
  width: 100%;
  height: 60vh;
  background: #000;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lightbox-caption {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 20px;
}

/* Dog Pedigree Tree Layout inside modal */
.pedigree-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}

.pedigree-tree {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  background: rgba(255, 255, 255, 0.01);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.pedigree-node {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pedigree-node.male {
  border-left: 2px solid #3b82f6;
}

.pedigree-node.female {
  border-left: 2px solid #ec4899;
}

.pedigree-node-role {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.pedigree-node-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

.pedigree-node-titles {
  font-size: 11px;
  color: var(--gold);
  margin-top: 2px;
}

/* --- System Footer --- */
footer.site-footer {
  background: #000000;
  border-top: 1px solid var(--dark-border);
  padding: 50px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 40px;
}

.footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-logo span {
  color: var(--red);
}

.footer-nav {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.fci-badge {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
}

/* --- Responsive Media Queries (RWD) --- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
  }
  .feat-card {
    background: var(--dark);
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .breeds-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  
  .gallery-item.wide {
    grid-column: span 1;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  /* Navigation Menu mobile slide-in */
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - 75px);
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-right: 1px solid var(--dark-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px;
    gap: 0;
    transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }

  .nav-link {
    padding: 16px 0;
    font-size: 12px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    display: none; /* Controlled by JS click on mobile */
    transform: none;
    border: none;
    background: transparent;
    padding: 0 0 16px 16px;
    box-shadow: none;
    min-width: unset;
  }
  
  .nav-item.mobile-dropdown-active .dropdown-menu {
    display: block;
  }

  .lang-switcher {
    margin-left: 0;
    margin-top: 24px;
    border-left: none;
    padding-left: 0;
    width: 100%;
    justify-content: flex-start;
  }
  
  .slider-arrow {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  
  .slider-arrow-prev {
    left: 10px;
  }

  .slider-arrow-next {
    right: 10px;
  }
  
  .showcase-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .tabs-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .tab-btn {
    flex-shrink: 0;
  }
  
  .pedigree-tree {
    grid-template-columns: 1fr;
  }
  
  .contact-form-box {
    padding: 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .slide-title {
    font-size: 28px;
  }

  .puppies-grid {
    grid-template-columns: 1fr;
  }

  .puppy-meta-grid {
    grid-template-columns: 1fr;
  }
}
