/* SPLOŠNE NASTAVITVE */
:root {
    --primary-color: #4caf50; /* Močna zelena */
    --secondary-color: #ffc107; /* Topla rumena */
    --text-dark: #212121; /* Skoraj črna */
    --text-light: #fff;
    --bg-light: #f9fbe7; /* Zelo svetlo rumeno-zeleno ozadje */
    --bg-dark: #e8f5e9; /* Svetlo zeleno ozadje za kontrast */
    --accent-color: #2196f3; /* Živahna modra */
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: "Roboto", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

/* GUMBI (BUTTONS) */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* ZGORNJI DEL (HERO SECTION) */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--bg-dark);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.hero-content {
    background: transparent;
    padding: 2rem;
    border-radius: 15px;
    max-width: 700px;
    z-index: 2;
    margin-top: -250px;
    position: relative;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
}

.cta-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Slika v Hero sekciji */
.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: auto;
    z-index: 1;
}

.hero-image-overlay img {
    width: 100%;
    height: auto;
    display: block;
}

/* SEKCIJE */
section {
    padding: 80px 20px;
    text-align: center;
}

.how-it-works,
.our-promise {
    background-color: var(--bg-light);
}

.how-it-works h2,
.our-promise h2,
.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.how-it-works > p,
.gallery > p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.feature-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.promise-content {
    max-width: 800px;
    margin: 0 auto;
}

.promise-list {
    margin-top: 2rem;
    text-align: left;
}

.promise-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.promise-list img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.for-therapists {
    background-color: var(--bg-dark);
    color: var(--text-dark);
}

.therapist-content {
    max-width: 700px;
    margin: 0 auto;
}

/* SEKCIJA: GALERIJA */
.gallery {
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* PRILAGODITVE ZA MOBILNE NAPRAVE */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content h2 {
        font-size: 1.2rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-image-overlay img {
        width: 80%;
        margin-top: 20px;
    }
}
