/* CSS Variables */
:root {
  --charcoal-black: #2c2c2c;
  --deep-charcoal: #1a1a1a;
  --soft-gold: #d4af37;
  --bright-gold: #f4d03f;
  --coral-red: #ff6b6b;
  --light-coral: #ff8e8e;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #495057;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.2);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--charcoal-black);
  background-color: var(--white);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--charcoal-black);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--soft-gold), var(--coral-red));
  border-radius: 2px;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--soft-gold), var(--bright-gold));
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  filter: brightness(1.1);
}

.btn-secondary {
  background: transparent;
  color: var(--coral-red);
  border: 2px solid var(--coral-red);
  padding: 10px 28px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--coral-red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 15px 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo .site-name {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal-black);
  text-decoration: none;
  background: linear-gradient(135deg, var(--soft-gold), var(--coral-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: 35px;
}

.nav-link {
  color: var(--charcoal-black);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--soft-gold);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--soft-gold), var(--coral-red));
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.desktop-cta {
  margin-left: 40px;
}

/* Burger Menu Styles */
.burger-menu {
  display: none;
  position: relative;
}

.burger-checkbox {
  display: none;
}

.burger-icon {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  width: 35px;
  height: 30px;
  position: relative;
}

.burger-line {
  width: 25px;
  height: 3px;
  background: var(--charcoal-black);
  position: absolute;
  left: 5px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger-line:nth-child(1) {
  top: 5px;
}

.burger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger-line:nth-child(3) {
  bottom: 5px;
}

/* Burger Animation - X Shape */
.burger-checkbox:checked + .burger-icon .burger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.burger-checkbox:checked + .burger-icon .burger-line:nth-child(2) {
  transform: translateY(-50%) scale(0);
}

.burger-checkbox:checked + .burger-icon .burger-line:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 999;
  cursor: pointer;
}

.burger-checkbox:checked ~ .mobile-overlay {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 80px;
  right: 15px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border: 2px solid var(--soft-gold);
  border-radius: 20px;
  padding: 25px;
  min-width: 280px;
  max-width: calc(100vw - 30px);
  transform: translateX(150%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.burger-checkbox:checked ~ .mobile-nav {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.burger-checkbox:checked ~ .burger-icon {
  z-index: 1001;
}

.mobile-link {
  display: block;
  color: var(--charcoal-black);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
}

.mobile-link:hover {
  color: var(--soft-gold);
  padding-left: 10px;
}

.mobile-link:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.mobile-cta {
  margin-top: 20px;
  padding: 14px 30px !important;
  text-align: center;
  border-bottom: none !important;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    var(--charcoal-black),
    var(--deep-charcoal)
  );
  color: var(--white);
  padding: 20px 0;
  z-index: 5000;
  box-shadow: 0 -5px 20px var(--shadow-dark);
}

.cookie-banner form {
  margin: 0;
  padding: 0;
  width: 100%;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0;
  line-height: 1.5;
}

.cookie-link {
  color: var(--soft-gold);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-link:hover {
  color: var(--bright-gold);
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.hidden {
  display: none !important;
}

/* Hero Section */
.hero-section {
  padding: 140px 0 100px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/Golden Sound Studio.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-subtitle {
  color: var(--bright-gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 3rem;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  order: 1;
}

.text-content p {
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-image {
  order: 2;
}

.image-placeholder {
  background: #e9ecef;
  border: 2px dashed var(--gray);
  border-radius: 15px;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-align: center;
  padding: 40px 20px;
  transition: all 0.3s ease;
}

.image-placeholder:hover {
  border-color: var(--soft-gold);
  background: rgba(212, 175, 55, 0.1);
}

.image-placeholder i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--soft-gold);
}

.image-placeholder p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.image-placeholder small {
  font-size: 0.9rem;
  opacity: 0.7;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.3s ease;
}

.about-img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px var(--shadow-dark);
}

.podcast-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 107, 0.05) 0%,
    rgba(212, 175, 55, 0.05) 100%
  );
}

.services-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-intro p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-dark);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--soft-gold), var(--coral-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.service-icon i {
  font-size: 2rem;
  color: var(--white);
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--charcoal-black);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--dark-gray);
  line-height: 1.6;
}

/* Podcasts Section */
.podcasts-section {
  padding: 100px 0;
  background: var(--white);
}

.podcasts-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.podcasts-intro p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
}

.podcast-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.3s ease;
}

.podcast-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-dark);
}

.podcast-image {
  position: relative;
}

.podcast-content {
  padding: 30px;
}

.podcast-content h3 {
  font-size: 1.3rem;
  color: var(--charcoal-black);
  margin-bottom: 15px;
}

.podcast-content p {
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.podcast-meta {
  display: flex;
  gap: 15px;
  align-items: center;
}

.episode-count {
  background: linear-gradient(135deg, var(--soft-gold), var(--bright-gold));
  color: var(--white);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.category {
  color: var(--coral-red);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--charcoal-black) 0%,
    var(--deep-charcoal) 100%
  );
  color: var(--white);
}

.testimonials-section .section-title {
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--soft-gold);
}

.stars {
  color: var(--soft-gold);
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  position: relative;
}

.testimonial-card blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -15px;
  font-size: 4rem;
  color: var(--soft-gold);
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar {
  display: none;
}

.author-info {
  text-align: center;
}

.author-info h4 {
  color: var(--soft-gold);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.author-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--coral-red), var(--light-coral));
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--coral-red);
}

.cta-section .btn-primary:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--soft-gold), var(--coral-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--white);
  font-size: 1.2rem;
}

.contact-text h4 {
  color: var(--charcoal-black);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-text a {
  color: var(--soft-gold);
  text-decoration: none;
  font-weight: 500;
}

.contact-text a:hover {
  color: var(--coral-red);
}

.contact-text p {
  color: var(--dark-gray);
  line-height: 1.6;
}

/* Form Styles */
.form {
  background: var(--light-gray);
  padding: 40px;
  border-radius: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: var(--charcoal-black);
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--soft-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-text {
  color: var(--dark-gray);
}

.checkbox-text a {
  color: var(--soft-gold);
  text-decoration: none;
}

.checkbox-text a:hover {
  color: var(--coral-red);
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.05) 0%,
    rgba(255, 107, 107, 0.05) 100%
  );
}

.faq-grid {
  display: grid;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px var(--shadow);
  border-left: 5px solid var(--soft-gold);
}

.faq-question {
  color: var(--charcoal-black);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.faq-answer {
  color: var(--dark-gray);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Footer */
.footer {
  background: var(--charcoal-black);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--soft-gold);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-section h4 {
  color: var(--soft-gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--soft-gold);
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--soft-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
  .nav-menu,
  .desktop-cta {
    display: none;
  }

  .burger-menu {
    display: block;
  }

  body:has(.burger-checkbox:checked) {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text {
    order: 2;
  }

  .about-image {
    order: 1;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .podcasts-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .mobile-nav {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }

  .cookie-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  /* Center footer social icons on mobile */
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 15px;
  }

  .service-card,
  .podcast-card,
  .testimonial-card,
  .faq-item {
    padding: 25px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
