/* ============================================
   MELLOW COACHING — Global Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;1,6..12,400&display=swap');

:root {
  --color-bg: #e4ddd2;
  --color-bg-warm: #e0c568;
  --color-bg-gold: #dfc36d;
  --color-text: #2d2a26;
  --color-text-muted: #5a5550;
  --color-dark-btn: #3a3a3a;
  --color-dark-btn-hover: #2a2a2a;
  --color-white: #ffffff;
  --color-border: #c8bfb2;
  --color-input-bg: #e0c568;

  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito Sans', 'Segoe UI', Tahoma, sans-serif;

  --max-width: 1200px;
  --header-height: 80px;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-text);
  text-decoration: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  background-color: var(--color-bg);
  border-bottom: 2px solid var(--color-bg-warm);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.logo-stone-top {
  width: 12px;
  height: 12px;
  background: #8B7355;
  border-radius: 50%;
  position: relative;
  top: 3px;
}

.logo-stone-mid {
  width: 20px;
  height: 16px;
  background: #c4a882;
  border-radius: 50%;
  position: relative;
  top: 1px;
}

.logo-stone-base {
  width: 36px;
  height: 18px;
  background: var(--color-bg-warm);
  border-radius: 50%;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-text);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Offerings dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  cursor: pointer;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0.5rem 0;
  min-width: 240px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 200;
  margin-top: 8px;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  color: var(--color-text);
  transition: background 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: var(--color-bg-warm);
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

/* Mobile dropdown */
@media (max-width: 700px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--color-bg-warm);
    border-radius: 0;
    margin-top: 0;
    padding: 0 0 0 1rem;
    min-width: unset;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
}

.nav-yt-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-dark-btn);
  border-radius: 6px;
  transition: background 0.3s ease;
}

.nav-yt-link:hover {
  background: var(--color-dark-btn-hover);
}

.nav-yt-link svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
}

/* Mobile nav */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 6px 0;
  transition: all 0.3s ease;
}

.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO — Home
   ============================================ */

.hero-section {
  background-color: var(--color-bg-warm);
  padding: 4rem 2rem;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.hero-text h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-text p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.hero-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image img {
  max-width: 392px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.hero-image .placeholder-img {
  width: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, #c4a882 0%, #a08060 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}

.hero-image .image-caption {
  text-align: right;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  text-decoration: underline;
}

/* ============================================
   OFFERINGS GRID — Home
   ============================================ */

.offerings-section {
  padding: 5rem 2rem;
}

.offerings-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.offerings-section .section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 400;
}

.offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.offering-card {
  background: var(--color-bg-warm);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.offering-card .card-image {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #c4a882 0%, #a08060 100%);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 0.8rem;
  overflow: hidden;
}

.offering-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.offering-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.offering-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  max-width: 380px;
}

.btn-dark {
  display: inline-block;
  background: var(--color-dark-btn);
  color: var(--color-white);
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-dark:hover {
  background: var(--color-dark-btn-hover);
  transform: translateY(-1px);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background-color: var(--color-bg-warm);
  padding: 3rem 2rem;
  border-top: 2px solid #c9b04e;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand .logo-icon {
  width: 40px;
  height: 40px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
  text-align: center;
}

.footer-brand-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-yt-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-dark-btn);
  border-radius: 6px;
  margin-top: 0.25rem;
  transition: background 0.3s ease;
}

.footer-yt-link:hover {
  background: var(--color-dark-btn-hover);
}

.footer-yt-link svg {
  width: 16px;
  height: 16px;
  fill: var(--color-white);
}

.footer-privacy a {
  font-size: 0.85rem;
  text-decoration: underline;
  color: var(--color-text-muted);
}

.footer-privacy a:hover {
  color: var(--color-text);
}

.footer-subscribe {
  max-width: 400px;
}

.footer-subscribe h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.footer-subscribe .subscribe-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.subscribe-form {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.subscribe-form input[type="email"] {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--color-white);
  outline: none;
  transition: border-color 0.3s ease;
}

.subscribe-form input[type="email"]:focus {
  border-color: var(--color-text);
}

.subscribe-form .btn-dark {
  padding: 0.7rem 1.5rem;
  white-space: nowrap;
}

.footer-subscribe .unsubscribe-note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */

.service-page {
  padding: 4rem 2rem;
}

.service-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.service-content h1 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.service-content .service-intro {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.8;
}

.service-content h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.service-content p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.service-content ul {
  list-style: disc;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.service-content ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.session-details {
  margin-bottom: 2rem;
}

.session-details h3 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.session-details ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.session-details ul li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.btn-whatsapp {
  display: block;
  background: var(--color-dark-btn);
  color: var(--color-white);
  text-align: center;
  padding: 1.2rem 2rem;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-whatsapp:hover {
  background: var(--color-dark-btn-hover);
  transform: translateY(-1px);
}

.service-image {
  margin-top: 3rem;
}

.service-image .placeholder-img {
  width: 100%;
  max-width: 500px;
  min-height: 350px;
  background: linear-gradient(135deg, #c4a882 0%, #a08060 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 0.9rem;
}

.please-note {
  background: rgba(200, 100, 100, 0.08);
  border-left: 3px solid #c47070;
  padding: 1rem 1.2rem;
  margin-top: 1.5rem;
  border-radius: 0 4px 4px 0;
}

.please-note strong {
  color: #a05050;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-page {
  padding: 4rem 2rem;
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-inner h1 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.about-inner p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.85;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-page {
  padding: 4rem 2rem;
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-info .btn-whatsapp {
  max-width: 360px;
  margin-top: 2rem;
}

.contact-form-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.contact-form label .required {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-input-bg);
  outline: none;
  margin-bottom: 1.25rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-text);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form .checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.contact-form .checkbox-row input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.contact-form .checkbox-row label {
  margin-bottom: 0;
  font-weight: 400;
}

/* ============================================
   PRIVACY POLICY
   ============================================ */

.privacy-page {
  padding: 4rem 2rem;
}

.privacy-inner {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-inner h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.privacy-inner h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.privacy-inner p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.privacy-inner ul {
  list-style: disc;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.privacy-inner ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  animation: fadeInFallback 0.5s ease 0.1s forwards;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

@keyframes fadeInFallback {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-image .placeholder-img {
    min-height: 350px;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .service-inner {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
    order: -1;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
}

@media (max-width: 700px) {
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid var(--color-bg-warm);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .main-nav.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .offerings-section .section-title {
    font-size: 2.2rem;
  }

  .contact-form .name-row {
    grid-template-columns: 1fr;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form input[type="email"],
  .subscribe-form .btn-dark {
    width: 100%;
    text-align: center;
  }
}
