/* Furry Rental — Custom Styles */

:root {
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --accent: #e8a838;
  --accent-hover: #d4962e;
  --text: #e0e0e0;
  --text-muted: #9ca3af;
  --bg: #0f0f1a;
  --card-bg: #1a1a2e;
  --card-border: #2a2a3e;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Sticky Header */
.site-header {
  backdrop-filter: blur(12px);
  background: rgba(15, 15, 26, 0.9);
  border-bottom: 1px solid var(--card-border);
}

/* Hero gradient */
.hero-gradient {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}
.hero-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(232, 168, 56, 0.08) 0%, transparent 50%);
  animation: heroShift 15s ease-in-out infinite alternate;
}
@keyframes heroShift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(5%, 3%); }
}

/* Cards */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 168, 56, 0.1);
}

/* Placeholder images */
.placeholder-img {
  background: linear-gradient(135deg, #2a2a3e 0%, #1e1e32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  text-align: center;
  padding: 1rem;
  border-radius: 0.5rem;
}

/* Accent button */
.btn-accent {
  background-color: var(--accent);
  color: #000;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease, transform 0.1s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-outline:hover {
  background-color: var(--accent);
  color: #000;
}

/* FAQ Accordion */
.faq-item { border-bottom: 1px solid var(--card-border); }
.faq-question {
  cursor: pointer;
  user-select: none;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}
.faq-chevron {
  transition: transform 0.3s ease;
}

/* Gallery filter */
.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
}
.filter-btn:hover, .filter-btn.active {
  background-color: var(--accent);
  color: #000;
  border-color: var(--accent);
}

/* Stats counter */
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

/* Testimonial */
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}

/* Mobile menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-menu.open {
  max-height: 400px;
}

/* Team avatar placeholder */
.avatar-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a3e, #3a3a4e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1rem;
  object-fit: cover;
}

/* Product card */
.product-price {
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
}

/* Form inputs */
input, select, textarea {
  background: var(--primary) !important;
  border: 1px solid var(--card-border) !important;
  color: var(--text) !important;
  border-radius: 0.5rem;
  padding: 0.75rem;
  width: 100%;
  transition: border-color 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent) !important;
}

/* Section divider */
.section-divider {
  border: none;
  height: 1px;
  background: var(--card-border);
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--primary);
  border-top: 1px solid var(--card-border);
}

/* Smooth page transitions */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
  }
  @keyframes fadeIn {
    to { opacity: 1; }
  }
}
