/* MusicRemote Website Styles - Apple-like, Modern, Parallax, Typewriter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
:root {
  --primary: #FF3B30;
  --primary-grad: linear-gradient(90deg, #FF3B30 0%, #FF6961 100%);
  --bg-light: #F2F2F7;
  --bg-dark: #1C1C1E;
  --accent: #FF6961;
  --gray: #E5E5EA;
  --metallic: #8E8E93;
  --font-header: 'Inter', 'SF Pro Display', Arial, sans-serif;
  --font-body: 'Inter', 'SF Pro Text', Arial, sans-serif;
}
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-light);
  color: var(--bg-dark);
  font-family: var(--font-body);
  font-size: 18px;
  scroll-behavior: smooth;
}
header.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3vw 1.5rem 3vw;
  background: var(--bg-light);
  box-shadow: 0 2px 12px #0001;
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo {
  width: 56px;
  height: 56px;
  margin-right: 1rem;
}
nav a {
  color: var(--bg-dark);
  text-decoration: none;
  font-weight: 600;
  margin: 0 1rem;
  font-size: 1.1em;
  transition: color 0.2s;
}
#typewriter-words {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.3em; /* tighter, fits icon + 'iPhone' */
  min-height: 1.3em;
  text-align: center;
  color: #FF3B30;
  font-weight: 700;
  font-family: inherit;
  background: rgba(255,59,48,0.08);
  border: 2px solid #FF3B30;
  border-radius: 1.2em;
  padding: 0.13em 0.7em;
  margin: 0 0.15em;
  box-shadow: 0 2px 12px #FF3B3020, 0 1px 0 #fff1 inset;
  font-size: inherit;
  line-height: 1.2;
  overflow: hidden;
  transition: color 0.3s, background 0.2s, transform 0.35s cubic-bezier(.4,1.6,.4,1), opacity 0.25s;
  vertical-align: middle;
  white-space: nowrap;
}
#typewriter-words i {
  font-size: 1em;
  margin-right: 0.4em;
  vertical-align: middle;
}
#typewriter-words i {
  font-size: 1em;
  margin-right: 0.4em;
  vertical-align: middle;
}
nav a:hover {
  color: var(--primary);
}
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 60% 40%, #FF3B30 0%, #F2F2F7 100%);
  position: relative;
  overflow: hidden;
}
.hero-content {
  text-align: center;
  z-index: 2;
  color: var(--bg-dark);
}
.hero h1 {
  font-family: var(--font-header);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  line-height: 1.1;
}
.typewriter {
  display: inline-block;
  border-right: 2px solid var(--primary);
  white-space: nowrap;
  overflow: hidden;
  animation: typing 2.5s steps(22), blink .75s step-end infinite alternate;
  font-family: var(--font-header);
}
@keyframes typing {
  from { width: 0 }
  to { width: 16ch }
}
@keyframes blink {
  50% { border-color: transparent }
}
.subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--metallic);
  font-weight: 400;
}
.cta-btn {
  background: var(--primary-grad);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  box-shadow: 0 4px 24px #FF3B3040;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-top: 1rem;
  text-decoration: none;
  display: inline-block;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #FF6961 0%, #FF3B30 100%);
  transform: translateY(-2px) scale(1.04);
}
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem 1rem;
}
section.info {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px #00000010;
  margin: 2.5rem 0;
  padding: 2.5rem 2rem;
  font-size: 1.15em;
  line-height: 1.7;
  position: relative;
}
section.info.alt-bg {
  background: var(--bg-light);
}
section.info h2 {
  font-family: var(--font-header);
  font-size: 2.1rem;
  margin-bottom: 1.2rem;
  color: var(--primary);
}
.info ul, .info ol {
  margin-left: 1.5rem;
}
.note {
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 12px;
  font-size: 1em;
  margin-top: 1.5rem;
  display: inline-block;
}
footer {
  background: var(--bg-light);
  color: var(--metallic);
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  font-size: 1.1em;
  border-top: 1px solid var(--gray);
}
footer nav a {
  color: var(--metallic);
  margin: 0 0.7rem;
  font-size: 1em;
}
footer nav a:hover {
  color: var(--primary);
}
.contact
.qa-card {
  background: #232327;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px #0002;
  color: #fff;
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
  min-height: 180px;
}
.qa-card:hover {
  box-shadow: 0 8px 32px #FF3B3040, 0 1.5px 0 #fff1 inset;
}
.qa-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FF3B30;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.qa-answer ul {
  margin: 0;
  padding-left: 1.2em;
  color: #fff;
}
.qa-answer li {
  margin-bottom: 0.3em;
  font-size: 1.05rem;
}
@media (max-width: 767.98px) {
  .qa-card {
    padding: 1.3rem 1rem;
    min-height: 0;
  }
  .qa-question {
    font-size: 1.05rem;
  }
}
.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 2rem auto;
}
.contact-form label {
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.contact-form input, .contact-form textarea {
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 0.7rem;
  margin-bottom: 1.2rem;
  font-size: 1em;
  font-family: var(--font-body);
}
.contact-form button {
  align-self: flex-end;
}
@media (max-width: 700px) {
  .hero h1 { font-size: 2.2rem; }
  main { padding: 1rem 0.5rem; }
  section.info { padding: 1.3rem 0.7rem; }
}
/* Parallax effect for .hero */
.hero.parallax::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: radial-gradient(circle at 60% 40%, #FF3B30 0%, #F2F2F7 100%);
  z-index: 1;
  transform: translateY(0);
  will-change: transform;
  pointer-events: none;
  opacity: 0.9;
}
.hero.parallax {
  perspective: 1px;
  overflow-x: hidden;
}
