/* Grundstil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f7f3;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #557153;
}

p {
    margin-bottom: 1.5rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #7D8F69;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #557153;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

section {
    padding: 80px 0;
}

/* Header och navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 45px;
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #557153;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #557153;
    cursor: pointer;
}

.navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #557153;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-link:hover {
    color: #7D8F69;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #7D8F69;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero-sektion */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    background-color: #f9f7f3;
    margin-top: 75px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.8);
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
    margin-left: 10%;
    position: relative;
    z-index: 4;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #557153;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

/* Om oss-sektion */
.about {
    background-color: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #A9C27A;
}

/* Tjänster-sektion */
.services {
    background-color: #f5f0e5;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(169, 194, 122, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background-color: rgba(169, 194, 122, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.services-title {
    text-align: center;
    margin-bottom: 3rem;
}

.services-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #A9C27A;
}

/* Fördelar-sektion (fullbredd) */
.benefits {
    padding: 0;
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1511823794984-005481181653?q=80&w=1887&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.6);
    z-index: 0;
}

.benefits-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefits-title {
    color: #557153;
    margin-bottom: 2rem;
}

.benefits-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8f2d7;
    border-radius: 50%;
    margin-bottom: 15px;
    font-size: 24px;
    color: #557153;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background-color: #557153;
    color: white;
    transform: scale(1.1);
}

.benefit-text {
    font-weight: 600;
    color: #557153;
}

/* Ört-sektion */
.herbs {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.herbs-header {
    text-align: center;
    margin-bottom: 3rem;
}

.herbs-description {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3rem;
}

.herbs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.herb-card {
    background-color: #f9f7f3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.herb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.herb-image {
    height: 180px;
    overflow: hidden;
}

.herb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.herb-card:hover .herb-image img {
    transform: scale(1.1);
}

.herb-content {
    padding: 20px;
}

.herb-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #557153;
}

.herb-info {
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
}

.herb-card.active .herb-info {
    height: auto;
    margin-top: 15px;
}

.herb-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.herb-icon {
    background-color: #e8f2d7;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
}

.herb-card.active .herb-icon {
    transform: rotate(180deg);
    background-color: #557153;
    color: white;
}

/* Testimonial-sektion */
.testimonials {
    background-color: #f5f0e5;
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}

.testimonial-slide {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 10px;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    position: relative;
    padding: 20px 0;
    font-style: italic;
    color: #555;
}

.testimonial-content::before, .testimonial-content::after {
    content: '"';
    font-size: 50px;
    color: #e1e9d8;
    line-height: 0;
    position: absolute;
}

.testimonial-content::before {
    top: 0;
    left: -20px;
}

.testimonial-content::after {
    bottom: 0;
    right: -20px;
    transform: rotate(180deg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-name {
    font-weight: 600;
    color: #557153;
}

.testimonial-author-title {
    font-size: 14px;
    color: #777;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    color: #557153;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-btn:hover {
    background-color: #557153;
    color: white;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #557153;
    transform: scale(1.3);
}

/* CTA-sektion */
.cta {
    background: linear-gradient(135deg, #557153, #7D8F69);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.btn-light {
    background-color: white;
    color: #557153;
}

.btn-light:hover {
    background-color: #e8f2d7;
    color: #557153;
}

/* FAQ-sektion */
.faq {
    background-color: #fff;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    background-color: #f9f7f3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #e8f2d7;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background-color: #557153;
    color: white;
}

.faq-answer {
    padding: 0 20px;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.faq-item.active .faq-answer {
    height: auto;
    padding: 20px;
}

/* Kontakt-sektion */
.contact {
    background-color: #f5f0e5;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: #e8f2d7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
    color: #557153;
    flex-shrink: 0;
}

.contact-text {
    line-height: 1.5;
}

.contact-text strong {
    display: block;
    margin-bottom: 5px;
    color: #557153;
}

.map {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #557153;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #7D8F69;
    outline: none;
    box-shadow: 0 0 0 3px rgba(125, 143, 105, 0.2);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #557153;
    color: white;
    padding: 50px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.footer-about p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: white;
    color: #557153;
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #A9C27A;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 12px;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Responsiv design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-container {
        flex-direction: column;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .navigation {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }

    .navigation.active {
        height: auto;
    }

    .nav-menu {
        flex-direction: column;
        padding: 20px;
        align-items: center;
        width: 100%;
    }

    .nav-item {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 12px 0;
    }

    .hero-content {
        margin-left: 0;
        max-width: 100%;
        padding: 2rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .benefits {
        height: auto;
    }

    .benefits-content {
        margin: 50px 20px;
    }

    .testimonials-carousel {
        padding: 0 30px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .about-image {
        margin-top: 20px;
    }

    .benefits-content {
        padding: 1.5rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .herb-card {
        margin-bottom: 20px;
    }

    .testimonial-slide {
        padding: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Animationer */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Reveal Animation */
.reveal {
    position: relative;
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
}

.reveal.active.from-left {
    transform: translateX(0);
}

.from-left {
    transform: translateX(-100px);
}

.reveal.active.from-right {
    transform: translateX(0);
}

.from-right {
    transform: translateX(100px);
}

.reveal.active.from-bottom {
    transform: translateY(0);
}

.from-bottom {
    transform: translateY(100px);
}

.text-wrapper h2, .text-wrapper h3{
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-wrapper h1{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}
.text-wrapper h2{
    font-size: 1.5rem;
}