/* CSS Variables */
:root {
  --ruby-red: #c41e3a;
  --charcoal-black: #2c2c2c;
  --gold: #ffd700;
  --dark-gold: #b8860b;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --dark-gray: #666666;
  --shadow: rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 8px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--charcoal-black);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--ruby-red);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--dark-gold);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--ruby-red);
  color: var(--white);
}

.btn-primary:hover {
  background: #a01729;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-secondary {
  background: var(--gold);
  color: var(--charcoal-black);
}

.btn-secondary:hover {
  background: var(--dark-gold);
  color: var(--charcoal-black);
  transform: translateY(-2px);
}

.btn-cta {
  background: var(--gold);
  color: var(--charcoal-black);
  font-weight: 700;
}

.btn-cta:hover {
  background: var(--dark-gold);
  color: var(--charcoal-black);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.125rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal-black);
  color: var(--white);
  padding: 20px 0;
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-content {
  flex: 1;
}

.cookie-content p {
  margin-bottom: 8px;
}

.cookie-link {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-buttons .btn {
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 900;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo h1 {
  color: var(--ruby-red);
  font-size: 1.8rem;
  margin-bottom: 0;
}

.tagline {
  color: var(--dark-gray);
  font-size: 0.9rem;
  font-weight: 400;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  color: var(--charcoal-black);
  font-weight: 500;
  transition: var(--transition);
  /* padding: 8px 0; */
}

.nav a:hover {
  color: var(--ruby-red);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.burger-line {
  width: 25px;
  height: 3px;
  background: var(--charcoal-black);
  margin: 3px 0;
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--charcoal-black) 0%, #3a3a3a 100%);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.hero-subtitle {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-description {
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
  color: #e0e0e0;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section:nth-child(even) {
  background: var(--light-gray);
}

.section-title {
  text-align: center;
  color: var(--charcoal-black);
  margin-bottom: 50px;
  font-size: 2.5rem;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.125rem;
  color: var(--dark-gray);
}

/* About Section */
.about .section-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.text-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.text-content p {
  margin-bottom: 20px;
}

/* Image Placeholder */
.image-placeholder {
  background: #cccccc;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-gray);
  font-weight: 600;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.image-content .image-placeholder {
  width: 100%;
  height: 300px;
}

/* Ensure images inside placeholders scale correctly */
.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Services Section */
.services {
  background: var(--white);
}

.services-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 1.125rem;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  color: var(--ruby-red);
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--charcoal-black);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--dark-gray);
  line-height: 1.6;
}

/* Featured Podcasts */
.featured-podcasts {
  background: var(--light-gray);
}

.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.podcast-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
}

.podcast-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.podcast-content {
  padding: 30px;
}

.podcast-content h3 {
  color: var(--ruby-red);
  margin-bottom: 15px;
}

.podcast-content p {
  color: var(--dark-gray);
  line-height: 1.6;
}

/* Reviews Section */
.reviews {
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px var(--shadow);
  border-left: 4px solid var(--gold);
}

.review-content {
  margin-bottom: 20px;
}

.review-content p {
  font-style: italic;
  color: var(--dark-gray);
  line-height: 1.7;
}

.review-author h4 {
  color: var(--charcoal-black);
  margin-bottom: 5px;
}

.review-author span {
  color: var(--ruby-red);
  font-weight: 500;
}

/* Call to Action Section */
.cta {
  background: linear-gradient(135deg, var(--ruby-red) 0%, #a01729 100%);
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Section */
.contact {
  background: var(--light-gray);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item h3 {
  color: var(--ruby-red);
  margin-bottom: 10px;
}

.contact-item p {
  color: var(--dark-gray);
  line-height: 1.6;
}

.contact-item a {
  color: var(--charcoal-black);
  font-weight: 500;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--charcoal-black);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ruby-red);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* FAQ Section */
.faq {
  background: var(--white);
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  color: var(--ruby-red);
  margin-bottom: 15px;
}

.faq-item p {
  color: var(--dark-gray);
  line-height: 1.7;
}

/* Footer */
.footer {
  background: var(--charcoal-black);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 15px;
}

.footer-section p {
  color: #cccccc;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #cccccc;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--ruby-red);
  color: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--charcoal-black);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444444;
  color: #cccccc;
}

/* Responsive Design */
@media (max-width: 900px) {
  .burger-menu {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    gap: 15px;
  }

  .menu-toggle:checked + .burger-menu + .nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu-toggle:checked + .burger-menu .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle:checked + .burger-menu .burger-line:nth-child(2) {
    transform: scale(0);
  }

  .menu-toggle:checked + .burger-menu .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .about .section-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Avoid fixed height on mobile to prevent layout breaking */
  .image-content .image-placeholder {
    height: auto;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 80px 0;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .podcasts-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .contact-form {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .btn-large {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .service-card,
  .contact-form {
    padding: 25px 20px;
  }
}
