/* =========================================================
   Birthing with Intention – Global Theme
   ========================================================= */

/* CSS Variables - Centralized theme colors */
:root {
    --primary-color: #D56129;        /* Main terracotta/rust */
    --secondary-color: #4C342C;      /* Deep brown */
    --accent-color: #ECA848;         /* Warm golden amber */
    --accent-soft: #fdf1e6;          /* Soft cream wash */
    --highlight-color: #9D553E;      /* Mid rust-brown */
    --background-color: #fdf1e6;     /* Cream background */
    --surface-color: #ffffff;        /* White surface */
    --border-color: #e8d5c0;         /* Warm beige border */
    --text-color: #4C342C;           /* Deep brown text */
    --muted-text: #9D553E;           /* Mid rust muted text */
    --white: #ffffff;

    /* Extended palette */
    --palette-dark-brown: #4c342c;
    --palette-mid-brown: #9d553e;
    --palette-rust: #d56129;
    --palette-amber: #eca848;
    --palette-olive: #a89948;
    --palette-lavender: #bea7c9;
    --palette-blush: #ceb9b3;
    --palette-pink: #f49f93;
    --palette-peach: #ffb685;
    --palette-gold: #f7d58b;
    --palette-sage: #d6cf75;
    --palette-lilac: #e2d8ea;
}

/* =========================================================
   Base Styles
   ========================================================= */

html {
    box-sizing: border-box;
    font-size: clamp(16px, 1.1vw, 18px); /* 🔥 global upscale, fluid */
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: "Raleway", Georgia, "Times New Roman", serif;
    background: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    text-align: left;
    width: 100%;
}

/* =========================================================
   Typography
   ========================================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: "Quicksand", "Raleway", sans-serif;
    text-align: center;
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.5em;
    letter-spacing: 0.05em;
    text-transform: none;
}

h1 {
    font-size: 3rem;
    margin-top: 18px;
    margin-bottom: 24px;
    color: var(--primary-color);
    text-shadow: 0 2px 12px rgba(213, 97, 41, 0.18);
}

h2 {
    font-size: 1.9rem;
    margin-top: 18px;
    color: var(--secondary-color);
}

h3 {
    font-size: 1.5rem; /* slightly larger for hierarchy */
    margin-top: 26px;
    color: var(--primary-color);
}

p {
    font-family: "Raleway", Georgia, serif;
    font-size: 1.1rem; /* 🔥 slightly bigger */
    margin: 0 0 25px 0;
    line-height: 1.75; /* 🔥 improved readability */
    max-width: 720px; /* 🔥 slightly longer lines */
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    color: var(--muted-text);
}

.intro-text {
    font-family: "Quicksand", sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 0.5em;
    color: var(--primary-color);
}

ul, ol {
    font-family: "Raleway", Georgia, serif;
    font-size: 1.05rem; /* slightly larger for balance */
    line-height: 1.7;   /* subtle lift */
    text-align: center;
    margin: 0 auto 1rem auto;
    padding-left: 0;
    max-width: 720px;  /* longer lines to match paragraphs */
    width: 90%;
    color: var(--muted-text);
}

li {
    margin-bottom: 0.5rem;
}

/* =========================================================
   Images & Media
   ========================================================= */

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

/* =========================================================
   Logo Hover Effect – Birthing with Intention
   Wrap your <img> in a <div class="image-container">
   ========================================================= */
.hero-pair {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin: 48px 0;
    flex-wrap: wrap;
}

.hero-logo img,
.hero-portrait img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 18px;
    border: 20px solid var(--primary-color);
    box-shadow: 0 18px 45px rgba(213, 97, 41, 0.15);
}

@media (max-width: 768px) {
    .hero-logo img,
    .hero-portrait img {
        width: 160px;
        height: 160px;
    }
}


.image-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Rotating dotted ring that appears on hover */
.image-container::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 24px;
    border: 3px dotted var(--accent-color);
    opacity: 0;
    transform: rotate(0deg) scale(0.92);
    transition: opacity 0.4s ease, transform 0.4s ease;
    animation: none;
    pointer-events: none;
}

/* Warm amber glow halo behind logo */
.image-container::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 22px;
    background: transparent;
    box-shadow: 0 0 0 0 rgba(236, 168, 72, 0);
    transition: box-shadow 0.45s ease;
    pointer-events: none;
}

