/**
 * NWA Dates - Modern CSS with CSS Custom Properties
 * Built for performance, accessibility, and pure visual delight 🐶
 */

/* ===== CSS CUSTOM PROPERTIES (DESIGN TOKENS) ===== */
:root {
  /* Colors */
  --primary-color: #2c3e50;
  --primary-light: #34495e;
  --accent-color: #e74c3c;
  --accent-light: #ec7063;
  --success-color: #27ae60;
  --warning-color: #f39c12;
  --info-color: #3498db;
  
  /* Neutrals */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;
  
  /* Gradients */
  --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  --accent-gradient: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
  --warm-gradient: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-display: 'Poppins', var(--font-primary);
  
  /* Font sizes (fluid typography) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  --text-3xl: clamp(2rem, 1.7rem + 1vw, 2.5rem);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  /* Container width */
  --container-max-width: 1200px;
  --content-max-width: 800px;
}

/* ===== RESET & BASE STYLES ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--dark-gray);
  background: var(--light-gray);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ===== HEADER ===== */
header.banner {
  background: var(--primary-gradient);
  padding: var(--space-lg) 0;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

header.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>') repeat;
  opacity: 0.1;
}

.banner-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===== NAVIGATION ===== */
nav {
  background: var(--white);
  padding: var(--space-md) 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

nav a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

nav a:hover {
  color: var(--accent-color);
  background: rgba(231, 76, 60, 0.05);
  transform: translateY(-1px);
}

nav a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* ===== MAIN CONTENT ===== */
main {
  padding: var(--space-2xl) 0;
  min-height: 60vh;
}

.page-intro {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
}

.page-intro h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--primary-color);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.page-intro p {
  font-size: var(--text-lg);
  color: var(--medium-gray);
  line-height: 1.7;
}

/* ===== DATE GENERATOR ===== */
.Generator,
#date-generator {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  margin: var(--space-xl) auto;
  max-width: var(--content-max-width);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.Generator:hover,
#date-generator:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.generator-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.generator-header h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.generator-subtitle {
  font-size: var(--text-lg);
  color: var(--medium-gray);
  font-style: italic;
}

/* ===== CATEGORY SECTIONS ===== */
.category-section {
  margin-bottom: var(--space-2xl);
}

.category-section h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
  text-align: center;
  font-weight: 600;
}

/* ===== PRICE BUTTONS ===== */
.price-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.price-btn {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}

.price-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-gradient);
  transition: left var(--transition-base);
  z-index: 0;
}

.price-symbol {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  z-index: 1;
  transition: color var(--transition-base);
}

.price-label {
  font-size: var(--text-sm);
  color: var(--medium-gray);
  font-weight: 500;
  position: relative;
  z-index: 1;
  transition: color var(--transition-base);
}

.price-btn:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.price-btn:hover::before {
  left: 0;
}

.price-btn:hover .price-symbol,
.price-btn:hover .price-label {
  color: var(--white);
}

.price-btn.active {
  background: var(--accent-gradient);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-md);
}

.price-btn.active .price-symbol,
.price-btn.active .price-label {
  color: var(--white);
}

.price-btn.loading {
  opacity: 0.7;
  transform: scale(0.98);
  pointer-events: none;
}

/* ===== RESULTS ===== */
.result-container {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-placeholder {
  color: var(--medium-gray);
  font-style: italic;
  text-align: center;
  padding: var(--space-lg);
}

.result-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(231, 76, 60, 0.1);
  transition: all var(--transition-base);
}

.result-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  border-color: rgba(231, 76, 60, 0.3);
}

.result-name {
  margin-bottom: var(--space-sm);
}

.result-name a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-lg);
  transition: color var(--transition-base);
}

.result-name a:hover {
  color: var(--accent-color);
}

.result-description {
  color: var(--medium-gray);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.result-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-sm);
  transition: all var(--transition-base);
}

.result-link:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

/* ===== ACTION BUTTONS ===== */
.action-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin: var(--space-2xl) 0;
  flex-wrap: wrap;
}

.action-btn {
  padding: var(--space-md) var(--space-xl);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  min-width: 140px;
}

.action-btn.primary {
  background: var(--accent-gradient);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.action-btn.primary:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.action-btn.secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--light-gray);
}

.action-btn.secondary:hover {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== COMPLETE DATE ===== */
.complete-date {
  background: linear-gradient(135deg, #e8f5e8 0%, #f0fff0 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  margin: var(--space-2xl) 0;
  border: 2px solid var(--success-color);
  text-align: center;
  animation: slideInUp 0.6s ease-out;
}

.complete-date h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--success-color);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.date-combo {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.combo-item {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.combo-label {
  font-weight: 600;
  color: var(--primary-color);
  font-size: var(--text-lg);
}

.combo-item a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-lg);
}

.combo-item a:hover {
  text-decoration: underline;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-in {
  animation: slideInUp 0.4s ease-out;
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary-color);
  color: var(--white);
  padding: var(--space-2xl) 0;
  text-align: center;
  margin-top: var(--space-3xl);
}

footer p {
  margin-bottom: var(--space-md);
}

footer a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition-base);
}

footer a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  .Generator,
  #date-generator {
    padding: var(--space-lg);
    margin: var(--space-lg) auto;
  }
  
  .price-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .combo-item {
    flex-direction: column;
    text-align: center;
  }
  
  .nav-container {
    gap: var(--space-md);
  }
  
  .location-cards {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .location-card {
    padding: var(--space-lg);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .feature-item {
    padding: var(--space-lg);
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .info-card {
    padding: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .price-buttons {
    grid-template-columns: 1fr;
  }
  
  .banner-title {
    font-size: var(--text-2xl);
  }
  
  .location-card,
  .feature-item {
    padding: var(--space-md);
  }
  
  .features-section {
    margin: var(--space-xl) 0;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== FOCUS STYLES ===== */
:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* ===== LOCATION CARDS ===== */
.location-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-3xl) 0;
}

.location-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
}

.location-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.location-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--primary-color);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.location-card p {
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.highlight-list {
  list-style: none;
  margin: var(--space-lg) 0;
  padding: 0;
}

.highlight-list li {
  color: var(--dark-gray);
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm);
}

/* ===== FEATURES SECTION ===== */
.features-section {
  margin: var(--space-3xl) 0;
  text-align: center;
}

.features-section h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--primary-color);
  margin-bottom: var(--space-2xl);
  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.feature-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.feature-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--primary-color);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.feature-item p {
  color: var(--medium-gray);
  line-height: 1.6;
  font-size: var(--text-sm);
}

/* ===== FOOTER ENHANCEMENTS ===== */
.social-links {
  margin: var(--space-lg) 0;
}

.copyright {
  margin-top: var(--space-lg);
  font-size: var(--text-sm);
  opacity: 0.8;
}

/* ===== ADDITIONAL INFO SECTIONS ===== */
.additional-info {
  margin: var(--space-3xl) 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.info-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--primary-color);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  color: var(--medium-gray);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
  line-height: 1.6;
}

.info-card li::before {
  content: '•';
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.view-all-section {
  text-align: center;
  padding: var(--space-2xl);
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.05) 0%, rgba(231, 76, 60, 0.1) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(231, 76, 60, 0.2);
}

.view-all-section p {
  color: var(--medium-gray);
  margin-bottom: var(--space-lg);
  font-size: var(--text-lg);
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.hidden { display: none; }
.visible { display: block; }