/* ============================================
   NATHALIE MAILLARD MTA - MUSIC THERAPY WEBSITE
   Bilingual French/English
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Inria+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* Custom Font: Using serif alternatives for Arsenica Antiqua */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

/* ============================================
   COLOR PALETTE
   ============================================ */
:root {
  --burgundy: #783954;
  --mint: #bbe0cc;
  --sage: #8ead9d;
  --rose-pale: rgba(120, 57, 84, 0.53);
  --cream: #e7e6e4;
  --khaki-dark: #687066;
  --white: #ffffff;
  --text-burgundy: #783954;
  --text-sage: #8ead9d;
}

/* ============================================
   RESET & GLOBAL STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Crimson Text', 'Arsenica Antiqua', serif;
  color: var(--text-burgundy);
  line-height: 1.6;
  background-color: var(--white);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

/* Arsenica Antiqua - Using Crimson Text as fallback */
.font-arsenica {
  font-family: 'Crimson Text', serif;
  font-weight: 400;
}

.font-arsenica-bold {
  font-family: 'Crimson Text', serif;
  font-weight: 600;
}

/* Inria Serif for specific sections */
.font-inria {
  font-family: 'Inria Serif', serif;
}

.font-inria-bold {
  font-family: 'Inria Serif', serif;
  font-weight: 700;
}