/* Hover: image lifts and warms */
.image-container:hover img {
    transform: translateY(-6px) scale(1.03);
    box-shadow:
        0 28px 60px rgba(213, 97, 41, 0.28),
        0 8px 20px rgba(236, 168, 72, 0.2);
    border-color: var(--secondary-color);
}



.image-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin: 0px 0 8px 0;
}

/* The image itself */
.image-container img {
    width: 95%;
    max-width: 380px;
    height: auto;
    border: 0px solid var(--primary-color);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(213, 97, 41, 0.15);
    transition:
        transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.45s ease,
        border-color 0.4s ease;
    display: block;
}

.image-container2 {
    position: relative;
    display: table; /* shrinks to image width, still centres with margin: auto */
    cursor: pointer;
    margin: 48px auto;
    text-align: center;
}

/* Rotating dotted ring */
.image-container2::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 24px;
    border: 3px dotted var(--accent-color);
    opacity: 0;
    transform: rotate(0deg) scale(0.92);
    transition: opacity 0.4s ease, transform 0.4s ease;
    animation: none;
    pointer-events: none;
}

/* Glow halo */
.image-container2::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 22px;
    background: transparent;
    box-shadow: 0 0 0 0 rgba(236, 168, 72, 0);
    transition: box-shadow 0.45s ease;
    pointer-events: none;
}

/* Hover effect */
.image-container2:hover img {
    transform: translateY(-6px) scale(1.03);
    box-shadow:
        0 28px 60px rgba(213, 97, 41, 0.28),
        0 8px 20px rgba(236, 168, 72, 0.2);
    border-color: var(--secondary-color);
}

/* Image */
.image-container2 img {
    width: 95%;
    max-width: 380px;
    height: auto;
    border: 0px solid var(--primary-color);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(213, 97, 41, 0.15);
    transition:
        transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.45s ease,
        border-color 0.4s ease;
    display: block;
    margin: 0 auto; /* ensures the image itself is centered */
}

/* =========================================================
   Image Container 5 – My Approach Section
   ========================================================= */
.image-container5 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    z-index: 1;
    pointer-events: none;

    /* Remove these - they break the flex layout */
    /* margin: 48px auto; */
    /* text-align: center; */
}

.image-container5 img {
    width: 110%;          /* fills the fixed-width container */
    max-width: none;      /* remove the cap so it respects the container */
    height: auto;
    border-radius: 18px;
    border: 4px solid var(--primary-color);
    box-shadow: 0 18px 45px rgba(213, 97, 41, 0.15);
    display: block;
    margin: 0;            /* let flexbox handle centring, not margin: auto */
    transform-origin: center center;
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        opacity 0.4s ease;
    pointer-events: auto;
}




.image-container4 {
    position: relative;
    display: block;
    margin: 0px auto; /* increased top & bottom spacing */
    text-align: center;
}


/* Glow halo */
.image-container4::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 22px;
    background: transparent;
    box-shadow: 0 0 0 0 rgba(236, 168, 72, 0);
    transition: box-shadow 0.45s ease;
    pointer-events: none;
}


/* Image */
.image-container4 img {
    width: 95%;
    max-width: 380px;
    height: auto;
    border: 0px solid var(--primary-color);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(213, 97, 41, 0.15);
    transition:
        transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.45s ease,
        border-color 0.4s ease;
    display: block;
    margin: 0 auto; /* ensures the image itself is centered */
}

