/*
Theme Name: Donna's Ranch
Theme URI: https://donnasranchwells.net
Author: Royce Goodman / Goodman Advisors
Author URI: https://goodmanadvisors.com
Description: Elegant, seductive custom theme for Donna's Ranch legal brothel in Wells, Nevada. Established 1867. Features custom girl portfolios, booking system, rich history, and luxurious dark design.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: donnas-ranch
Tags: adult, brothel, elegant, dark, luxury, responsive, custom-post-types
*/

/* ============================================
   DONNA'S RANCH - LUXURIOUS DARK THEME
   Deep blacks, passionate reds, warm golds
   ============================================ */

:root {
  --color-bg: #0a0a0a;
  --color-surface: #111111;
  --color-surface-2: #1a1a1a;
  --color-text: #e5e5e5;
  --color-text-muted: #a3a3a3;
  --color-accent: #9f1239;      /* Deep rose / passion */
  --color-gold: #c5a46e;        /* Warm gold */
  --color-gold-dark: #8b6f3e;
  --color-border: #27272a;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
}

/* Elegant headings */
h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.025em;
}

h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

/* Gold accent text */
.gold-text {
  color: var(--color-gold);
}

/* Passionate buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.875rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background-color: #be123c;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.3);
}

.btn-gold {
  background-color: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-gold:hover {
  background-color: var(--color-gold);
  color: #0a0a0a;
  transform: translateY(-2px);
}

/* Girl Cards */
.girl-card {
  position: relative;
  overflow: hidden;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.girl-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.5);
}

.girl-card img {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.girl-card:hover img {
  transform: scale(1.08);
}

.girl-card .overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  transition: opacity 0.3s ease;
}

.girl-card:hover .overlay {
  opacity: 0.95;
}

/* Form Styling */
input, select, textarea {
  background-color: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 14px 18px;
  font-size: 1rem;
  transition: all 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(197, 164, 110, 0.1);
}

label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  display: block;
}

/* Navigation */
.nav-link {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width 0.3s ease;
}

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

/* Age Gate */
#age-gate {
  animation: fadeIn 0.4s ease forwards;
}

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

/* Timeline for History */
.timeline-item {
  position: relative;
  padding-left: 2.5rem;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: 0.6rem;
  top: 0;
  bottom: -2rem;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-gold), var(--color-accent));
}

.timeline-item:last-child:before {
  display: none;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--color-gold);
  border: 4px solid #0a0a0a;
  border-radius: 9999px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
}

/* Utility */
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.gold-border {
  border-color: var(--color-gold);
}