/* Reset default spacing */
body, html {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #1f2937;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('/public/images/janek-valdsalu-beach_campfire_slmers.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 6rem 0;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: white;
}

.subtitle {
  font-size: 1.4rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
}

.manifesto {
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 700px;
  margin: 2rem auto;
  backdrop-filter: blur(5px);
}

.manifesto p {
  margin: 0.5rem 0;
}

/* CTA Buttons */
.cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #3b82f6;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid #3b82f6;
}

.btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Info Grid */
.info-grid-section {
  padding: 4rem 0;
  background: #f9fafb;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info-card {
  border: 3px solid #4b5563;
  padding: 1.5rem;
  background: white;
  border-radius: 6px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  margin-bottom: 0.75rem;
  color: #111827;
  font-size: 1.25rem;
}

.info-card.empty {
  background: transparent;
  border: 3px dashed #d1d5db;
  visibility: hidden; /* or remove this line if you want placeholder visible */
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

/* SMR Chart */
.smr-chart-section {
  padding: 4rem 0;
  text-align: center;
}

.smr-chart-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.smr-chart {
  max-width: 100%;
  height: auto;
  margin-top: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Principles */
.principles-section {
  padding: 4rem 0;
  background: white;
  text-align: center;
}

.principles-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.principles-list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0;
  margin-top: 2rem;
}

.principles-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 250px;
  text-align: center;
  padding: 1rem;
}

.campfire-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
}