/* Open Sans for language buttons */
.font-open-sans {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

/* Futura alternative (using system fallback) */
.font-futura {
  font-family: 'Trebuchet MS', 'Open Sans', sans-serif;
  font-weight: 400;
}

/* ============================================
   HEADER & LANGUAGE SELECTOR
   ============================================ */
header {
  position: relative;
  background-color: var(--burgundy);
  padding: 40px 50px;
}

.language-selector {
  position: absolute;
  top: 30px;
  right: 50px;
  display: flex;
  gap: 15px;
}

.lang-btn {
  font-family: 'Open Sans', sans-serif;
  font-size: 20.8px;
  font-weight: 700;
  background: none;
  border: none;
  color: var(--mint);
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
  border: 2px solid var(--mint);
}

.lang-btn:hover {
  opacity: 0.8;
}

.lang-btn.active {
  background-color: var(--mint);
  color: var(--burgundy);
  text-decoration: underline;
}

/* Main header content */
.header-content {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.header-image {
  flex-shrink: 0;
}

.header-image img {
  width: 436px;
  height: 646px;
  object-fit: cover;
  border-radius: 8px;
}

.header-text {
  flex: 1;
  color: var(--white);
}

/* Name - Arsenica Antiqua 56.2px */
.header-name {
  font-family: 'Crimson Text', serif;
  font-size: 56.2px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.1;
}

/* Credentials */
.header-credentials {
  font-family: 'Crimson Text', serif;
  font-size: 26.8px;
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* Tagline - Script style (Angella White alternative) */
.header-tagline {
  font-family: 'Brush Script MT', cursive;
  font-size: 49.6px;
  font-style: italic;
  margin-bottom: 40px;
  color: var(--white);
  opacity: 0.95;
}

/* First paragraph - Inria Serif 18.8px bold */
.header-description {
  font-family: 'Inria Serif', serif;
  font-size: 18.8px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Second paragraph - Inria Serif 15.8px */
.header-description-secondary {
  font-family: 'Inria Serif', serif;
  font-size: 15.8px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Last line - Inria Serif 13.8px */
.header-description-small {
  font-family: 'Inria Serif', serif;
  font-size: 13.8px;
  font-weight: 400;
  line-height: 1.5;
}

/* Italic text */
.italic {
  font-style: italic;
}

/* Header tagline image */
.header-tagline-image {
  width: 100%;
  max-width: 650px;
  height: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  display: block;
}

/* ============================================
   NAVIGATION BUTTONS (About, Services, Contact)
   ============================================ */
.nav-buttons {
  display: flex;
  gap: 25px;
  margin-top: 50px;
}

.nav-btn {
  font-family: 'Crimson Text', serif;
  font-size: 31.4px;
  font-weight: 400;
  background-color: var(--mint);
  color: var(--burgundy);
  border: none;
  padding: 20px 40px;
  cursor: pointer;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.nav-btn:hover {
  opacity: 0.85;
}

/* ============================================
   SECTIONS (Pages 2-10)
   ============================================ */
section {
  width: 100%;
  padding: 80px 50px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section > * {
  max-width: 1200px;
  width: 100%;
}

/* Section 2: Support adapted to grief realities */
.section-support {
  background-color: var(--sage);
}

.section-support h2 {
  font-family: 'Crimson Text', serif;
  font-size: 29.4px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 40px;
}

.section-support p {
  font-family: 'Crimson Text', serif;
  font-size: 19.8px;
  color: var(--text-burgundy);
  margin-bottom: 20px;
  line-height: 1.7;
}

.section-support p:last-child {
  font-style: italic;
}

/* Section 3: Experiences - continues from Section 2 */
.section-experiences {
  background-color: var(--sage);
  padding-top: 40px;
}

.section-experiences h3 {
  font-family: 'Crimson Text', serif;
  font-size: 19.8px;
  font-weight: 600;
  color: var(--text-burgundy);
  margin-bottom: 30px;
}

.section-experiences ul {
  list-style: none;
  padding-left: 20px;
}

.section-experiences li {
  font-family: 'Crimson Text', serif;
  font-size: 19.8px;
  color: var(--text-burgundy);
  margin-bottom: 15px;
  line-height: 1.7;
  position: relative;
  padding-left: 20px;
}

.section-experiences li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-burgundy);
  font-weight: bold;
}

/* Section 4: Services */
.section-services {
  background-color: var(--rose-pale);
}

.section-services h2 {
  font-family: 'Crimson Text', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 40px;
}

.section-services h3 {
  font-family: 'Crimson Text', serif;
  font-size: 19.8px;
  font-weight: 600;
  color: var(--white);
  margin-top: 30px;
  margin-bottom: 15px;
}

.section-services h3:first-of-type {
  margin-top: 0;
}

.section-services p {
  font-family: 'Crimson Text', serif;
  font-size: 19.8px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-item {
  margin-bottom: 30px;
}

/* Section 5: Instruments */
.section-instruments {
  background-color: rgba(142, 173, 157, 0.75);
}

.instruments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.instruments-grid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Section 6: Professionals */
.section-professionals {
  background-color: rgba(142, 173, 157, 0.53);
}

.section-professionals h2 {
  font-family: 'Crimson Text', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 30px;
}

.section-professionals p {
  font-family: 'Crimson Text', serif;
  font-size: 23px;
  color: var(--white);
  line-height: 1.8;
}

/* Section 7: Contact */
.section-contact {
  background-color: var(--rose-pale);
}

.section-contact h2 {
  font-family: 'Crimson Text', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 30px;
}

.section-contact p {
  font-family: 'Crimson Text', serif;
  font-size: 19.8px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.7;
}

.contact-buttons {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.contact-btn {
  font-family: 'Trebuchet MS', 'Open Sans', sans-serif;
  font-size: 27px;
  background-color: var(--cream);
  color: var(--khaki-dark);
  border: none;
  padding: 20px 40px;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.contact-btn:hover {
  opacity: 0.85;
}

/* Section 8: About */
.section-about {
  background-color: var(--sage);
}

.section-about h2 {
  font-family: 'Crimson Text', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--text-burgundy);
  margin-bottom: 30px;
}

.section-about p {
  font-family: 'Crimson Text', serif;
  font-size: 19.8px;
  color: var(--text-burgundy);
  margin-bottom: 20px;
  line-height: 1.8;
}

.section-about a {
  color: var(--text-burgundy);
  text-decoration: italic underline;
}

/* Section 9: Legal Information */
.section-legal {
  background-color: var(--burgundy);
}

.section-legal h2 {
  font-family: 'Crimson Text', serif;
  font-size: 19.4px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 25px;
  margin-top: 25px;
}

.section-legal h2:first-child {
  margin-top: 0;
}

.section-legal h3 {
  font-family: 'Crimson Text', serif;
  font-size: 17.4px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 15px;
  margin-top: 20px;
}

.section-legal p {
  font-family: 'Crimson Text', serif;
  font-size: 16.4px;
  color: var(--mint);
  margin-bottom: 15px;
  line-height: 1.7;
}

.section-legal a {
  color: var(--white);
  text-decoration: underline;
}

.legal-highlight {
  font-weight: 600;
  color: var(--white);
}

/* Section 10: Resources */
.section-resources {
  background-color: rgba(142, 173, 157, 0.75);
}

.section-resources h2 {
  font-family: 'Crimson Text', serif;
  font-size: 25.4px;
  font-weight: 600;
  color: var(--text-burgundy);
  margin-bottom: 30px;
}

.section-resources p {
  font-family: 'Crimson Text', serif;
  font-size: 17.4px;
  color: var(--text-burgundy);
  margin-bottom: 20px;
  line-height: 1.7;
}

.section-resources p:last-of-type {
  font-style: italic;
}

.playlist-platforms {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.playlist-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.platform-logo-link {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.platform-logo-link:hover {
  opacity: 0.8;
}

.platform-logo {
  width: 100px;
  height: auto;
}

.playlist-thumbnail-link {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.playlist-thumbnail-link:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.playlist-thumbnail {
  width: 280px;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  header {
    padding: 30px 25px;
  }

  .language-selector {
    top: 20px;
    right: 25px;
    gap: 10px;
  }

  .lang-btn {
    font-size: 16px;
    padding: 6px 12px;
  }

  .header-content {
    flex-direction: column;
    gap: 30px;
  }

  .header-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .header-name {
    font-size: 40px;
  }

  .header-credentials {
    font-size: 20px;
  }

  .header-tagline {
    font-size: 32px;
  }

  .nav-buttons {
    flex-direction: column;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
  }

  section {
    padding: 50px 25px;
  }

  .section-support h2 {
    font-size: 24px;
  }

  .section-support p {
    font-size: 16px;
  }

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

  .contact-buttons {
    flex-direction: column;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
  }

  .playlist-platforms {
    gap: 40px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.underline {
  text-decoration: underline;
}

.bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}
