/* PodMeister — cold-car-620.css */
/* Adapted from BBQ template DNA (template36.xml) */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #4c4c4c;
  background: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color .25s; }
a:hover { color: #821f05; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  color: #2d2d2d;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.2;
}

.accent-font {
  font-family: 'Covered By Your Grace', cursive;
  font-size: 1.2rem;
  text-transform: none;
  letter-spacing: .02em;
  color: #821f05;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 14px 32px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: transform .2s, background .25s;
}

.btn-primary {
  background: #821f05;
  color: #ffffff;
}
.btn-primary:hover { background: #6a1904; color: #ffffff; transform: scale(.97); }

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-outline:hover { background: #ffffff; color: #2d2d2d; transform: scale(.97); }

.btn-dark {
  background: #2d2d2d;
  color: #ffffff;
}
.btn-dark:hover { background: #1d1d1d; color: #ffffff; transform: scale(.97); }

/* ===== HEADER / NAV ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(29,29,29,.96);
  padding: 14px 0;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
  transition: padding .3s;
}

#site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-wrap { display: flex; align-items: center; }
.logo-wrap svg { width: 180px; height: 48px; }

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #ffffff;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-dropdown {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #1d1d1d;
  z-index: 8999;
  display: none;
  padding: 24px 0 32px;
  border-top: 2px solid #821f05;
}
.nav-dropdown.visible { display: block; }

.nav-dropdown ul {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-dropdown ul li a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #ffffff;
  padding: 11px 20px;
  transition: color .2s, background .2s;
}
.nav-dropdown ul li a:hover,
.nav-dropdown ul li a.active { color: #821f05; }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img-assets/hero-bg.webp') center/cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,10,8,.72);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 60px;
  max-width: 860px;
  margin: 0 auto;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: #821f05;
  margin: 0 auto 24px;
}

.hero-content .logo-hero { margin: 0 auto 28px; }

.hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 18px;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SECTION SHARED ===== */
.section-pad { padding: 80px 0; }
.section-pad-lg { padding: 100px 0; }

.section-label {
  font-family: 'Covered By Your Grace', cursive;
  font-size: 1.3rem;
  color: #821f05;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #2d2d2d;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 20px;
}

.section-title.white { color: #ffffff; }

.section-desc {
  font-size: 1rem;
  color: #4c4c4c;
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ===== INTRO (2-col) ===== */
#intro { background: #ffffff; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col.reversed { direction: rtl; }
.two-col.reversed > * { direction: ltr; }

.two-col-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ===== FEATURES ===== */
#features {
  position: relative;
  background: url('../img-assets/courses-laptop.webp') center/cover no-repeat fixed;
}
.features-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29,10,5,.82);
}
.features-inner { position: relative; z-index: 2; }

.features-head { text-align: center; margin-bottom: 56px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-item {
  text-align: center;
  color: #ffffff;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: #821f05;
  border-radius: 0;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ffffff;
}

.feature-item h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #ffffff;
}

/* ===== PRICING ===== */
#pricing { background: #f9f9f9; }

.pricing-head { text-align: center; margin-bottom: 56px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #f1f1f1;
  padding: 40px 32px;
  position: relative;
  transition: box-shadow .25s;
}
.pricing-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.1); }
.pricing-card.featured {
  border-top: 4px solid #821f05;
  box-shadow: 0 4px 24px rgba(130,31,5,.12);
}
.pricing-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #821f05;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 16px;
}
.pricing-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  text-align: center;
}
.pricing-price {
  text-align: center;
  margin: 20px 0;
}
.pricing-price .amount {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  color: #821f05;
  line-height: 1;
}
.pricing-price .currency { font-size: 1.4rem; vertical-align: super; }
.pricing-price .period {
  font-size: .85rem;
  color: #4c4c4c;
  display: block;
  margin-top: 4px;
}
.pricing-features {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: .92rem;
  color: #4c4c4c;
  padding-left: 24px;
  position: relative;
}
.pricing-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #821f05;
  font-size: .8rem;
  top: 3px;
}
.pricing-card .btn { width: 100%; text-align: center; }

/* ===== HOW IT WORKS ===== */
#how-it-works {
  background: #ffffff;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.step-item { text-align: center; padding: 20px; }
