/* ============================================
   XXXClub.fi — Static Site Styles
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: hsl(0 0% 5%);
  color: hsl(40 20% 90%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient-gold {
  background: linear-gradient(135deg, hsl(38 60% 45%), hsl(42 80% 65%), hsl(38 60% 45%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: hsl(38 70% 50%);
}

.text-muted {
  color: hsl(40 20% 90% / 0.4);
}

.text-muted-sm {
  color: hsl(40 20% 90% / 0.35);
  font-size: 0.875rem;
}

.divider {
  width: 64px;
  height: 1px;
  background: hsl(38 70% 50% / 0.4);
  margin: 0 auto 48px;
}

/* Buttons */
.btn-outline {
  display: inline-block;
  border: 1px solid hsl(38 70% 50% / 0.4);
  color: hsl(38 70% 50%);
  padding: 16px 40px;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  transition: all 0.5s ease;
}

.btn-outline:hover {
  background: hsl(38 70% 50% / 0.1);
}

.btn-primary {
  display: inline-block;
  background: hsl(38 70% 50%);
  color: hsl(0 0% 5%);
  padding: 16px 48px;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  transition: all 0.5s ease;
}

.btn-primary:hover {
  background: hsl(38 70% 50% / 0.9);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: hsl(0 0% 5% / 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 768px;
  margin: 0 auto;
}

.hero-label {
  color: hsl(38 70% 50% / 0.8);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  color: hsl(40 20% 90% / 0.6);
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-email {
  margin-top: 24px;
  color: hsl(40 20% 90% / 0.4);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.hero-email a {
  color: hsl(38 70% 50% / 0.7);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}

.hero-email a:hover {
  color: hsl(38 70% 50%);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, hsl(38 70% 50% / 0.5), transparent);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 128px 0;
}

.about-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}

.about-header h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 32px;
}

.about-header p {
  color: hsl(40 20% 90% / 0.5);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 32px;
}

.about-header .text-muted {
  font-size: 1rem;
  margin-bottom: 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 96px;
}

.feature-card {
  text-align: center;
  padding: 32px;
  border: 1px solid hsl(40 15% 18% / 0.5);
  background: hsl(0 0% 8% / 0.5);
  transition: transform 0.5s ease, border-color 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: hsl(38 70% 50% / 0.3);
}

.feature-card h3 {
  color: hsl(38 70% 50%);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: hsl(40 20% 90% / 0.4);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================
   EVENTS
   ============================================ */
.events {
  padding: 128px 0;
  background: hsl(0 0% 12% / 0.3);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  color: hsl(38 70% 50% / 0.6);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

.events-list {
  max-width: 896px;
  margin: 0 auto;
}

.event-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 32px 0;
  border-bottom: 1px solid hsl(40 15% 18% / 0.3);
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.event-row:hover h3 {
  color: hsl(38 70% 50%);
}

.event-date {
  color: hsl(38 70% 50% / 0.5);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  min-width: 96px;
  flex-shrink: 0;
}

.event-row h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: hsl(40 20% 90%);
  transition: color 0.5s ease;
  flex: 1;
}

.event-desc {
  color: hsl(40 20% 90% / 0.4);
  font-size: 0.875rem;
  text-align: right;
  max-width: 320px;
  flex-shrink: 0;
}

/* ============================================
   RULES
   ============================================ */
.rules {
  padding: 128px 0;
  background: hsl(0 0% 12% / 0.3);
}

.rules .section-header p {
  color: hsl(40 20% 90% / 0.5);
  font-size: 1.125rem;
  max-width: 768px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 768px;
  margin: 0 auto 64px;
}

.highlight-card {
  border: 1px solid hsl(40 15% 18% / 0.5);
  background: hsl(0 0% 8% / 0.3);
  padding: 24px;
  text-align: center;
}

.highlight-label {
  color: hsl(40 20% 90% / 0.3);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.highlight-value {
  color: hsl(38 70% 50%);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.highlight-desc {
  color: hsl(40 20% 90% / 0.35);
  font-size: 0.75rem;
}

.rules-list {
  max-width: 768px;
  margin: 0 auto;
  list-style: none;
  counter-reset: rule;
}

.rules-list li {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid hsl(40 15% 18% / 0.2);
  color: hsl(40 20% 90% / 0.5);
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 300;
}

.rules-list li::before {
  counter-increment: rule;
  content: counter(rule) ".";
  color: hsl(38 70% 50% / 0.4);
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  min-width: 32px;
  text-align: right;
  flex-shrink: 0;
  padding-top: 2px;
}

.rules-footer {
  text-align: center;
  color: hsl(40 20% 90% / 0.25);
  font-size: 0.75rem;
  margin-top: 40px;
}

/* ============================================
   MEMBERSHIP
   ============================================ */
.membership {
  padding: 128px 0;
}

.membership .section-header p {
  color: hsl(40 20% 90% / 0.5);
  font-size: 1.125rem;
  max-width: 768px;
  margin: 0 auto;
}

.membership-block {
  border: 1px solid hsl(40 15% 18% / 0.5);
  background: hsl(0 0% 8% / 0.3);
  padding: 32px 40px;
  margin-bottom: 24px;
}

.block-title {
  color: hsl(40 20% 90% / 0.3);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  max-width: 512px;
  margin: 0 auto;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: hsl(40 20% 90% / 0.5);
  font-size: 0.875rem;
  line-height: 1.6;
  padding: 6px 0;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: hsl(38 70% 50% / 0.6);
  flex-shrink: 0;
  margin-top: 8px;
}

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

.pricing-card {
  border: 1px solid hsl(40 15% 18% / 0.5);
  background: hsl(0 0% 8% / 0.3);
  padding: 32px 40px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid hsl(40 15% 18% / 0.2);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row span:first-child {
  color: hsl(40 20% 90% / 0.5);
  font-size: 0.875rem;
  font-weight: 300;
}

.price-row span:nth-child(2) {
  color: hsl(38 70% 50%);
  font-size: 0.875rem;
  font-weight: 500;
}

.price-row .note {
  display: block;
  width: 100%;
  text-align: right;
  color: hsl(40 20% 90% / 0.3);
  font-size: 0.75rem;
  font-weight: 300;
  margin-top: 2px;
}

.card-note {
  color: hsl(40 20% 90% / 0.25);
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
  margin-top: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.875rem;
  font-weight: 300;
}

.hours-row span:first-child {
  color: hsl(40 20% 90% / 0.5);
}

.hours-row .open {
  color: hsl(38 70% 50%);
}

.hours-row .closed {
  color: hsl(40 20% 90% / 0.3);
}

.cta-section {
  text-align: center;
  margin-top: 64px;
}

.cta-section .text-muted {
  margin-bottom: 8px;
}

.cta-section .text-muted-sm {
  max-width: 512px;
  margin: 16px auto 0;
  line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  padding: 64px 0;
  border-top: 1px solid hsl(40 15% 18% / 0.2);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}

.footer-copy {
  color: hsl(40 20% 90% / 0.3);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: hsl(40 20% 90% / 0.3);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: hsl(38 70% 50%);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

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

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

  .two-col {
    grid-template-columns: 1fr;
  }

  .event-row {
    flex-direction: column;
    gap: 8px;
  }

  .event-desc {
    text-align: left;
    max-width: none;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .rules-list li {
    gap: 12px;
  }

  .rules-list li::before {
    min-width: 24px;
  }
}
