/* ------------------------------------
   GLOBAL STYLES & VARIABLES
------------------------------------ */
:root {
    --pink: #f8d8e8;
    --softpink: #ffeaf4;
    --rose: #ffb6d5;
    --text: #444;
    --primary: #7b255c;
    --white: #ffffff;
}

body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    color: #1f3d36;
}


/* ------------------------------------
   HEADER
------------------------------------ */
header {
    background: var(--white);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

header .logo {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary);
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
}

/* Hamburger hidden by default (desktop) */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary);
}

/* ----- MOBILE HEADER ------ */
@media (max-width: 768px) {

    header {
        padding: 15px 20px;
    }

    nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background: white;
        flex-direction: column;
        padding: 15px 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-radius: 10px;
        z-index: 999;
        width: 70%;
    }

    nav.show {
        display: flex;
    }

    nav a {
        margin: 10px 0;
        font-size: 18px;
        padding: 10px 0;
    }

    .hamburger {
        display: block;
    }
}


/* ------------------------------------
   HERO SECTION
------------------------------------ */
.about-hero {
    padding: 80px 5%;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-img {
    width: 40%;
    border-radius: 12px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
}

.hero-text h3 {
    color: #b48c78;
    letter-spacing: 2px;
    font-size: 30px;
}

.hero-text h1 {
    font-size: 42px;
    margin-top: 20px;
}

.hero-text p {
    text-align: justify;
}

.quote-center {
    text-align: center;
    margin: 50px 0 20px;
    color: rgb(80, 66, 183);
    font-style: italic;
}

/* Mobile Hero */
@media (max-width: 850px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-img {
        width: 90%;
    }
}


/* ------------------------------------
   TIMELINE
------------------------------------ */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #e6dacb;
}

.timeline__item {
    position: relative;
    width: 44%;
    min-height: 120px;
}

.timeline__item.left {
    left: 0;
}

.timeline__item.right {
    left: 56%;
}

.timeline__content {
    background: #fff;
    padding: 18px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    margin: 20px 0;
    position: relative;
}

/* DOTS */
.timeline__item.left .timeline__content::after,
.timeline__item.right .timeline__content::after {
    content: '';
    position: absolute;
    top: 32px;
    width: 24px;
    height: 24px;
    background: #d2b9a3;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.timeline__item.left .timeline__content::after {
    right: -32px;
}

.timeline__item.right .timeline__content::after {
    left: -32px;
}

/* ------- MOBILE TIMELINE -------- */
@media (max-width: 800px) {

    .timeline {
        max-width: 97%;
    }

    .timeline__item {
        width: 95%;
        left: 0 !important;
        text-align: left;
        margin: 40px 0;
    }

    .timeline::before {
        left: 32px;
        transform: none;
    }

    .timeline__content {
        margin-left: 40px;
    }

    .timeline__item .timeline__content::after {
        left: -38px;
        right: auto;
    }
}


/* ------------------------------------
   WHY CHOOSE THERAPY SECTION
------------------------------------ */
.why-choose {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 5%;
    margin-top: 40px;
}

.why-left img {
    width: 420px;
    border-radius: 12px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
}

.why-right {
    max-width: 480px;
    text-align: justify;
}

.why-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
}

/* Mobile Why Choose */
@media (max-width: 850px) {
    .why-choose {
        flex-direction: column;
        text-align: center;
    }

    .why-left img {
        width: 90%;
    }
}


/* ------------------------------------
   FOOTER
------------------------------------ */
.main-footer {
    background: #111;
    color: #eee;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left,
.footer-middle,
.footer-right {
    flex: 1;
    min-width: 250px;
}

.footer-container h2,
.footer-container h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-middle ul,
.footer-right ul {
    list-style: none;
    padding: 0;
}

.footer-middle ul li,
.footer-right ul li {
    margin-bottom: 10px;
}

.footer-middle a,
.footer-right a {
    color: #eee;
    text-decoration: none;
    transition: 0.2s;
}

.footer-middle a:hover,
.footer-right a:hover {
    color: #ffcc66;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
    border-top: 1px solid #333;
}