.repertoire-image-container {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.repertoire-image-container video {
    width: 60%;
    max-width: 400px;
    height: auto;
    border: 2px solid var(--primary-color);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(213, 97, 41, 0.15);
    display: block;
    margin: 0 auto;
}

/* =========================================================
   Layout & Header
   ========================================================= */

header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

/* =========================================================
   Navigation
   ========================================================= */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: linear-gradient(90deg, var(--primary-color) 0%, #e07840 50%, var(--accent-color) 100%);
    padding: 14px 20px;
    box-shadow: 0 4px 24px rgba(76, 52, 44, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform 0.3s ease-in-out, background 0.25s ease-in-out, box-shadow 0.25s ease-in-out, opacity 0.3s ease;
}

.nav-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

/* Social Links Container */
.social-links-container {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.social-icon-link {
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 999px;
    background: rgba(253, 241, 230, 0.15);
    backdrop-filter: blur(6px);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, background 0.2s ease-out;
}

.social-icon-link img {
    width: 32px;
    height: 32px;
    margin: 0;
}

.social-icon-link:hover {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 10px 25px rgba(76, 52, 44, 0.4);
    background: rgba(253, 241, 230, 0.3);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    position: relative;
    justify-content: center;
}

nav ul li {
    margin: 0 12px;
}

nav a {
    color: var(--accent-soft);
    text-decoration: none;
    font-family: "Quicksand", sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 10px;        /* reduced from 10px 16px */
    letter-spacing: 0.08em;    /* reduced from 0.14em */
    border-radius: 999px;
    position: relative;
    white-space: nowrap;        /* ADD THIS — prevents wrapping */
    transition: color 0.25s ease, background 0.25s ease, transform 0.18s ease;
}

nav ul li {
    margin: 0 6px;              /* reduced from 0 12px */
}

nav a::after {
    content: "";
    position: absolute;
    inset-inline: 16px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease-out;
    opacity: 0.95;
}

nav a:hover {
    background: rgba(253, 241, 230, 0.12);
    color: var(--white);
    transform: translateY(-1px);
}

nav a:hover::after {
    transform: scaleX(1);
}

nav ul.show {
    flex-direction: column;
    background: var(--secondary-color);
    position: absolute;
    top: 60px;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 20px 0;
    box-shadow: 0 18px 30px rgba(76, 52, 44, 0.5);
    animation: slideDown 0.3s ease-in-out;
    align-items: center;
    gap: 10px;
    display: flex;
    height: calc(100vh - 60px);
    overflow-y: auto;
    justify-content: flex-start;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.menu-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--accent-soft);
    border-radius: 999px;
    transition: all 0.3s ease-in-out;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* =========================================================
   Wrapper / Main Content
   ========================================================= */

.wrapper {
    padding-top: 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 30px);
    padding-bottom: 60px;
}

.page-section {
    scroll-margin-top: 80px;
}
.divider {
    width: 100%;
    max-width: 780px;
    margin: 32px auto 8px auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.divider2 {
    width: 100%;
    max-width: 780px;
    margin: 64px auto 48px auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(213, 97, 41, 0.75), transparent);
}

/* Updated class for the logo */
.divider-logo {
    width: 45px; /* Adjust size as needed */
    height: auto;
    max-height: 45px; 
    flex-shrink: 0;
    object-fit: contain;
    opacity: 0.9; /* Keeps it consistent with your previous style */
}

.divider2::before,
.divider2::after {
    content: "";
    flex: 1;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(213, 97, 41, 0.75), transparent);
}

/* Updated class for the logo */
.divider2-logo {
    width: 40px; /* Adjust size as needed */
    height: auto;
    max-height: 40px; 
    flex-shrink: 0;
    object-fit: contain;
    opacity: 0.9; /* Keeps it consistent with your previous style */
}

/* =========================================================
   Call to Action Buttons
   ========================================================= */

.cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.cta-item {
    display: inline-block;
    font-family: "Quicksand", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    text-decoration: none;
    letter-spacing: 0.12em;
    border: none;
    box-shadow: 0 12px 30px rgba(213, 97, 41, 0.35);
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, filter 0.18s ease-out;
}

.cta-item:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 20px 45px rgba(213, 97, 41, 0.55);
    filter: brightness(1.06);
}

.cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.cta-icon-wrapper {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, filter 0.25s ease;
    background: transparent;
}

.cta-icon-wrapper img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.cta-block:nth-child(1) .cta-icon-wrapper img { width: 105%; height: 105%; }
.cta-block:nth-child(2) .cta-icon-wrapper img { width: 65%;  height: 65%; }
.cta-block:nth-child(3) .cta-icon-wrapper img { width: 72%;  height: 72%; }
.cta-block:nth-child(4) .cta-icon-wrapper img { width: 65%;  height: 65%; }

.cta-block:hover .cta-icon-wrapper {
    transform: scale(1.08);
    filter: drop-shadow(0 0 16px rgba(213, 97, 41, 0.6));
}

.cta-label {
    color: var(--secondary-color);
    font-family: "Quicksand", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    opacity: 0.9;
}

.whatsapp-icon {
    transform: scale(1.35);
}

