/* ==================== */
/* ELEVEN HOLE™ STYLES  */
/* ==================== */

/* === RESET & BASE === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #F2EEE8; /* Bone */
  background-color: #0B0B0B; /* Jet Black */
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.1) 2px, rgba(0,0,0,.1) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,.1) 2px, rgba(0,0,0,.1) 4px);
  min-height: 100vh;
}

/* === TYPOGRAPHY === */
h1, h2, h3, .nav-brand {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  letter-spacing: 0.02em;
}

/* === NAVIGATION === */
nav {
  background: rgba(11, 11, 11, 0.95); /* Jet Black with transparency */
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #2A2A2A; /* Charcoal */
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 60px;
  width: auto;
  transition: transform 0.2s;
}

.nav-logo:hover {
  transform: scale(1.05);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: #8A8A8A; /* Ash Gray */
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

nav a:hover {
  color: #F2EEE8; /* Bone */
}

/* === MAIN LAYOUT === */
main {
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 4rem 2rem;
  min-height: 60vh;
}

/* === HERO SECTION === */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 90vh;
  background: 
    radial-gradient(circle at 50% 50%, rgba(177, 18, 23, 0.1), transparent 70%),
    #0B0B0B;
  position: relative;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
}

.hero-logo {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 10px 40px rgba(177, 18, 23, 0.4));
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  color: #F2EEE8; /* Bone */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.tm {
  font-size: 0.4em;
  vertical-align: super;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: #8A8A8A; /* Ash Gray */
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.separator {
  color: #B11217; /* Deep Red */
  margin: 0 0.5rem;
}

.avoid-eleven {
  color: #B11217; /* Deep Red */
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #F2EEE8; /* Bone */
  margin-bottom: 3rem;
  line-height: 1.4;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-visual {
  margin-top: 4rem;
}

.dice-display {
  display: flex;
  gap: 2rem;
  font-size: 5rem;
  filter: drop-shadow(0 10px 30px rgba(177, 18, 23, 0.3));
}

.die {
  background: #2A2A2A; /* Charcoal */
  padding: 1rem;
  border-radius: 10px;
  border: 3px solid #8A8A8A;
  animation: float 3s ease-in-out infinite;
}

.die:nth-child(2) {
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: #B11217; /* Deep Red */
  color: #F2EEE8; /* Bone */
  border: 2px solid #B11217;
}

.btn-primary:hover {
  background: #8A0E12;
  border-color: #8A0E12;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(177, 18, 23, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #F2EEE8; /* Bone */
  border: 2px solid #8A8A8A; /* Ash Gray */
}

.btn-secondary:hover {
  background: #2A2A2A; /* Charcoal */
  border-color: #F2EEE8;
  transform: translateY(-2px);
}

button.snipcart-add-item {
  background: #B11217;
  color: #F2EEE8;
  border: 2px solid #B11217;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s;
}

button.snipcart-add-item:hover {
  background: #8A0E12;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(177, 18, 23, 0.4);
}

/* === HOW IT WORKS SECTION === */
.how-it-works {
  background: #2A2A2A; /* Charcoal */
  border-top: 1px solid #8A8A8A;
  border-bottom: 1px solid #8A8A8A;
}

.how-it-works-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(11, 11, 11, 0.4);
  border-radius: 4px;
  border: 2px solid rgba(138, 138, 138, 0.3);
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.step:hover {
  transform: translateY(-5px);
  border-color: #8A8A8A;
}

.step.danger {
  border-color: #B11217; /* Deep Red */
  background: rgba(177, 18, 23, 0.15);
}

.step.danger:hover {
  border-color: #B11217;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #8A8A8A;
  color: #0B0B0B;
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Roboto Slab', serif;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 3px solid #0B0B0B;
}

.step.danger .step-number {
  background: #B11217;
  color: #F2EEE8;
  border-color: #8A0E12;
  font-size: 1.5rem;
}

.step h3 {
  font-size: 1.5rem;
  color: #F2EEE8; /* Bone */
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step.danger h3 {
  color: #B11217;
}

.step p {
  color: #8A8A8A; /* Ash Gray */
  line-height: 1.6;
  font-size: 1rem;
}

.step.danger p {
  color: #F2EEE8;
}

.how-it-works-cta {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(138, 138, 138, 0.3);
  max-width: 600px;
  margin: 0 auto;
}

.tagline-alt {
  font-size: 1.3rem;
  color: #F2EEE8;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* === SECTION TITLES === */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #F2EEE8; /* Bone */
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === ABOUT SECTION === */
.about {
  background: 
    linear-gradient(135deg, rgba(177, 18, 23, 0.05) 0%, transparent 50%),
    #0B0B0B; /* Jet Black with subtle red gradient */
  border-top: 1px solid rgba(177, 18, 23, 0.3);
  border-bottom: 1px solid rgba(177, 18, 23, 0.3);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #B11217, transparent);
  opacity: 0.5;
}

.section-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
}

#about-content {
  color: #8A8A8A; /* Ash Gray */
  line-height: 1.8;
  font-size: 1.1rem;
  text-align: center;
}

#about-content h2 {
  color: #F2EEE8; /* Bone */
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 0 30px rgba(177, 18, 23, 0.3);
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

#about-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #B11217;
  box-shadow: 0 0 10px #B11217;
}

