/* Base Styles for Character Driven Media with Montserrat */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f0f4f8;
  color: #2c2c2c;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

header {
  background-color: #1f2d3d;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin: 0;
}

header p {
  font-size: 1.2rem;
  font-style: italic;
  margin-top: 0.5rem;
  background: none;
  color: #f0c674; /* or any bright/contrasting color */
}

.hero {
  background: url('workshop_image.jpg') no-repeat center center;
  background-size: cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  padding: 1rem;
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  border-radius: 6px;
}

.main-content {
  padding: 2rem;
}

.cta {
  text-align: center;
  margin-top: 2rem;
}

.cta a {
  background-color: #1e2b3a;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.cta a:hover {
  background-color: #3c4e65;
}

h1, h2, h3 {
  color: #1a1a1a;
}

h2 {
  margin-top: 2rem;
}

blockquote {
  font-style: italic;
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 4px solid #ccc;
  color: #555;
}

@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .hero h2 {
    font-size: 1.5rem;
    padding: 0.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }
}