/* =========================================================
   Listen Links
   ========================================================= */

.listen-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.spotify-logo-link,
.youtube-logo-link {
    display: block;
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
    border-radius: 16px;
}

.spotify-logo-link img,
.youtube-logo-link img {
    width: 104px;
    height: auto;
    display: block;
}

.spotify-logo-link:hover,
.youtube-logo-link:hover {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 12px 30px rgba(213, 97, 41, 0.25);
}

/* =========================================================
   Repertoire Table
   ========================================================= */

.repertoire-table {
    width: 100%;
    max-width: 650px;
    margin: 15px auto 30px auto;
    border-collapse: collapse;
    font-size: 0.95rem;
    line-height: 1.5;
    table-layout: fixed;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(76, 52, 44, 0.12);
}

.repertoire-table th,
.repertoire-table td {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    vertical-align: middle;
    font-weight: 500;
    color: var(--text-color);
}

.repertoire-table th {
    background: linear-gradient(90deg, var(--secondary-color), var(--highlight-color));
    color: var(--white);
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
}

.repertoire-table tbody tr:nth-child(even) {
    background-color: var(--accent-soft);
}

.repertoire-table tbody tr:nth-child(odd) {
    background-color: var(--white);
}

.repertoire-table td:hover {
    background-color: rgba(213, 97, 41, 0.08);
}

/* =========================================================
   Footer
   ========================================================= */

footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3a2620 100%);
    color: var(--accent-soft);
    padding: 32px 0 18px;
    width: 100%;
    margin-top: auto;
    box-sizing: border-box;
    text-align: center;
    border-top: 2px solid var(--primary-color);
}

footer p {
    margin: 0;
    text-align: center;
    width: 100%;
    max-width: none;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-soft);
}

/* =========================================================
   Contact Form
   ========================================================= */

.contact-form {
    max-width: 800px;
    width: 100%;
    margin: 50px auto;
    padding: 28px 26px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(76, 52, 44, 0.15);
    display: flex;
    flex-direction: column;
    gap: 18px;
    border: 1px solid var(--border-color);
}

.contact-form label {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 11px 14px;
    font-family: "Raleway", serif;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-sizing: border-box;
    background: var(--accent-soft);
    color: var(--text-color);
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(213, 97, 41, 0.2);
    background: var(--white);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    padding: 13px 20px;
    font-family: "Quicksand", sans-serif;
    font-size: 0.95rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, filter 0.2s ease-out;
    box-shadow: 0 12px 30px rgba(213, 97, 41, 0.35);
}

.contact-form button:hover {
    transform: translateY(-1px) scale(1.03);
    filter: brightness(1.05);
    box-shadow: 0 18px 40px rgba(213, 97, 41, 0.5);
}

/* =========================================================
   Review Slider
   ========================================================= */


   
.review-slider-container {
    position: relative;
    max-width: 900px;
    width: 90%;
    margin: 40px auto 40px auto;
    box-sizing: border-box;
}



.review-slider-inner {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(76, 52, 44, 0.2);
   .review-slider-inner {
    min-height: 400px; /* or even 500px */
    height: auto;
}
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--white);
    border: 2px solid var(--primary-color);
}

.review-slider-content {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    width: 100%;
}

.review-slide {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.slider-arrow {
    position: absolute;
    top: 88%;
    transform: translateY(-50%);
    background: rgba(76, 52, 44, 0.85);
    border: 1px solid rgba(236, 168, 72, 0.5);
    color: var(--accent-soft);
    font-size: 1.8rem;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 10;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-52%) scale(1.05);
}

.left-arrow  { left: 10px; }
.right-arrow { right: 10px; }

/* =========================================================
   Music List
   ========================================================= */

.music-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 40px auto;
}

.music-list ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.music-list li {
    text-align: center;
    margin-bottom: 20px;
}

.music-list audio {
    display: block;
    width: 300px;
    max-width: 100%;
    accent-color: var(--primary-color);
    border-radius: 8px;
    margin: 10px auto;
    box-shadow: 0 4px 18px rgba(213, 97, 41, 0.2);
}

.music-list audio::-webkit-media-controls-panel {
    background-color: var(--accent-soft);
    border-radius: 8px;
}

@supports (-moz-appearance: none) {
    .music-list audio {
        accent-color: var(--primary-color);
    }
}

