/* Pockets Radio Project Page Styles */

.pockets-radio-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: var(--text-color);
}

/* Hero Section */
.pockets-hero {
  background: linear-gradient(135deg,
    rgba(0, 20, 40, 0.95) 0%,
    rgba(40, 20, 0, 0.85) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ff4500" opacity="0.1"/></svg>');
  border: 2px solid rgba(255, 69, 0, 0.3);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.pockets-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff4500, #ffa500, #ff4500);
  animation: signalPulse 3s ease-in-out infinite;
}

@keyframes signalPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.station-branding {
  flex: 1;
}

.station-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  color: #fff;
}

.station-call {
  color: #ff4500;
  font-family: 'Courier New', monospace;
  border: 2px solid #ff4500;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(255, 69, 0, 0.1);
}

.station-name {
  color: #ffa500;
  font-style: italic;
}

.station-tagline {
  font-family: 'Courier New', monospace;
  color: #ffa500;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.station-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.6;
  font-style: italic;
}

.status-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 69, 0, 0.1);
  border: 1px solid rgba(255, 69, 0, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.status-indicator {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  animation: radioGlow 2s ease-in-out infinite;
}

@keyframes radioGlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.status-text {
  font-size: 0.9rem;
  color: #ffa500;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff4500, #ffa500);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-color-light);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Concept Section */
.concept-section {
  margin-bottom: 4rem;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.concept-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 69, 0, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.concept-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff4500, #ffa500);
  opacity: 0.7;
}

.concept-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.2);
  border-color: rgba(255, 69, 0, 0.4);
}

.concept-card h3 {
  color: #ff4500;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.concept-card p {
  color: var(--text-color-light);
  line-height: 1.6;
  font-style: italic;
}

/* Music Genres */
.music-section {
  margin-bottom: 4rem;
}

.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.genre-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.3s ease;
  border-left: 4px solid #ff4500;
}

.genre-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left-color: #ffa500;
}

.genre-title {
  color: #ff4500;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.genre-description {
  color: var(--text-color-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Format Pillars */
.format-section {
  margin-bottom: 4rem;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.pillar-card {
  background: var(--card-bg);
  border: 2px solid rgba(255, 69, 0, 0.2);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff4500, #ffa500, #ff4500);
  border-radius: 16px 16px 0 0;
}

.pillar-card h3 {
  color: #ff4500;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.pillar-card > p {
  color: var(--text-color-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-style: italic;
}

.segment-list {
  list-style: none;
  padding: 0;
}

.segment-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 69, 0, 0.1);
  color: var(--text-color);
  position: relative;
  padding-left: 1.5rem;
}

.segment-list li::before {
  content: '📻';
  position: absolute;
  left: 0;
  top: 0.5rem;
  font-size: 0.8rem;
}

.segment-list li:last-child {
  border-bottom: none;
}

/* Truck Section */
.truck-section {
  margin-bottom: 4rem;
  background: linear-gradient(135deg,
    rgba(40, 20, 0, 0.1) 0%,
    rgba(0, 20, 40, 0.1) 100%);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 69, 0, 0.2);
}

.truck-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.spec-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.spec-card h4 {
  color: #ff4500;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spec-card ul {
  list-style: none;
  padding: 0;
}

.spec-card li {
  padding: 0.4rem 0;
  color: var(--text-color-light);
  position: relative;
  padding-left: 1.2rem;
}

.spec-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ff4500;
  font-weight: bold;
}

.truck-quote {
  text-align: center;
  margin-top: 2rem;
}

.truck-quote blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: #ff4500;
  border-left: 4px solid #ffa500;
  padding-left: 1rem;
  margin: 0;
  display: inline-block;
  text-align: left;
}

/* Contact Section */
.contact-section {
  margin-bottom: 4rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.access-info {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.access-info h3 {
  color: #ff4500;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.wanted-list {
  list-style: none;
  padding: 0;
}

.wanted-list li {
  padding: 0.5rem 0;
  color: var(--text-color-light);
  position: relative;
  padding-left: 1.5rem;
}

.wanted-list li::before {
  content: '🎵';
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.contact-toggle-btn {
  background: linear-gradient(135deg, #ff4500, #ffa500);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
}

/* Contact Form */
.contact-form {
  background: var(--card-bg);
  border: 2px solid rgba(255, 69, 0, 0.3);
  border-radius: 16px;
  padding: 2rem;
  min-width: 400px;
}

.contact-form h3 {
  color: #ff4500;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-field input,
.form-field textarea {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-color);
  color: var(--text-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #ff4500;
  box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.1);
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.submit-btn {
  background: linear-gradient(135deg, #ff4500, #ffa500);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.cancel-btn {
  background: transparent;
  color: var(--text-color-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-btn:hover {
  background: var(--bg-color-dark);
  border-color: var(--text-color-light);
}

/* Station Samples */
.samples-section {
  margin-bottom: 4rem;
}

.samples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.sample-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid #ffa500;
  transition: all 0.3s ease;
}

.sample-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.15);
  border-left-color: #ff4500;
}

.sample-title {
  color: #ffa500;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-family: 'Courier New', monospace;
}

.sample-content {
  color: var(--text-color-light);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(255, 165, 0, 0.05);
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid #ffa500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pockets-radio-page {
    padding: 1rem 0.5rem;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .station-title {
    font-size: 2.2rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .concept-grid,
  .genre-grid,
  .pillar-grid,
  .truck-specs,
  .samples-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-form {
    min-width: auto;
  }

  .form-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .station-title {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .pockets-hero {
    padding: 2rem 1rem;
  }
}
