.popup .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

/* Когда меню активно — разворачиваем */
.popup.active .content {
    max-height: 500px;
    /* достаточно больше, чем высота меню */
}

.nav {
    background: rgb(27, 38, 44);
    color: rgb(255, 255, 255);
    /* height: 70px; */
    /* line-height: 70px; */
    font-weight: 600;
    letter-spacing: 1px;




    .fw {
        display: grid;
        grid-template-columns: 1fr auto auto;
        align-items: center;
        gap: 7px;


    }

    img {
        height: 70px;
        width: 70px;
        border-radius: 50%;

    }

    li {
        display: inline-block;
        padding: 0px 15px;
        font-size: 17px;


    }

    .burger_wrapper {
        display: none;

        .burger_menu {
            display: none;
        }
    }
}

.header {
    .img {
        background-image: url(../res/img/kultura.jpg);
        background-position: center;
        background-size: cover;
        height: 400px;
    }

    .text {
        background: rgb(249, 249, 249);
        max-width: 780px;
        margin: auto;
        padding: 60px;
        border-radius: 25px;
        text-align: center;
        position: relative;
        bottom: 30px;
    }

    h2 {
        font-size: 48px;
        font-weight: 400;
    }


}

.Yulia {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.Yulia img {
    border-radius: 40px;
    height: 600px;
    width: 400px;
    transition: transform 0.4s ease;
    cursor: pointer;
    margin-bottom: 40px;
    transition: transform 0.5s ease;
}

.Yulia img:hover {
    transform: scale(1.1) rotate(5deg);
}

.arrow {
    font-size: 70px;
    cursor: pointer;
}


.harmonien {
    padding: 100px 0;
    background-image: url(../res/img/hor.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 20%;
    padding: 100px;

    .text {
        background: rgba(255, 255, 255, 0.7);
        max-width: 510px;
        padding: 45px 60px;
    }

    h2 {
        font-size: 48px;
        font-weight: 600;
    }

    p {
        font-size: 19px;
    }
}

.vart {

    img {

        width: 606px;
    }

    h2 {
        font-size: 45px;
        font-weight: 600;
    }

    p {
        margin-top: 20px;
        font-size: 20px;
    }

    .fw {
        padding: 100px 0;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 48px;
    }
}

.syng {
    background: rgb(249, 249, 249);
    padding: 100px 0;

    h2 {
        font-size: 32px;
        text-align: center;
        padding-top: 40px;
        margin-bottom: 20px;
    }

    img {
        width: 200px;
        border-radius: 3px;
    }

    .text h3 {
        color: rgb(244, 101, 48);
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .prise {
        color: rgb(244, 101, 48);
        font-size: 20px;
        margin-top: auto;
        font-weight: 600;
    }

    li {
        display: grid;
        grid-template-columns: auto 1fr auto;
        background-color: rgb(255, 255, 255);
        border-radius: 8px;
        padding: 24px;
        gap: 30px;
    }

    .text {
        margin-top: 5px;
    }

    .lien {
        margin-top: 15px;
    }

    ul {

        margin: auto;
    }

    button {
        font-size: 23px;
        color: rgb(0, 0, 0);
        font-weight: 600;
        margin-top: auto;
    }
}

.oppdrag {
    text-align: center;
    padding: 100px 0;

    h2 {
        font-size: 32px;
        text-align: center;
        margin-bottom: 20px;
    }

    li {
        list-style: none;
    }

    img {
        height: 132px;
        width: 132px;
        border-radius: 50%;
        margin: 5px 5px 22px;
    }

    ul {
        display: grid;
        grid-template-columns: 1fr 1fr;

    }

    .text h3 {
        font-size: 20px;
        font-weight: 600;
        margin: 10px 0;
    }

    .text p {
        font-size: 16.5px;
        text-align: center;
    }
}



.konserter {
    background: #f9f9f9;
    padding: 100px 0;
    text-align: center;

    h2 {
        font-size: 32px;
        font-weight: 400;
        color: #000;
        margin-bottom: 10px;
    }

    ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        padding: 0;
        margin: 0;
    }

    li {
        list-style: none;
    }
    .card {
        position: relative;
        width: 200px;
        border-radius: 18px;
        overflow: hidden;
        background: #fff;
        border-bottom: 3px solid #f46530;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    }

    img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .date {
        position: absolute;
        top: 12px;
        left: 12px;
        background: #000;
        color: #fff;
        width: 45px;
        height: 55px;
        border-radius: 6px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .date span {
        font-size: 18px;
        font-weight: 700;
        line-height: 1;
    }

    .date small {
        font-size: 12px;
        opacity: 0.9;
    }

    p {
        height: 90px;
        background: #fff;
        color: #f46530;
        font-size: 20px;
        font-weight: 400;
        padding: 0px 0 0;
        margin: 0;
    }
}

.oss {
    padding: 100px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
    padding: 100px 115px;

    img {
        width: 450px;
        height: 450px;
        border-radius: 50%;
    }

    h2 {
        font-size: 45px;
        font-weight: 600;
    }

    p {
        margin-top: 20px;
        font-size: 20px;
    }

    .pi {
        font-size: 30px;
        font-weight: 400;
    }

}

.testimonial-section {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    position: relative;

    h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .slider__wrapper {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
    }

    .slider {

        overflow: hidden;

        .name {
            color: #f36b2a;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .slides {
            display: flex;
            transition: transform 1s ease;
        }

        .slide {
            flex: 0 0 100%;
        }

        .slide.active {
            opacity: 1;
            transform: scale(1);
        }
    }

    .image-wrapper {
        position: relative;
        display: inline-block;
        margin-bottom: 20px;

        img {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
    }

    .quote-icon {
        position: absolute;
        bottom: 0;
        right: 0;
        transform: translate(30%, 30%);
        background: #f36b2a;
        color: #fff;
        border-radius: 50%;
        font-size: 30px;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }




    .role {
        color: #555;
        font-size: 16px;
    }

    .stars {
        color: #f6b400;
        font-size: 22px;
        margin: 10px 0;
    }

    .prev,
    .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        font-size: 32px;
        color: #777;
        cursor: pointer;
        transition: color 0.3s;
        z-index: 10;
    }

    .prev:hover,
    .next:hover {
        color: #f36b2a;
    }

    .prev {
        left: -70px;
    }

    .next {
        right: -70px;
    }
}

.vare {
    text-align: center;
    padding: 80px 0;
    background-color: #fff;

    h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .fw {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .fw img {
        width: 280px;
        height: 250px;
        border: 1px solid #ddd;
        padding: 20px;
        background-color: #fff;
        transition: transform 0.3s ease;
    }

    .fw img:hover {
        transform: scale(1.05);
    }
}


.contact {
    text-align: center;
    padding: 80px 0;
    background-color: #fafafa;
    font-family: 'Georgia', serif;

    h2 {
        font-size: 32px;
        color: #000;
        margin-bottom: 10px;
    }

    .social-links {
        margin-top: 15px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .social-links a {
        font-size: 22px;
        color: #333;
        margin-right: 15px;
        transition: 0.3s ease;
    }

    .social-links a:hover {
        color: #e35b2f;
    }

    .contact-info {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 60px;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
        text-align: left;

        p {
            margin-bottom: 10px;
        }

        iframe {
            width: 500px;
            height: 300px;
            border: 0;
            border-radius: 6px;
        }

    }

    .info-text {
        max-width: 400px;
        font-size: 16px;
        line-height: 1.6;
        color: #333;

        a {
            text-decoration: none;
        }
    }


}


.pricing {
    text-align: center;
    padding: 80px 0;
    background-color: #fafafa;


    h2 {
        font-size: 32px;
        color: #000;
        margin-bottom: 10px;
    }

    .price-right button {
        background-color: rgb(255, 115, 0);
        color: rgb(0, 0, 0);
        height: 40px;
        border-radius: 20px;
        font-weight: 600;
    }

    .price-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 3px solid #e35b2f;
        border-radius: 10px;
        padding: 30px 40px;
        margin: 20px auto;
        max-width: 1300px;
        background-color: #fff;
        flex-wrap: wrap;
        font-size: 20px;
        font-weight: 600;
    }

    .price-left {
        text-align: left;
        min-width: 200px;
    }

    .price-left h3 {
        font-size: 20px;
        font-weight: bold;
        color: #000;
    }

    .price-left .popular {
        font-size: 12px;
        color: #888;
        margin: 5px 0;
    }

    .price-left h1 {
        font-size: 40px;
        color: #000;
        margin: 5px 0;
    }

    .price-left .period {
        font-size: 20px;
        color: #888;
    }
}

.container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;


    h1 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .divider {
        width: 40px;
        height: 3px;
        background-color: #e76f51;
        border: none;
        margin: 0.5rem auto 2rem;
    }

    h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
        color: #111;
    }

    p {
        margin-bottom: 1rem;
    }

    ul {
        margin-left: 20px;
        margin-bottom: 1rem;
    }

    a {
        color: #e76f51;
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }


}

footer {
    background: #f5f5f5;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #333;
    border-top: 1px solid #ddd;

    .footer-nav {
        margin-top: 10px;
    }

    .footer-nav a {
        margin: 0 10px;
        color: #111;
        font-size: 0.9rem;
    }

    .footer-nav a:hover {
        color: #e76f51;
    }

}


.Julekonserten {

    h1 {
        font-size: 42px;
        text-align: center;
    }

    h2 {
        font-size: 30px;
        text-align: center;
        color: red;
    }

    .cards {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
    }





    .card {
        background: #fff;
        border-radius: 24px;
        padding: 40px 24px 50px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        position: relative;
    }


    .card h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }


    .card p {
        font-size: 15px;
        line-height: 1.5;
        color: #333;
    }


    .card span {
        display: block;
        font-size: 14px;
        color: #777;
    }


    .price {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: #ff5a2a;
        color: #fff;
        padding: 8px 18px;
        border-radius: 20px;
        font-size: 15px;
    }


    .highlight .price {
        background: #000;
    }

    .friend .price {
        background: #2f7d32;
    }

    .free .price {
        background: #505050;
    }

    .yupi .price {
        background: rgb(255, 0, 0);
    }

    .late .price {
        background: rgb(0, 42, 255);
    }
}