/* Harley Wolfe - Dark Urban Theme */

:root {
  --harley-midnight: #0a0e27;
  --harley-purple: #7209b7;
  --harley-neon: #00f5ff;
  --harley-crimson: #c1121f;
  --harley-dark: #03071e;
  --harley-gray: #6c757d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--harley-dark);
  color: #f0f0f0;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Rain Effect */
.rain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(transparent 0%, rgba(0, 245, 255, 0.03) 50%, transparent 100%);
  background-size: 2px 50px;
  animation: rain-fall 1s linear infinite;
}

@keyframes rain-fall {
  0% {
    background-position: 0px 0px, 10px 0px, 20px 0px, 30px 0px;
  }
  100% {
    background-position: 0px 50px, 10px 50px, 20px 50px, 30px 50px;
  }
}

/* Neon Glow */
.neon-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(114, 9, 183, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 245, 255, 0.1) 0%, transparent 50%);
  animation: pulse-glow 5s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 245, 255, 0.3);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(114, 9, 183, 0.3);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #f0f0f0;
  font-weight: 700;
  font-size: 1.2rem;
}

.brand img {
  height: 40px;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--harley-neon), var(--harley-purple));
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--harley-neon);
}

.nav a:hover {
  color: var(--harley-neon);
  text-shadow: 0 0 10px var(--harley-neon);
}

.nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 20px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.85), rgba(114, 9, 183, 0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-logo {
  width: 200px;
  height: auto;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 30px rgba(114, 9, 183, 0.8));
  animation: neon-pulse 3s infinite ease-in-out;
}

@keyframes neon-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(114, 9, 183, 0.8)) drop-shadow(0 0 40px rgba(0, 245, 255, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(114, 9, 183, 1)) drop-shadow(0 0 60px rgba(0, 245, 255, 0.8));
  }
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--harley-neon), var(--harley-purple), var(--harley-crimson));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(0, 245, 255, 0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--harley-neon);
  font-weight: 400;
  font-style: italic;
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.6);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: rgba(240, 240, 240, 0.9);
}

.content-warning {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(193, 18, 31, 0.3);
  border: 1px solid var(--harley-crimson);
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 30px;
  color: var(--harley-crimson);
  font-weight: 600;
  box-shadow: 0 0 20px rgba(193, 18, 31, 0.4);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--harley-purple), var(--harley-neon));
  color: white;
  box-shadow: 0 5px 20px rgba(114, 9, 183, 0.5);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 245, 255, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--harley-neon);
  border: 2px solid var(--harley-neon);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.btn-secondary:hover {
  background: var(--harley-neon);
  color: var(--harley-dark);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.8);
}

/* Sections */
.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--harley-neon), var(--harley-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--harley-gray);
  font-size: 1.1rem;
  margin-bottom: 50px;
}

/* About Section */
.about-content {
  max-width: 900px;
  margin: 50px auto;
}

.about-text {
  background: rgba(10, 14, 39, 0.7);
  border: 2px solid rgba(0, 245, 255, 0.3);
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(114, 9, 183, 0.3);
}

.lead {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--harley-neon);
  margin-bottom: 30px;
  font-style: italic;
}

.about-text h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: var(--harley-purple);
  margin: 40px 0 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: rgba(240, 240, 240, 0.9);
}

.specialties-list,
.fun-facts ul {
  list-style: none;
  margin: 20px 0;
}

.specialties-list li,
.fun-facts li {
  margin-bottom: 15px;
  padding-left: 10px;
  line-height: 1.8;
}

.fun-facts {
  background: rgba(114, 9, 183, 0.1);
  padding: 30px;
  border-radius: 10px;
  margin: 40px 0;
  border: 1px solid rgba(114, 9, 183, 0.3);
}

.content-warnings-section {
  background: rgba(193, 18, 31, 0.1);
  border: 2px solid var(--harley-crimson);
  border-radius: 10px;
  padding: 30px;
  margin: 40px 0;
}

.content-warnings-section h3 {
  color: var(--harley-crimson) !important;
}

.contact-info {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 245, 255, 0.3);
}

.contact-info a {
  color: var(--harley-neon);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--harley-purple);
  text-shadow: 0 0 10px var(--harley-neon);
}

.disclaimer {
  margin-top: 30px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-left: 4px solid var(--harley-crimson);
  font-size: 0.95rem;
  color: var(--harley-gray);
}

/* Books Section */
.upcoming-books {
  max-width: 700px;
  margin: 50px auto;
}

.upcoming-card {
  background: rgba(10, 14, 39, 0.8);
  border: 2px solid rgba(0, 245, 255, 0.3);
  border-radius: 10px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(114, 9, 183, 0.3);
}

.upcoming-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  color: var(--harley-purple);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.upcoming-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.newsletter-cta {
  margin-top: 20px;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, rgba(114, 9, 183, 0.2), rgba(10, 14, 39, 0.9));
}

.newsletter-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: rgba(10, 14, 39, 0.9);
  padding: 50px;
  border-radius: 10px;
  border: 2px solid rgba(0, 245, 255, 0.3);
  box-shadow: 0 10px 40px rgba(114, 9, 183, 0.5);
}

.newsletter-box h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--harley-neon), var(--harley-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 15px 20px;
  border-radius: 5px;
  border: 2px solid var(--harley-neon);
  background: rgba(10, 14, 39, 0.8);
  color: #f0f0f0;
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--harley-purple);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.privacy-note,
.age-warning {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--harley-gray);
}

.age-warning {
  color: var(--harley-crimson);
  font-weight: 600;
}

/* Footer */
.footer {
  background: rgba(3, 7, 30, 0.95);
  padding: 50px 0 20px;
  border-top: 2px solid rgba(0, 245, 255, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  height: 80px;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-links a {
  color: rgba(240, 240, 240, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--harley-neon);
  text-shadow: 0 0 10px var(--harley-neon);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 245, 255, 0.1);
  color: var(--harley-gray);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .about-text {
    padding: 30px;
  }
  
  .nav {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-logo {
    width: 140px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    min-width: 100%;
  }
}