* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}
body{
    overflow-x: hidden;
}

/* BANNER */

#banner {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,150,136,0.75)), url(banner.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    min-height: 700px;
    position: relative;
}

.logo {
    width: 170px;
    position: absolute;
    top: 4%;
    left: 8%;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.25));
}

.banner-text {
    text-align: center;
    color: #fff;
    padding-top: 180px;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.banner-text h1 {
    font-size: 120px;
    line-height: 1;
    font-family: "Kaushan Script", cursive;
    animation: fadeIn 1.8s ease;
    text-shadow: 0 8px 30px rgba(0,0,0,0.28);
}

@keyframes fadeIn{
    from{
        opacity: 0;
        transform: translateY(30px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-text p {
    margin-top: 22px;
    font-size: 26px;
    font-style: italic;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 4px 18px rgba(0,0,0,0.22);
}

.banner-btn{
    margin-top: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.banner-btn a{
    text-decoration: none;
    padding: 16px 34px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    transition: all .35s ease;
    letter-spacing: .4px;
    white-space: nowrap;
    min-width: 220px;
    text-align: center;
}

/* buton principal */
.banner-btn a:first-child{
    background: #009688;
    color: #fff;
    border: 1px solid #009688;
    box-shadow: 0 14px 30px rgba(0,150,136,0.35);
}

.banner-btn a:first-child:hover{
    background: #00796b;
    border-color: #00796b;
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0,150,136,0.42);
}

/* buton secundar */
.banner-btn a:last-child{
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
}

.banner-btn a:last-child:hover{
    background: #fff;
    color: #009688;
    transform: translateY(-4px);
    border-color: #fff;
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

/* SIDE NAV */

#sideNav {
    width: 260px;
    height: 100vh;
    position: fixed;
    right: -260px;
    top: 0;

    background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
        url("tunsoare1.jpg");

    background-size: cover;
    background-position: center;

    z-index: 1000;
    transition: 0.45s ease;
    padding-top: 90px;
}

nav ul {
    padding: 0;
    margin: 0;
}

nav ul li {
    list-style: none;
    margin: 28px 30px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background: rgba(255,255,255,0.08);
    padding-left: 16px;
}

#menuBtn {
    width: 52px;
    height: 52px;
    background: #009688;
    text-align: center;
    position: fixed;
    right: 30px;
    top: 20px;
    border-radius: 8px;
    z-index: 1001;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

#menuBtn img {
    width: 20px;
    margin-top: 16px;
}
#sideNav::before{
    content:"MENU";
    position:absolute;
    top:25px;
    left:30px;
    font-size:14px;
    letter-spacing:3px;
    color:rgba(255,255,255,0.6);
}

/* TITLE */

.title-text{
    text-align: center;
    padding-bottom: 70px;
}

.title-text p{
    margin: auto;
    font-size: 20px;
    color: #009688;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
    letter-spacing: 1px;
}

.title-text p::after{
    content: '';
    width: 50px;
    height: 35px;
    background: linear-gradient(#019587, #fff);
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}

.title-text h1{
    font-size: 50px;
}

/* FEATURE */

#feature{
    width: 100%;
    padding: 110px 0;

    background:
        linear-gradient(rgba(255,255,255,0.80), rgba(255,255,255,0.92)),
        url("atmosfera2.jpg");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.feature-box{
    width: 80%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.features{
    flex: 1 1 520px;
}

.feature-item{
    background: rgba(255,255,255,0.9);
    padding: 28px 25px;
    border-radius: 16px;
    margin-bottom: 22px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    backdrop-filter: blur(6px);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover{
transform: translateY(-8px);
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.features h1{
    text-align: left;
    margin-bottom: 14px;
    font-weight: 600;
    font-size: 30px;
    color: #009688;
}

.features-desc{
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.feature-icon .fa{
    width: 58px;
    height: 58px;
    font-size: 24px;
    line-height: 58px;
    text-align: center;
    border-radius: 12px;
    color: #009688;
    border: 1px solid #009688;
    background: rgba(0,150,136,0.06);
    flex-shrink: 0;
}

.feature-text p{
    padding: 0;
    text-align: left;
    color: #444;
    line-height: 1.8;
    font-size: 16px;
}

.features-img{
    flex: 1 1 420px;
    text-align: center;
}

.features-img img{
    width: 100%;
    max-width: 430px;
    height: 650px;
    object-fit: cover;
    border-radius: 20px;

    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}
/* SERVICE */

#service{
    width: 100%;
    padding: 90px 0;
    background: #f8f8f8;
}

.service-box{
    width: 80%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 28px;
}

.single-service{
    flex: 1 1 calc(50% - 14px);
    min-width: 280px;
    height: 360px;
    text-align: center;
    border-radius: 18px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    cursor: pointer;
}

.single-service img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.single-service:hover img{
    transform: scale(1.08);
}

.overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,150,136,0.18));
    opacity: 0;
    transition: 0.5s ease;
    pointer-events: none;
}

.single-service:hover .overlay{
    opacity: 1;
}

.service-desc{
    width: 80%;
    position: absolute;
    left: 50%;
    bottom: 30px;
    opacity: 0;
    transform: translateX(-50%) translateY(25px);
    transition: 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.single-service:hover .service-desc{
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.service-desc h3{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-desc hr{
    background: rgba(255,255,255,0.9);
    height: 2px;
    border: 0;
    margin: 12px auto 15px;
    width: 65%;
}

.service-desc p{
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
}

/* PRICING */

#pricing{
    width: 100%;
    padding: 80px 0;
    background: #fff;
}

.pricing-box{
    width: 80%;
    max-width: 900px;
    margin: auto;
}

.pricing-card{
    background: #f8f8f8;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.price-item{
    position: relative;
    border-bottom: 1px solid #ddd;
    padding: 20px 140px 20px 0;
    min-height: 90px;
}

.price-item:last-child{
    border-bottom: none;
}

.price-item h3{
    font-size: 20px;
    color: #222;
    margin-bottom: 5px;
}

.price-item p{
    color: #777;
    font-size: 14px;
}

.price-item span{
    position: absolute;
    top: 20px;
    right: 0;
    font-size: 18px;
    font-weight: 600;
    color: #009688;
}

.price-item small{
    display: block;
    margin-top: 5px;
    color: #999;
    font-size: 13px;
}

/* TESTIMONIAL */

#testimonial{
    width: 100%;
    padding: 70px 0;
}

.testimonial-row{
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial-col{
    flex: 1 1 30%;
    padding: 10px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 10px 20px 3px rgba(0,150,136,0.35);
    cursor: pointer;
    transition: transform .5s;
    background: #fff;
}

.testimonial-col p{
    font-size: 14px;
}

.user{
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.user img{
    width: 40px;
    margin-right: 20px;
    border-radius: 3px;
}

.user-info .fab{
    margin-left: 10px;
    color: #E4405F;
    font-size: 20px;
}

.user-info small{
    color: #009688;
}

.testimonial-col:hover{
    transform: translateY(-7px);
}

.testimonial-cta{
    width: 80%;
    margin: 40px auto 0;
    text-align: center;
}

.testimonial-cta p{
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
}

/* FOOTER */

#footer{
    width: 100%;
    padding: 110px 0 40px;
    background: #efefef;
    position: relative;
    overflow: hidden;
}

/* container principal */

.footer-row{
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* carduri program + contact */

.footer-left,
.footer-right{
    flex: 1 1 420px;
    max-width: 520px;
    padding: 30px 34px;
    background: rgba(255,255,255,0.75);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    backdrop-filter: blur(6px);
}

.footer-right{
    text-align: right;
}

.footer-row h1{
    margin-bottom: 20px;
    font-size: 32px;
}

/* text contact */

.footer-row p{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    line-height: 32px;
    font-size: 17px;
    color: #222;
    margin-bottom: 8px;
}

.footer-right p{
    justify-content: flex-end;
}

.footer-row a{
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.footer-row a:hover{
    color: #009688;
}

/* iconite */

.footer-left .fa,
.footer-right .fa{
    font-size: 18px;
    color: #009688;
    flex-shrink: 0;
}

/* imagine decor */

.footer-img{
    max-width: 370px;
    opacity: 0.07;
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* harta */

.footer-map{
    width: 80%;
    max-width: 1200px;
    margin: 30px auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.footer-map iframe{
    display: block;
    width: 100%;
    height: 280px;
    border: 0;
}

/* buton programare */

.footer-booking{
    text-align: center;
    margin-top: 35px;
    position: relative;
    z-index: 2;
}

/* social */

.social-links{
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.social-links a{
    text-decoration: none;
}

.social-links .fab{
    height: 54px;
    width: 54px;
    font-size: 24px;
    line-height: 54px;
    border: 1px solid #009688;
    margin: 0 8px;
    color: #009688;
    cursor: pointer;
    transition: all .35s ease;
    border-radius: 12px;
    background: rgba(255,255,255,0.8);
}

.social-links .fab:hover{
    background: #009688;
    color: #fff;
    transform: translateY(-6px) scale(1.05);
}

.social-links p{
    font-size: 14px;
    margin-top: 24px;
    color: #444;
}

/* responsive */

@media screen and (max-width:770px){

.footer-row{
    width:90%;
}

.footer-left,
.footer-right{
    max-width:100%;
    text-align:left;
}

.footer-right p{
    justify-content:flex-start;
}

.footer-map{
    width:90%;
}

}

/* BUTTONS */

.review-btn{
    display: inline-block;
    padding: 14px 35px;
    background: #009688;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0, 150, 136, 0.25);
}

.review-btn:hover{
    background: #00796b;
    transform: translateY(-4px);
}

/* IMAGE POPUP */

.image-popup{
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-popup img{
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.close-btn{
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 42px;
    color: white;
    cursor: pointer;
    z-index: 10000;
}

/* RESPONSIVE */

@media screen and (max-width: 770px) {
    #banner{
        min-height: 100vh;
    }

    .logo{
        width: 135px;
        left: 7%;
        top: 3%;
    }

    .banner-text {
        padding-top: 160px;
        width: 92%;
    }

    .banner-text h1 {
        font-size: 62px;
        line-height: 1.05;
    }

    .banner-text p {
        font-size: 18px;
        letter-spacing: 2px;
        margin-top: 16px;
    }

    .banner-btn{
        margin-top: 38px;
        gap: 14px;
    }

    .banner-btn a {
        display: block;
        width: 100%;
        max-width: 280px;
        min-width: unset;
        margin: 0 auto;
        padding: 15px 20px;
        font-size: 16px;
    }

    .title-text h1{
        font-size: 35px;
    }

    .feature-box{
        width: 90%;
        gap: 25px;
    }

    .features{
        flex-basis: 100%;
    }

    .features-img{
        flex-basis: 100%;
    }

    .features-img img{
        max-width: 100%;
        height: auto;
    }

    .features h1{
        font-size: 24px;
    }

    .feature-item{
        padding: 22px 18px;
    }

    .service-box{
        width: 90%;
        gap: 20px;
    }

    .single-service{
        flex-basis: 100%;
        height: 300px;
    }

    .service-desc{
        width: 85%;
        bottom: 20px;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    .overlay{
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,150,136,0.15));
    }

    .service-desc h3{
        font-size: 24px;
    }

    .service-desc p{
        font-size: 13px;
        line-height: 1.5;
    }

    .pricing-box{
        width: 90%;
    }

    .pricing-card{
        padding: 25px;
    }

    .price-item{
        padding: 20px 0;
        min-height: auto;
    }

    .price-item span{
        position: static;
        display: block;
        margin-top: 5px;
    }

    .testimonial-col{
        flex-basis: 100%;
    }

    .footer-row{
        width: 90%;
        gap: 20px;
    }

    .footer-left,
    .footer-right{
        flex-basis: 100%;
        max-width: 100%;
        font-size: 14px;
        padding: 20px;
    }

    .footer-right{
        text-align: left;
    }

    .footer-row h1{
        font-size: 28px;
    }

    .footer-row p,
    .footer-right p{
        justify-content: flex-start;
        font-size: 16px;
        line-height: 30px;
    }

    .footer-img{
        top: 28%;
        max-width: 250px;
    }
}