.music-list button {
    display: block;
    margin: 10px auto;
}

/* =========================================================
   Listen While You Browse
   ========================================================= */

.listen-music {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--white);
    padding: 30px 20px;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(76, 52, 44, 0.12);
    max-width: 600px;
    border: 1px solid var(--border-color);
}

.listen-music h2 {
    font-family: "Quicksand", sans-serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 12px;
}

.listen-music p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--muted-text);
    margin-bottom: 15px;
}

.listen-music button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    font-family: "Quicksand", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 999px;
    letter-spacing: 0.1em;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 20px rgba(213, 97, 41, 0.3);
}

.listen-music button:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 14px 30px rgba(213, 97, 41, 0.45);
}

/* =========================================================
   Utility
   ========================================================= */

.hide-nav {
    top: -60px;
}

/* =========================================================
   Media Queries
   ========================================================= */

@media (max-width: 768px) {
    nav {
        padding: 0 10px;
        height: 60px;
        justify-content: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .wrapper {
        padding-top: 80px;
        padding-bottom: 40px;
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
    }

    .social-links-container {
        left: 10px;
        gap: 8px;
    }

    .social-icon-link img {
        width: 28px;
        height: 28px;
    }
    .my-approach-wrapper {
    flex-direction: column !important;
    padding: 0.5rem 20px !important;
    gap: 1.5rem !important;
    align-items: center !important;
}

.my-approach-wrapper .image-container5 {
    flex: unset !important;
    width: 100% !important;
    max-width: 280px;
    margin: 0 auto;
    pointer-events: auto;
}

.my-approach-wrapper .image-container5 img {
    width: 100% !important;
}

    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 60px;
        bottom: 0;
        right: 0;
        left: 0;
        background: var(--secondary-color);
        padding-top: 20px;
        box-shadow: 0 18px 30px rgba(76, 52, 44, 0.5);
        animation: slideDown 0.3s ease-in-out;
        gap: 10px;
        height: calc(100vh - 60px);
        overflow-y: auto;
        justify-content: flex-start;
        z-index: 999;
    }

    nav ul.show { display: flex; }

    nav a {
        font-size: 0.95rem;
        padding: 10px;
        width: 100%;
        text-align: center;
    }

    nav ul.show a {
        display: block;
        width: 90%;
        margin: 0 auto;
        padding: 15px 0;
        border-bottom: 1px solid rgba(253, 241, 230, 0.2);
    }

    nav ul.show li:last-child a {
        border-bottom: none;
    }

    .menu-toggle {
        display: flex;
        right: 10px;
    }

    body { padding-top: 60px; }

    h1 { font-size: 2.3rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.3rem; }

    p {
        font-size: 0.95rem;
        margin-bottom: 18px;
        width: calc(100% - 40px);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    ul, ol {
        font-size: 0.95rem;
        margin: 0 auto 15px auto;
        width: calc(100% - 40px);
        max-width: 600px;
    }

    .divider { margin: 30px auto; }

    .cta-item {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .listen-links { gap: 15px; }

    .spotify-logo-link img,
    .youtube-logo-link img { width: 82px; }

    .repertoire-image-container {
        margin-top: 10px;
        margin-bottom: 15px;
        max-width: 95%;
    }

    .review-slider-inner { min-height: 200px; }

    .listen-music {
        max-width: 90%;
        padding: 25px;
    }

    .listen-music h2 { font-size: 1.6rem; }
}

@media (min-width: 769px) {
    nav {
        justify-content: center;
        padding: 14px 20px;
        position: fixed;
        height: auto;
        top: 0;
    }

    .social-links-container { left: 20px; }

    nav ul {
        display: flex !important;
        position: static;
        flex-direction: row;
        width: auto;
        box-shadow: none;
        padding: 0;
        margin: 0;
        justify-content: center;
        height: auto;
        overflow-y: visible;
    }

    nav ul li { margin: 0 12px; }

    .menu-toggle { display: none; }

    .wrapper { padding-top: 80px; }

    body { padding-top: 0; }
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 900px;
    margin: 40px auto;
}

/* Card */
/* =========================================================
   Service Card Styles — Updated Typography
   ========================================================= */

/* Base card transition for smooth hover */
.service-card {
    position: relative;
    padding: 24px;
    border-radius: 20px;
    background: var(--surface-color);
    border: 4px solid var(--primary-color);
    box-shadow: 0 12px 28px rgba(76, 52, 44, 0.06);
    transition: 
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease,
        border-color 0.3s ease,
        background 0.4s ease,   /* 🔥 added for background fade */
        color 0.4s ease;        /* 🔥 added for text fade */
    cursor: pointer;
    overflow: hidden;

    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    text-align: center;
}

/* Hover effects — Dark Orange + White text with fade */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(213, 97, 41, 0.18);
    border-color: var(--accent-soft);

    background: var(--primary-color); /* dark orange */
    color: #ffffff;                    /* text white */
}

/* Ensure text inside also fades to white */
.service-card h4,
.service-card p {
    transition: color 0.4s ease; /* smooth fade for text */
}

.service-card:hover h4,
.service-card:hover p {
    color: #ffffff;
}

/* Glow remains subtle */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at top left, rgba(236, 168, 72, 0.18), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease, background 0.4s ease;
}