#about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  line-height: 2;
}

#about-content p:last-of-type {
  font-weight: 600;
  color: #F2EEE8;
  font-style: italic;
  margin-top: 2rem;
}

/* === RULES SECTION === */
.rules {
  background: #2A2A2A; /* Charcoal */
  border-top: 1px solid #8A8A8A;
}

.rules-content {
  max-width: 800px;
  margin: 0 auto 3rem;
  background: rgba(11, 11, 11, 0.5);
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid rgba(138, 138, 138, 0.2);
}

.rules-content h3 {
  font-size: 1.5rem;
  color: #F2EEE8; /* Bone */
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.rules-content ol,
.rules-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.rules-content li {
  margin-bottom: 0.75rem;
  color: #8A8A8A; /* Ash Gray */
  line-height: 1.6;
}

.rules-content strong {
  color: #F2EEE8; /* Bone */
  font-weight: 700;
}

.rules-warning {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  background: rgba(177, 18, 23, 0.15);
  border: 2px solid #B11217; /* Deep Red */
  border-radius: 4px;
}

.warning-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F2EEE8; /* Bone */
  margin-bottom: 0.5rem;
}

.eleven {
  color: #B11217; /* Deep Red */
  font-size: 1.8rem;
  font-weight: 900;
  font-family: 'Roboto Slab', serif;
}

.warning-subtitle {
  color: #8A8A8A; /* Ash Gray */
  font-size: 1rem;
}

/* === BUY SECTION === */
.buy {
  background: #0B0B0B; /* Jet Black */
  text-align: center;
}

.buy-content {
  max-width: 1100px;
  margin: 0 auto;
}

.buy-intro {
  color: #8A8A8A; /* Ash Gray */
  margin-bottom: 3rem;
  font-size: 1.2rem;
}

.buy-footer {
  margin-top: 3rem;
  color: #8A8A8A; /* Ash Gray */
  font-size: 0.9rem;
  font-style: italic;
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

.product-card {
  background: #2A2A2A; /* Charcoal */
  border: 2px solid #8A8A8A;
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: #F2EEE8;
}

.product-card.featured {
  border-color: #B11217; /* Deep Red */
  background: rgba(177, 18, 23, 0.05);
  transform: scale(1.02);
}

.product-card.featured:hover {
  border-color: #B11217;
  transform: scale(1.02) translateY(-5px);
}

.product-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #B11217; /* Deep Red */
  color: #F2EEE8; /* Bone */
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
}

.product-card h3 {
  font-size: 1.8rem;
  color: #F2EEE8; /* Bone */
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.product-tagline {
  color: #8A8A8A; /* Ash Gray */
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.product-price {
  font-size: 2.5rem;
  color: #F2EEE8; /* Bone */
  font-weight: 900;
  font-family: 'Roboto Slab', serif;
  margin-bottom: 2rem;
}

.product-includes {
  text-align: left;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(11, 11, 11, 0.5);
  border-radius: 4px;
}

.product-includes h4 {
  font-size: 0.9rem;
  color: #F2EEE8; /* Bone */
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-includes ul {
  list-style: none;
  padding: 0;
}

.product-includes li {
  color: #8A8A8A; /* Ash Gray */
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
}

.product-includes li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #B11217; /* Deep Red */
  font-weight: bold;
}

.product-description {
  color: #8A8A8A; /* Ash Gray */
  font-size: 1rem;
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.6;
}

.product-card button {
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
  font-weight: 900;
}

.product-card .btn-primary {
  background: #B11217;
  color: #F2EEE8;
  border: 2px solid #B11217;
}

.product-card .btn-primary:hover {
  background: #8A0E12;
  border-color: #8A0E12;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(177, 18, 23, 0.5);
}

.product-card .btn-secondary {
  background: transparent;
  border: 2px solid #8A8A8A;
}

.product-card .btn-secondary:hover {
  background: #2A2A2A;
  border-color: #F2EEE8;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(138, 138, 138, 0.3);
}

/* === FOOTER === */
footer {
  background: #2A2A2A; /* Charcoal */
  padding: 2rem;
  border-top: 2px solid #8A8A8A;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #8A8A8A; /* Ash Gray */
}

.footer-content p {
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  font-size: 0.9rem;
  font-style: italic;
  color: #B11217; /* Deep Red */
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    gap: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .dice-display {
    font-size: 3rem;
  }
  
  section {
    padding: 3rem 1rem;
  }
}
