/* ========================================
   Color Scheme: Emerald Green, Off-White, Muted Gray
   ======================================== */

/* CSS Variables */
:root {
  --emerald-green: #10b981;
  --emerald-dark: #059669;
  --emerald-light: #34d399;
  --off-white: #fafaf9;
  --muted-gray: #6b7280;
  --dark-gray: #374151;
  --light-gray: #e5e7eb;
  --white: #ffffff;
  --black: #1f2937;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--off-white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 3px solid var(--emerald-green);
  padding: 1.5rem 0;
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text h3 {
  color: var(--emerald-green);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.cookie-text p {
  color: var(--muted-gray);
  font-size: 0.95rem;
}

.cookie-text a {
  color: var(--emerald-green);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--emerald-dark);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-accept,
.btn-decline {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: inherit;
}

.btn-accept {
  background: var(--emerald-green);
  color: var(--white);
}

.btn-accept:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
}

.btn-decline {
  background: transparent;
  color: var(--muted-gray);
  border: 2px solid var(--light-gray);
}

.btn-decline:hover {
  background: var(--light-gray);
  color: var(--black);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--emerald-green);
  letter-spacing: 0.5px;
}

/* Hide burger menu elements by default */
.menu-toggle {
  display: none;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.burger-line {
  width: 100%;
  height: 3px;
  background: var(--emerald-green);
  border-radius: 3px;
  position: absolute;
  left: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger-line:nth-child(1) {
  top: 0;
}

.burger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger-line:nth-child(3) {
  bottom: 0;
}

/* Burger animation when checked */
.menu-toggle:checked + .burger-menu .burger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.menu-toggle:checked + .burger-menu .burger-line:nth-child(2) {
  transform: translateY(-50%) scale(0);
}

.menu-toggle:checked + .burger-menu .burger-line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-menu a {
  color: var(--black);
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--emerald-green);
}

.btn-cta-nav {
  background: var(--emerald-green);
  color: var(--white) !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 6px;
  font-weight: 600;
  margin-left: 1.5rem;
}

.btn-cta-nav:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
}

/* Mobile Navigation */
@media (max-width: 900px) {
  .burger-menu {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
  }

  .menu-toggle:checked ~ .nav-menu {
    right: 0;
  }

  .nav-menu a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
  }

  .btn-cta-nav {
    margin-left: 0;
    margin-top: 1rem;
    text-align: center;
    width: 100%;
  }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary {
  display: inline-block;
  background: var(--emerald-green);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--emerald-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--off-white) 0%,
    var(--light-gray) 100%
  );
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/Thought\ Space.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero-subtitle {
  color: var(--emerald-light);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.hero-section h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ========================================
   SECTION COMMON
   ======================================== */

section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  color: var(--black);
  margin-bottom: 1rem;
  text-align: center;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted-gray);
  max-width: 900px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: center;
}

.about-text p {
  color: var(--muted-gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-image {
  width: 100%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-gray);
  font-size: 1.2rem;
  border-radius: 10px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
}

.service-icon {
  font-size: 3rem;
  color: var(--emerald-green);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--muted-gray);
  line-height: 1.7;
}

/* ========================================
   PODCASTS SECTION
   ======================================== */

.podcasts-section {
  background: var(--white);
}

.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.podcast-card {
  background: var(--off-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.podcast-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
}

.podcast-image {
  width: 100%;
  overflow: hidden;
}

.podcast-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.podcast-card:hover .podcast-image img {
  transform: scale(1.05);
}

.podcast-card h3 {
  font-size: 1.5rem;
  color: var(--black);
  padding: 1.5rem 1.5rem 1rem;
}

.podcast-card p {
  color: var(--muted-gray);
  padding: 0 1.5rem 1.5rem;
  line-height: 1.7;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--emerald-green);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
  color: var(--muted-gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-name {
  color: var(--black);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  color: var(--emerald-green);
  font-size: 0.95rem;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  background: var(--emerald-green);
  padding: 5rem 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--emerald-green);
}

.cta-section .btn-primary:hover {
  background: var(--off-white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
  background: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info h3 {
  color: var(--black);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--emerald-green);
  margin-top: 0.25rem;
}

.contact-item h4 {
  color: var(--black);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
  color: var(--muted-gray);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--emerald-green);
}

.contact-form {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--light-gray);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald-green);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-label span {
  color: var(--muted-gray);
  font-size: 0.95rem;
}

.checkbox-label a {
  color: var(--emerald-green);
  text-decoration: underline;
}

.checkbox-label a:hover {
  color: var(--emerald-dark);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
  background: var(--off-white);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--emerald-green);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  color: var(--emerald-green);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--muted-gray);
  line-height: 1.8;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--black);
  color: var(--light-gray);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  color: var(--emerald-green);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--dark-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--emerald-green);
  transform: translateY(-3px);
}

.footer-links h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--emerald-green);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-gray);
  color: var(--muted-gray);
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-page {
  padding: 5rem 0;
  background: var(--off-white);
}

.legal-page h1 {
  font-size: 3rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.last-updated {
  color: var(--muted-gray);
  font-size: 1rem;
  margin-bottom: 3rem;
  font-style: italic;
}

.legal-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: var(--emerald-green);
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  color: var(--black);
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: var(--muted-gray);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.legal-content ul,
.legal-content ol {
  color: var(--muted-gray);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  margin-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--emerald-green);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--emerald-dark);
}

.legal-content strong {
  color: var(--black);
  font-weight: 600;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 900px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .services-grid,
  .podcasts-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .legal-page h1 {
    font-size: 2rem;
  }

  .legal-content {
    padding: 2rem 1.5rem;
  }

  .legal-content h2 {
    font-size: 1.5rem;
  }

  .legal-content h3 {
    font-size: 1.2rem;
  }
}
