/* Reset some default styles */
body, h1, h2, p, ul {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

/* Top navigation */
nav {
  background-color: #E54D2B;
}

nav ul {
  list-style-type: none;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
}

nav li {
  display: inline-block;
}

nav a {
  text-decoration: none;
  color: #FFDFAA; /* Set the text color for better visibility */
}

.menu-icon {
  display: none;
}

/* Podcast title and logo */
header {
  text-align: center;
  padding: 5px 0;
  background-color: #E54D2B;
  color: #fff; /* Set the text color for better visibility */
}

h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

img {
  max-width: 600px;
  height: auto;
}

/* Description */

.description p{
  max-width: 50%;
}

/* Sections */
section {
  padding: 35px 20px;
  text-align: center;
}

section .content {
  max-width: 800px; /* Adjust the value to your desired maximum width */
  margin-left: auto;
  margin-right: auto;
}

section:nth-child(even) {
  background-color: #E54D2B;
  color: #fff; /* Set the text color for better visibility */
}

section:nth-child(odd) {
  background-color: #fff;
}

h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center; /* Add this line to center-align the heading */
}

/* Contact us */

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  max-width: 300px; /* Set a maximum width for smaller sections */
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button[type="submit"] {
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Error */

#errorContainer {
  color: rgb(255, 255, 255);
  font-size: 14px;
  margin-bottom: 25px;
}

.success-message {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #4CAF50;
  color: #fff;
  text-align: center;
  padding: 10px;
  display: none;
}

/* Spinner */

.spinner {
  border: 3px solid rgb(255, 255, 255);
  border-top: 3px solid #E54D2B;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  display: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Optional: Full-width message field on smaller screens */
@media (max-width: 768px) {
  .full-width {
    max-width: 100%;
  }
  header img {
    max-width: 100%; /* Adjust the image width as needed for mobile devices */
    height: auto; /* Preserve the image's aspect ratio */
  }
}

/* Social media links */
.social-media-icons {
  display: flex;
  justify-content: center;
}

.social-media-icons a {
  display: inline-block;
  margin: 0 10px;
}

.social-media-icons img {
  width: 60px;
  height: 60px;
}

/* Button style */
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  text-align: center; /* Add this line to center-align the button text */
}

/* Responsive design */
@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .menu-icon {
    display: block;
    text-align: right;
    padding: 10px;
    cursor: pointer;
  }

  .menu-icon i {
    display: block;
    width: 30px;
    height: 5px;
    background-color: #fff;/* Set the text color for better visibility */
    margin-bottom: 5px;
  }

  .menu-icon i:last-child {
    margin-bottom: 0;
  }

  .menu-toggle {
    display: none;
  }

  .show-menu {
    display: block;
  }

  nav ul.show-menu {
    display: flex;
    flex-direction: column;
    background-color: #E54D2B;
    padding: 10px;
  }

  nav li {
    margin-bottom: 10px;
  }

  nav a {
    color: #fff;
  }
}

footer {
  background-color: #1d1d1d;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
