/* TM4CHANGE / Tina Mullins - Static Site Styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --color-text: #3a3a3a;
  --color-text-light: #6b6b6b;
  --color-heading: #2c2c2c;
  --color-accent: #b8a99a;
  --color-accent-hover: #9e8d7e;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f0eb;
  --color-bg-sage: #d5ddd5;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
  background: var(--color-bg);
}

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

a {
  color: var(--color-accent-hover);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-heading);
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-heading);
  text-decoration: none;
}

.main-nav {
  display: flex;
  gap: 30px;
  list-style: none;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-heading);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-heading);
  margin: 5px 0;
  transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 70px;
}

.hero-image {
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 300;
  color: var(--color-heading);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 300;
  color: var(--color-accent);
  margin-bottom: 30px;
  padding-left: 50px;
  position: relative;
}

.hero-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
}

.hero-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-light);
  max-width: 480px;
}

/* ===== SPLIT SECTIONS ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-image {
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

/* ===== PRACTISE SECTION ===== */
.practise-section {
  background: var(--color-bg-sage);
  padding: 100px 40px;
  text-align: center;
}

.practise-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 300;
  color: var(--color-heading);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.section-subheading {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.section-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto 30px;
}

.btn {
  display: inline-block;
  padding: 12px 36px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--color-accent);
  color: var(--color-heading);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--color-accent);
  color: #fff;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.contact-image {
  overflow: hidden;
  position: relative;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: var(--color-bg-alt);
}

.contact-content h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 300;
  color: var(--color-heading);
  margin-bottom: 20px;
}

.contact-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.contact-content a {
  color: var(--color-accent-hover);
}

.contact-form {
  margin-top: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  border: none;
  border-bottom: 1px solid var(--color-accent);
  background: transparent;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.3s ease;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-accent);
  font-weight: 300;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
  margin-bottom: 20px;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--color-accent);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: var(--color-accent-hover);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  padding-top: 70px;
}

.about-hero .split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 300;
  color: var(--color-heading);
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.about-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.about-content h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-accent);
  margin-top: 24px;
  margin-bottom: 12px;
}

/* ===== EVENTS SECTION ===== */
.events-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}

.events-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: var(--color-bg-alt);
}

.events-content h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 300;
  color: var(--color-heading);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.events-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

/* ===== PRIVACY POLICY PAGE ===== */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 40px 80px;
}

.page-content h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 300;
  color: var(--color-heading);
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.page-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-heading);
  margin-top: 30px;
  margin-bottom: 12px;
}

.page-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.page-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.page-content li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.social-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  list-style: none;
}

.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}

.social-bar a:hover {
  transform: scale(1.1);
}

.social-bar svg {
  width: 24px;
  height: 24px;
}

.footer-text {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.footer-text a {
  margin-left: 20px;
}

.footer-logos {
  max-width: 300px;
  margin: 0 auto;
  opacity: 0.7;
}

/* ===== PARALLAX & SCROLL ANIMATIONS ===== */
.parallax-wrap {
  overflow: hidden;
  position: relative;
}

.parallax-wrap img {
  will-change: transform;
  transition: none;
}

/* Fade-in-up on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for child elements */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.25s; }
.reveal-delay-3 { transition-delay: 0.4s; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .parallax-wrap img {
    transform: none !important;
  }
}

/* ===== CHAT WIDGET ===== */
.chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-widget-label {
  background: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-heading);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.chat-widget:hover .chat-widget-label {
  opacity: 1;
  transform: translateX(0);
}

.chat-widget-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  overflow: hidden;
}

.chat-widget-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.chat-widget-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero,
  .split-section,
  .contact-section,
  .about-hero,
  .events-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    height: 50vh;
  }

  .hero-content {
    padding: 40px 30px 60px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .split-content,
  .about-content,
  .events-content,
  .contact-content {
    padding: 40px 30px;
  }

  .split-image {
    height: 50vh;
  }

  .practise-section {
    padding: 60px 30px;
  }

  .contact-image {
    height: 50vh;
  }

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

  .page-content {
    padding: 120px 24px 60px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 20px 40px;
    gap: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

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

  .nav-toggle {
    display: block;
  }

  .header-inner {
    padding: 16px 24px;
  }
}
