/* Cosmic Cannabis Chronicles CSS */

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(180deg, #0f0220 0%, #140a2c 100%);
  color: #eee;
  line-height: 1.6;
}

header {
  position: relative;
  width: 100%;
  height: 60vh;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 2, 30, 0.6);
  mix-blend-mode: darken;
}

header .content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

header h1 {
  font-size: 3.5rem;
  margin: 0;
  margin-bottom: 10px;
  line-height: 1.2;
}

header p {
  font-size: 1.3rem;
  margin: 0;
}

nav {
  background: #190036;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

nav a {
  color: #e5d9f2;
  margin: 5px 15px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffb74d;
}

section {
  padding: 60px 10%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

section:last-of-type {
  border-bottom: none;
}

.section-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.section-inner img {
  width: 40%;
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.section-inner .text {
  width: 55%;
  padding: 20px;
}

.section-inner h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 10px;
  color: #ffb74d;
}

.section-inner h3 {
  font-size: 1.25rem;
  margin-top: 20px;
  margin-bottom: 5px;
  color: #c5a3ff;
}

.section-inner p {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

footer {
  text-align: center;
  padding: 30px;
  font-size: 0.8rem;
  color: #a78fbf;
}

@media (max-width: 900px) {
  .section-inner {
    flex-direction: column;
  }
  .section-inner img,
  .section-inner .text {
    width: 100%;
  }
  .section-inner img {
    margin-bottom: 20px;
  }
}
