
:root {
    --primary-color: #6b4a5a;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}
.container {
    width: 1440px;
}

/* ====== Hero ====== */
.hero {
    height: 100vh;
    background: url('../images/hero.jpg') no-repeat center center/cover;
    position: relative;
}
.hero .container {
    position: relative;
    z-index: 2;
}

/* TEXT */
.physiosvg {
    width: 120%;
    height: auto;
    transform: translateY(-40px);
}
.hero-bold {
    font-weight: bold;
    font-size: 32px;
    color: var(--primary-color);
}

.hero-text {
    color: var(--primary-color);
    font-size: 25px;
    width: 100%;
}

/* BUTTON */
.hero-btn {
    margin-top: 20px;
    border: 4px solid #B8ADA7;
    color: var(--primary-color);
    font-weight: bold;
    background-color: white;
    width: 279px;
    height: 58px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    text-decoration: none;
}

.hero-btn:hover {
    background: var(--primary-color);
    color: white;
}


/* ====== Therapy Section ====== */
.therapy-section {
    background: 
        url('../images/therapy-bg.png') no-repeat bottom center,
        var(--primary-color);

    background-size: contain; /* ili cover – zavisi od slike */

    color: white;
    padding: 80px 0;
}

/* TITLE */
.therapy-title {
    font-size: 56px;
    font-weight: 600;
    font-size: 112px;
}

.therapy-subtitle {
    font-size: 58px;
    margin-bottom: 30px;
    transform: translateY(-15px);
}

/* TEXT */
.therapy-text {
    width: 100%;
    font-size: 25px;
    margin-bottom: 50px;
    line-height: 1.6;
}

.therapy-img {
    height: 432px;
    width: 100%;
    object-fit: cover;
}


/* ===================== */
/* ABOUT SECTION */
/* ===================== */

.about-section {
    background: #f5f2ef;
    padding: 80px 0;
}

/* TITLE */
.about-title {
    font-size: 112px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* TEXT */
.about-text {
    font-size: 18px;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 600px;
}

/* LINK DESNO */
.about-link {
    font-size: 69px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block; /* 👈 BITNO */
}

.about-link:hover {
    text-decoration: underline;
}

/* ====== PART 2 BACKGROUND ====== */

.about-part-2 {
    position: relative;
   background: url('../images/therapy-bg.png') no-repeat bottom center;
    background-size: cover;
    padding-bottom: 150px;
    padding-top: 100px;
    overflow: hidden;
}

/* CONTENT IZNAD */
.about-part-2 .container {
    position: relative;
    z-index: 2;
}


