/* ============================================
   Color Scheme: Jet Black (#0d0d0d), Neon Green (#39FF14), Slate Gray (#708090)
   ============================================ */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background-color: #0d0d0d;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: #c0c0c0;
}

a {
  text-decoration: none;
  color: #39ff14;
  transition: all 0.3s ease;
}

a:hover {
  color: #2dd60f;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #39ff14;
  color: #0d0d0d;
}

.btn-primary:hover {
  background-color: #2dd60f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(57, 255, 20, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #39ff14;
  border: 2px solid #39ff14;
}

.btn-secondary:hover {
  background-color: #39ff14;
  color: #0d0d0d;
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* Cookie Banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #e0e0e0;
  padding: 25px 20px;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.5);
  border-top: 2px solid #39ff14;
}

/* Force show when server renders banner */
.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  font-size: 0.95rem;
}

.cookie-content a {
  color: #39ff14;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

/* Header */
#header {
  background-color: #0d0d0d;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid #1a1a1a;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #39ff14;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.logo:hover {
  color: #2dd60f;
}

/* Navigation */
.nav-menu {
  display: flex;
  gap: 15px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  color: #e0e0e0;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 12px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a:not(.btn-cta-mobile)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #39ff14;
  transition: width 0.3s ease;
}

.nav-menu a:not(.btn-cta-mobile):hover {
  color: #39ff14;
}

.nav-menu a:not(.btn-cta-mobile):hover::after {
  width: 100%;
}

.btn-cta-mobile {
  display: none;
}

.btn-cta {
  background-color: #39ff14;
  color: #0d0d0d;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
}

.btn-cta:hover {
  background-color: #2dd60f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(57, 255, 20, 0.4);
}

/* Burger Menu (Hidden by default, shown at 900px) */
.burger-toggle {
  display: none;
}

.burger-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  padding: 10px;
}

.burger-icon span {
  width: 28px;
  height: 3px;
  background-color: #39ff14;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 2px;
  position: relative;
}

/* Hero Section */
.hero {
  background-image: linear-gradient(
      rgba(13, 13, 13, 0.7),
      rgba(26, 26, 26, 0.7)
    ),
    url("images/The Recording Space.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  padding: 120px 20px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #39ff14;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero h1 {
  color: #ffffff;
  font-size: 3.5rem;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.1rem;
  color: #c0c0c0;
  margin-bottom: 35px;
  line-height: 1.8;
}

/* Section Styles */
.section {
  padding: 80px 20px;
  background-color: #0d0d0d;
}

.section-dark {
  background-color: #1a1a1a;
}

.section-title {
  text-align: center;
  color: #39ff14;
  margin-bottom: 50px;
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #39ff14;
}

.section-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #c0c0c0;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.about-image {
  width: 100%;
}

/* Image Placeholder */
.image-placeholder {
  background-color: #708090;
  border: 3px solid #39ff14;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0d0d;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

/* Real Image Styles */
.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* Hide span text when image is present */
.image-placeholder img + span {
  display: none;
}

.image-placeholder span {
  display: block;
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.image-placeholder[data-ratio="16:9"] {
  aspect-ratio: 16 / 9;
}

.image-placeholder span {
  z-index: 1;
  padding: 20px;
  text-align: center;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 48%,
    rgba(57, 255, 20, 0.1) 50%,
    transparent 52%
  );
  background-size: 20px 20px;
}

/* Services Section */
.services-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #0d0d0d;
  padding: 35px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 2px solid #1a1a1a;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(57, 255, 20, 0.2);
  border-color: #39ff14;
}

.service-icon {
  color: #39ff14;
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  color: #39ff14;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #c0c0c0;
}

/* Podcasts Section */
.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.podcast-card {
  background-color: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 2px solid #1a1a1a;
  transition: all 0.3s ease;
}

.podcast-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(57, 255, 20, 0.2);
  border-color: #39ff14;
}

.podcast-info {
  padding: 25px;
}

.podcast-info h3 {
  color: #39ff14;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.podcast-info p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #c0c0c0;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: #0d0d0d;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-left: 4px solid #39ff14;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(57, 255, 20, 0.2);
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  color: #c0c0c0;
}

