* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

header {
  background: #c0392b;
  color: white;
  padding: 15px 0;
  text-align: center;
}

header h1 {
  font-size: 7vw;
  margin-bottom: 5px;
}

header p {
  font-size: 4vw;
}

section {
  padding: 30px 0;
}

section h2 {
  text-align: center;
  font-size: 6vw;
  margin-bottom: 15px;
}

section p {
  font-size: 4vw;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  background: #c0392b;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 25px;
  font-size: 4vw;
  transition: background 0.3s;
  touch-action: manipulation;
}

.btn:hover {
  background: #a93226;
}

.bg-red {
  background: #fff1f0;
}

.show-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.show-poster {
  max-width: 60vw;
  height: auto;
}

.book-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.book-img {
  max-width: 40vw;
  height: auto;
}

.podcast-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.podcast-item {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.podcast-item h3 {
  font-size: 5vw;
  margin-bottom: 10px;
}

.podcast-item audio {
  width: 100%;
  margin-top: 10px;
}

.quotes-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-style: italic;
  font-size: 4vw;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 4vw;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 4vw;
}

.form-group textarea {
  resize: verticalHtml;
}

footer {
  background: #c0392b;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 30px;
}

footer p {
  font-size: 3.5vw;
}

/* Tablet and Desktop Adjustments */
@media (min-width: 768px) {
  .container {
    max-width: 1200px;
    padding: 0 20px;
  }

  header h1 {
    font-size: 2.5em;
  }

  header p {
    font-size: 1.2em;
  }

  section h2 {
    font-size: 2em;
  }

  section p {
    font-size: 1.1em;
  }

  .btn {
    font-size: 1em;
  }

  .show-content {
    flex-direction: row;
    align-items: center;
  }

  .show-poster {
    max-width: 250px;
  }

  .book-content {
    flex-direction: row;
    align-items: center;
  }

  .book-img {
    max-width: 150px;
  }

  .podcast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .podcast-item h3 {
    font-size: 1.3em;
  }

  .quotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .quote {
    font-size: 1em;
  }

  .form-group label {
    font-size: 1.1em;
  }

  .form-group input,
  .form-group textarea {
    font-size: 1em;
  }

  footer p {
    font-size: 1em;
  }
}


.hero-bg {
  background: linear-gradient(to bottom, #fff1f0, #fdedec), url('https://via.placeholder.com/1200x600?text=Emotional+Journey');
  background-size: cover;
  background-position: center;
  padding: 30px 0;
  text-align: center;
}

.hero-img {
  border-radius: 50%;
  margin-bottom: 15px;
  max-width: 40vw;
  height: auto;
}
