@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* MOBILE-FIRST: Force mobile layout for all screen sizes */
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #10101a;
  color: #e0e0f0;
}

.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5vw;
  background: #181828;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  position: relative;
}
.hamburger {
  background: none;
  border: none;
  color: #a259ff;
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.3em 0.7em;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 10;
}
.hamburger:active, .hamburger:focus {
  background: #23233a;
  outline: none;
}
.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #a259ff;
  letter-spacing: 2px;
  margin-bottom: 0;
}
.nav-links {
  display: none;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 1.5rem;
  background: #181828;
  padding: 1.2rem 0 1rem 0;
  border-radius: 12px;
  box-shadow: 0 2px 12px #00000022;
  transition: max-height 0.3s;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 5;
}
.nav-links.open {
  display: flex;
}
.nav-links a {
  color: #e0e0f0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 1.1rem;
}
.nav-links a:hover {
  color: #a259ff;
}

.hero {
  background: linear-gradient(120deg, #181828 60%, #2d1e4f 100%);
  padding: 2.2rem 5vw 2.2rem 5vw;
  text-align: left;
}
.hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
}
.hero-content {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-content h1 {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
  color: #fff;
  text-shadow: 0 2px 16px #a259ff44;
}
.hero-content p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: #c0bfff;
}
.hero-image {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 6px 32px #00000055;
  margin: 0.5rem 0 1.2rem 0;
  align-self: center;
}
.signup-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.2rem;
  width: 100%;
  max-width: 100%;
}
.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form button {
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  border: none;
  outline: none;
  font-size: 1rem;
  background: #23233a;
  color: #fff;
  box-shadow: 0 2px 8px #00000022;
  margin-bottom: 0.5rem;
  width: 100%;
  max-width: 350px;
  box-sizing: border-box;
}
/* Prevent autofill from making input background white */
.signup-form input:-webkit-autofill,
.signup-form input:-webkit-autofill:focus,
.signup-form input:-webkit-autofill:hover,
.signup-form input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #23233a inset !important;
  box-shadow: 0 0 0 1000px #23233a inset !important;
  -webkit-text-fill-color: #fff !important;
  color: #fff !important;
  caret-color: #fff !important;
  transition: background-color 5000s ease-in-out 0s;
}
.signup-form input[type="text"]::placeholder,
.signup-form input[type="email"]::placeholder {
  color: #b3aaff;
  opacity: 1;
}
.signup-form button {
  background: #a259ff;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px #a259ff33;
  transition: background 0.2s, box-shadow 0.2s;
  margin-bottom: 0.2rem;
}
.signup-form button:hover {
  background: #7c3aed;
  box-shadow: 0 6px 24px #a259ff55;
}

.episodes-section, .about-section, .contact-section {
  padding: 2rem 5vw 1.5rem 5vw;
  background: #181828;
  text-align: left;
}
.episodes-section h2, .about-section h2, .contact-section h2 {
  color: #a259ff;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
.episodes-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}
.episode-card {
  background: #23233a;
  border-radius: 16px;
  box-shadow: 0 2px 16px #00000033;
  overflow: hidden;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  transition: transform 0.2s, box-shadow 0.2s;
}
.episode-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 8px 32px #a259ff33;
}
.episode-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: #181828;
}
.episode-info {
  padding: 1rem;
}
.episode-info h3 {
  margin: 0 0 0.5rem 0;
  color: #fff;
  font-size: 1rem;
}
.episode-info p {
  margin: 0;
  color: #c0bfff;
  font-size: 0.95rem;
}

footer {
  background: #181828;
  padding: 1.5rem 0 1rem 0;
  text-align: center;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.footer-logo {
  font-size: 1rem;
  font-weight: 700;
  color: #a259ff;
}
.footer-links {
  display: flex;
  gap: 1rem;
}
.footer-links a {
  color: #e0e0f0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #a259ff;
}
.footer-copy {
  color: #c0bfff;
  font-size: 0.9rem;
  margin-top: 0.5rem;
} 