.testimonial-content p::before {
  content: '"';
  font-size: 3rem;
  color: #39ff14;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 5px;
}

.testimonial-author h4 {
  color: #39ff14;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonial-author p {
  font-size: 0.9rem;
  color: #708090;
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  padding: 80px 20px;
  text-align: center;
}

.cta-content h2 {
  color: #39ff14;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  color: #c0c0c0;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3,
.contact-form h3 {
  color: #39ff14;
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item i {
  color: #39ff14;
  font-size: 1.5rem;
  margin-top: 5px;
}

.contact-item strong {
  display: block;
  color: #39ff14;
  margin-bottom: 5px;
}

.contact-item p {
  margin: 0;
  color: #c0c0c0;
}

.contact-item a {
  color: #39ff14;
}

/* Contact Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #e0e0e0;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  background-color: #1a1a1a;
  border: 2px solid #2a2a2a;
  border-radius: 4px;
  color: #e0e0e0;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #39ff14;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-group label {
  margin: 0;
  font-size: 0.9rem;
  cursor: pointer;
}

.checkbox-group a {
  color: #39ff14;
  text-decoration: underline;
}

/* FAQ Section */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: #0d0d0d;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border-left: 4px solid #39ff14;
}

.faq-item h3 {
  color: #39ff14;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 0;
}

/* Footer */
#footer {
  background-color: #0d0d0d;
  color: #e0e0e0;
  padding: 60px 20px 30px;
  border-top: 2px solid #1a1a1a;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #39ff14;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-section h4 {
  color: #39ff14;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-section p {
  font-size: 0.95rem;
  color: #c0c0c0;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #c0c0c0;
  font-size: 0.95rem;
}

.footer-section ul li a:hover {
  color: #39ff14;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: #39ff14;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #2dd60f;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #1a1a1a;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #708090;
  margin: 0;
}

/* ============================================
   RESPONSIVE STYLES
   Breakpoint: 900px for burger menu
   ============================================ */

@media (max-width: 900px) {
  .header-content {
    gap: 20px;
  }

  /* Hide desktop CTA button */
  .btn-cta {
    display: none;
  }

  /* Show burger menu */
  .burger-icon {
    display: flex;
  }

  /* Hide navigation by default */
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background-color: #1a1a1a;
    width: 280px;
    padding: 30px 20px;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.5);
    transition: right 0.4s ease;
    gap: 0;
    justify-content: flex-start;
    align-items: stretch;
    border-left: 2px solid #39ff14;
  }

  .nav-menu a {
    padding: 15px 0;
    border-bottom: 1px solid #2a2a2a;
    text-align: left;
  }

  /* Show CTA button in mobile menu */
  .btn-cta-mobile {
    display: block;
    background-color: #39ff14;
    color: #0d0d0d;
    text-align: center;
    padding: 15px;
    margin-top: 10px;
    border-radius: 4px;
    font-weight: 600;
  }

  .btn-cta-mobile:hover {
    background-color: #2dd60f;
  }

  /* Show navigation when checkbox is checked */
  .burger-toggle:checked ~ .nav-menu {
    right: 0;
  }

  /* Animate burger icon to X */
  .burger-toggle:checked ~ .burger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
  }

  .burger-toggle:checked ~ .burger-icon span:nth-child(2) {
    transform: scale(0);
    opacity: 0;
  }

  .burger-toggle:checked ~ .burger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
  }
}

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  /* About section - stack columns */
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Services - smaller columns */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Podcasts - single column */
  .podcasts-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials - single column */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Contact - stack columns */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Cookie banner - stack vertically */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  /* Section padding */
  .section {
    padding: 60px 20px;
  }

  .hero {
    padding: 80px 20px;
  }
}

@media (max-width: 480px) {
  /* Further typography adjustments */
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  /* Button adjustments */
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  /* Logo size */
  .logo {
    font-size: 1.2rem;
  }

  /* Footer - single column */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Burger menu width */
  .nav-menu {
    width: 100%;
    right: -100%;
  }

  .burger-toggle:checked ~ .nav-menu {
    right: 0;
  }
}