.service-card:hover::before {
    opacity: 0.15;
    background: radial-gradient(circle at top left, rgba(236, 168, 72, 0.25), transparent 65%);
}

/* Title */
.service-card h4 {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 1.4rem; /* 🔥 increased from 1.1rem */
    font-weight: 700;
    min-height: 2.6em;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Description */
.service-card p {
    font-size: 1.05rem; /* 🔥 increased from 0.95rem */
    line-height: 1.75;  /* 🔥 increased from 1.6 */
    max-width: 700px;   /* 🔥 prevent cramped text */
    color: var(--text-color);
    opacity: 0.95;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Tablet */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 500px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Service Card Modal
   ========================================================= */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(76, 52, 44, 0.55);
    backdrop-filter: blur(3px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.service-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    z-index: 9999;
    background: var(--surface-color);
    border-radius: 24px;
    padding: 40px 36px;
    max-width: 560px;
    width: 90vw;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(76, 52, 44, 0.3);
    border: 2px solid var(--border-color);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-modal.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.service-modal h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 8px;
    margin-top: 0;
    text-align: center;
}

.service-modal .modal-duration {
    text-align: center;
    font-family: "Quicksand", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-text);
    margin-bottom: 20px;
}

.service-modal .modal-description {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-color);
    margin-bottom: 24px;
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.service-modal .modal-for-you {
    background: var(--accent-soft);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 28px;
}

.service-modal .modal-for-you h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
    text-align: left;
    min-height: unset;
}

.service-modal .modal-for-you ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.service-modal .modal-for-you ul li {
    font-size: 0.97rem;
    line-height: 1.65;
    color: var(--text-color);
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.service-modal .modal-for-you ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.7rem;
    top: 4px;
}

.modal-close {
    display: block;
    margin: 0 auto;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 999px;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(213, 97, 41, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.modal-close:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 16px 35px rgba(213, 97, 41, 0.5);
    filter: brightness(1.05);
}

.credentials-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px; /* slightly more space now they’re bigger */
  margin: 50px 0;
  flex-wrap: wrap;
  text-align: center;
}

.credential-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* ensures vertical centring */
  text-align: center; /* ensures text is centred */
}

/* 🔥 Make both images 200% larger */
.credential-item img {
  max-width: 240px; /* was 120px */
  height: auto;
  margin-bottom: 12px;
  transition: transform 0.2s ease;
}

.credential-item img:hover {
  transform: scale(1.05);
}

/* Ensure text under HCPC is centred and tidy */
.credential-item p {
  margin: 4px 0;
  font-size: 0.95rem;
  text-align: center;
}

/* Click-to-expand credential */
.credential-item2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

/* Image base */
.credential-item2 img {
  max-width: 240px;
  height: auto;
  margin-bottom: 12px;
  cursor: pointer;
  z-index: 1;

  transition: 
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}

/* Subtle hover cue */
.credential-item2 img:hover {
  transform: scale(1.05);
}

/* 🔥 Expanded (tweaked for better UX) */
.credential-item2 img.active {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(3.5); /* 👈 reduced from 5 */
  z-index: 9999;
  box-shadow: 0 25px 80px rgba(0,0,0,0.4);
}

/* Background dim when active */
body.modal-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}

/* Text */
.credential-item2 p {
  margin: 4px 0;
  font-size: 0.95rem;
  text-align: center;
}