.step-num {
  width: 70px;
  height: 70px;
  border-radius: 0;
  background: #2d2d2d;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-item h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.step-item p { font-size: .9rem; color: #4c4c4c; }

/* ===== TESTIMONIALS ===== */
#testimonials {
  background: #f9f9f9;
}
.testimonials-head { text-align: center; margin-bottom: 48px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: #ffffff;
  padding: 32px 28px;
  border-left: 4px solid #821f05;
}
.testimonial-text {
  font-size: .95rem;
  color: #4c4c4c;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  background: #2d2d2d;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
}
.author-info strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  color: #2d2d2d;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.author-info span { font-size: .8rem; color: #821f05; }
.stars { color: #821f05; font-size: .85rem; margin-bottom: 4px; }

/* ===== CTA SECTION ===== */
#cta-section {
  position: relative;
  background: url('../img-assets/podcast-success.webp') center/cover no-repeat;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29,10,5,.8);
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 20px;
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #ffffff;
  margin-bottom: 16px;
}
.cta-inner p {
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: 1rem;
}

/* ===== CONTACT FORM (email-us) ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-info-item i {
  color: #821f05;
  font-size: 1.1rem;
  margin-top: 3px;
  min-width: 20px;
}
.contact-info-item p { font-size: .95rem; line-height: 1.6; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #2d2d2d;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: #f9f9f9;
  border: 1px solid #f1f1f1;
  border-radius: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: .92rem;
  color: #4c4c4c;
  -webkit-appearance: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #821f05;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit .btn { width: 100%; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: #1d1d1d;
  padding: 140px 0 60px;
  text-align: center;
}
.page-hero h1 {
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
}
.breadcrumb {
  margin-top: 14px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: #821f05; }

/* ===== ABOUT PAGE ===== */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-img img { width: 100%; height: 420px; object-fit: cover; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.team-card { text-align: center; }
.team-card img { width: 100%; height: 240px; object-fit: cover; margin-bottom: 16px; }
.team-card h4 { font-size: .95rem; margin-bottom: 4px; }
.team-card span { font-size: .85rem; color: #821f05; }

/* ===== SERVICES PAGE ===== */
.services-list { display: flex; flex-direction: column; gap: 48px; margin-top: 48px; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.service-row.alt { direction: rtl; }
.service-row.alt > * { direction: ltr; }
.service-row img { width: 100%; height: 320px; object-fit: cover; }
.service-text h3 { margin-bottom: 12px; }
.service-text p { margin-bottom: 16px; }

/* ===== SUPPORT PAGE ===== */
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.faq-item { border-bottom: 1px solid #f1f1f1; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #2d2d2d;
  padding: 20px 40px 20px 0;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '\f067';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: .8rem;
  color: #821f05;
  transition: transform .25s;
}
.faq-question.open::after { content: '\f068'; }
.faq-answer { display: none; padding: 0 0 20px; font-size: .93rem; line-height: 1.75; color: #4c4c4c; }
.faq-answer.visible { display: block; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 860px; }
.legal-content h2 { font-size: 1.2rem; margin: 32px 0 10px; color: #2d2d2d; }
.legal-content p { margin-bottom: 16px; font-size: .95rem; line-height: 1.8; color: #4c4c4c; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { font-size: .95rem; line-height: 1.8; color: #4c4c4c; list-style: disc; margin-bottom: 6px; }

/* ===== FOOTER ===== */
#site-footer {
  background: url('../img-assets/about-studio.webp') center/cover no-repeat;
  position: relative;
}
.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,8,5,.92);
}
.footer-inner {
  position: relative;
  z-index: 2;
  padding: 70px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h3 {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #ffffff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #821f05;
}
.footer-col p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 12px; }
.footer-col a { font-size: .88rem; color: rgba(255,255,255,.6); display: block; margin-bottom: 8px; }
.footer-col a:hover { color: #821f05; }
.social-links { display: flex; gap: 12px; margin-top: 12px; }
.social-links a {
  width: 38px;
  height: 38px;
  background: #2d2d2d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: .9rem;
  transition: background .2s;
}
.social-links a:hover { background: #821f05; color: #ffffff; }
.footer-logo svg { width: 160px; height: 44px; margin-bottom: 16px; }
.footer-form .form-group input {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: #ffffff;
}
.footer-form .form-group input::placeholder { color: rgba(255,255,255,.4); }
.footer-form .btn { width: 100%; margin-top: 4px; font-size: .8rem; padding: 12px; }

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-legal-links a:hover { color: #821f05; }

/* ===== COOKIES GDPR ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1d1d1d;
  border-top: 3px solid #821f05;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  max-width: 700px;
  line-height: 1.6;
  flex: 1;
}
#cookie-banner a { color: #821f05; }
.cookie-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-btns .btn { padding: 10px 24px; font-size: .8rem; }

/* ===== ANIMATIONS ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.fade-in-down {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-down.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .two-col, .about-content, .service-row, .service-row.alt,
  .contact-wrap { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 40px auto 0; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .hero-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
