/* Uvoz Google Pisav */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* Uvoz Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Navigacijska vrstica */
header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px;
}

.logo {
    width: 140px; /* Zmanjšana velikost logotipa */
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #4CAF50;
}

nav a.active {
    color: #4CAF50;
    font-weight: 700;
}

/* Hero sekcije */
.hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    animation: fadeIn 2s ease-in; /* Dodana animacija */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.6); /* Prilagojena senčenost */
    padding: 20px; /* Zmanjšan padding */
    border-radius: 10px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
    color: #ddd;
}

/* Specifične hero sekcije za različne strani */
.hero-contact {
    background-image: url('images/hero-contact.jpg'); /* Poskrbite, da ta slika obstaja */
}

.hero-about-us {
    background-image: url('images/hero-about-us.jpg'); /* Poskrbite, da ta slika obstaja */
}

.hero-services {
    background-image: url('images/hero-services.jpg'); /* Poskrbite, da ta slika obstaja */
}

.hero-how-it-works {
    background-image: url('images/hero-how-it-works.jpg'); /* Poskrbite, da ta slika obstaja */
}

.hero-testimonials {
    background-image: url('images/hero-testimonials.jpg'); /* Poskrbite, da ta slika obstaja */
}

.hero-home {
    background-image: url('images/hero1.png'); /* Poskrbite, da ta slika obstaja */
    background-position: center center;
    background-size: cover;
}

/* Gumbi */
.button {
    background-color: #4CAF50;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.button:hover {
    background-color: #45a049;
}

.highlighted-button {
    background-color: #fff;
    color: #4CAF50;
    border: 2px solid #4CAF50;
}

.highlighted-button:hover {
    background-color: #4CAF50;
    color: #fff;
}

.button-small {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 25px;
    margin-top: 15px;
}

/* Glavna vsebina */
main {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Sekcija "O nas" */
.about-us {
    text-align: center;
    margin-bottom: 60px;
}

.about-us h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #4CAF50;
}

.about-us p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Sekcija "Zakaj izbrati nas" */
.why-choose-us {
    background-color: #f3f9f3;
    padding: 60px 20px;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #4CAF50;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.feature {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
}

.feature-icon {
    font-size: 80px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 16px;
    line-height: 1.5;
}

/* Sekcija "Učinki bioresonančne zdravilske metode" */
.effects {
    background-color: #e8f5e9; /* Svetlo zeleno ozadje */
    padding: 60px 20px;
    text-align: center;
}

.effects h2 {
    font-size: 36px;
    color: #4CAF50;
    margin-bottom: 40px;
}

.effects .intro {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.effects-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.effect-block {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #c8e6c9; /* Zelena barva za vsak blok */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.effect-icon {
    font-size: 60px;
    color: #388E3C;
    margin-bottom: 20px;
}

.effect-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2E7D32;
}

.effect-block ul {
    list-style: disc;
    text-align: left;
    padding-left: 20px;
}

.effect-block ul li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.effects p:last-of-type {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 40px;
}

/* Sekcija "Zakaj Smo Unikatni" */
.why-unique {
    background-color: #f3f9f3; /* Enako ozadje kot "Zakaj izbrati nas" */
    padding: 60px 20px;
    text-align: center;
}

.why-unique h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #4CAF50;
}

.unique-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.unique-features .feature {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
}

.unique-features .feature-icon i {
    font-size: 80px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.unique-features .feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.unique-features .feature p {
    font-size: 16px;
    line-height: 1.5;
}

/* Sekcija "Kontakt" */
.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 36px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-details p {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-details a {
    color: #4CAF50;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Kontaktni obrazec */
.contact-form-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-form-section h2 {
    font-size: 36px;
    color: #4CAF50;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    align-self: center;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
}

/* Sporočila */
.success-message {
    font-size: 18px;
    color: #4CAF50;
    text-align: center;
    margin-bottom: 20px;
}

.error-message {
    font-size: 18px;
    color: #f44336;
    text-align: center;
    margin-bottom: 20px;
}

/* Sekcija "Call to Action" */
.call-to-action {
    background-color: #4CAF50;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    border-radius: 20px;
    margin: 60px 20px;
}

.call-to-action h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

/* Sekcija "Storitve" */
.services {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin: 60px 0;
}

.service {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.service-icon {
    font-size: 80px;
    color: #4CAF50;
    flex-shrink: 0;
}

.service-content {
    flex: 1 1 400px;
}

.service-content h2 {
    font-size: 32px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 10px; /* Spremenjeno iz 20px v 10px */
}

.service-content ul li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.service-content .button {
    margin-top: 15px; /* Dodana razdalja nad gumbom */
}

/* Sekcija "Kako Deluje" */
.steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin: 60px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #4CAF50;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h2 {
    font-size: 28px;
    color: #4CAF50;
    margin-bottom: 15px;
}

.step-content p {
    font-size: 18px;
    line-height: 1.6;
}

/* Sekcija "Mnenja Strank" */
.testimonials {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    background-color: #f3f9f3;
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.testimonial::before {
    content: '“';
    font-size: 80px;
    color: #4CAF50;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial blockquote {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.testimonial .author {
    margin-top: 15px;
    font-weight: bold;
    text-align: right;
    color: #333;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 30px 20px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

footer nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 0;
}

footer nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

footer nav a:hover {
    color: #4CAF50;
}

/* Odzivnost za mobilne naprave */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .how-we-treat h2,
    .mora-section h2,
    .mora-nova-section h2,
    .mora-nova-details h2,
    .our-story h2,
    .vision-mission h2,
    .why-choose-us h2,
    .why-unique h2,
    .contact-info h2,
    .contact-form-section h2,
    .services h2,
    .step-content h2,
    .testimonials h2,
    .effects h2 {
        font-size: 28px;
    }

    .call-to-action h2 {
        font-size: 24px;
    }

    .call-to-action {
        margin: 40px 0;
    }

    .features,
    .effects-content,
    .unique-features {
        flex-direction: column;
        align-items: center;
    }

    .feature,
    .effect-block,
    .unique-features .feature {
        max-width: 100%;
    }

    .service {
        flex-direction: column;
        align-items: center;
    }

    .service-content h2,
    .step-content h2 {
        text-align: center;
    }

    .step {
        flex-direction: column;
        align-items: center;
    }

    .step-number {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .testimonial {
        padding: 20px;
    }

    .testimonial::before {
        font-size: 60px;
    }

    .service-box,
    .new-service-box {
        width: 100%;
    }

    .new-service-box {
        width: 100%;
    }
}

/* DODANO ZA HAMBURGER MENI */

/* Hamburger ikona (prikaže se na mobilnih napravah) */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

/* Mobilni meni - privzeto skrit, prihaja iz desne strani */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #4CAF50;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    transition: right 0.3s ease;
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

.mobile-menu .close-btn {
    text-align: right;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 20px;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.mobile-menu ul li a:hover {
    text-decoration: underline;
}

.mobile-menu.open {
    right: 0;
}

@media (max-width: 768px) {
    nav ul {
        display: none; /* Glavni meni skrijemo na mobilnih napravah */
    }

    .hamburger {
        display: block; /* Prikažemo hamburger gumb */
    }
}
