@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root{
    --main-color:#00478f;
    --black: #ff4141;
    --bg: white;
    --border:.1rem solid rgba(188, 188, 188, 0.3);
    --text-color: #000000;
    --text-color2: #6d6c6c;
}
*{
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: .8rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

html::-webkit-scrollbar-thumb{
    background: #fff;
    border-radius: 5rem;
}

body{
    background: var(--bg);
}

section{
    padding: 2rem 7%;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: .9rem 3rem;
    font-size: 1.7rem;
    color: white;
    background: #00478f;
    cursor: pointer;
    text-transform: uppercase;
}

.btn:hover{
    letter-spacing: .2rem;
}

.header{
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 7%;
    border-bottom: var(--border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    text-transform: uppercase;
}

.header .logo img{
    height: 6rem;
}

.header .navbar a{
    margin:0 1rem;
    font-size: 1.6rem;
    color: #000000;
    text-transform: uppercase;
}

.header p{
    font-size: 1.6rem;
    margin: 0 12rem;
}
.header p a{
    color: var(--text-color);
}

.header p a:hover{
    color: var(--main-color);
    border-bottom: .1rem solid var(--main-color);
    padding-bottom: .5rem;
}

.header .navbar a:hover{
    color: var(--main-color);
    border-bottom: .1rem solid var(--main-color);
    padding-bottom: .5rem;
}

.header .icons div{
    color: #092368;
    cursor: pointer;
    font-size: 2.5rem;
    margin-right: 2rem;
}

.header .icons div:hover{
    color: var(--main-color);
}

#menu-btn{
    display: none;
}

/* home */

.home{
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:url("../images/CamperWide.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.home .content{
    max-width: 60rem;
}

.home .content h3{
    font-size: 6rem;
    text-transform: uppercase;
    color: azure;

}

.home .content p{
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.8;
    padding: 1rem 0;
    color: #fff;
}

/* 2 camper */

.heading{
    text-align: center;
    color: var(--text-color);
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;
}

.heading span{
    color: var(--main-color);
    text-transform: uppercase;
}

.campere2 .row{
    display: flex;
    align-items: center;
    background: var(--bg);
    gap: 0.1rem;
    flex-wrap: wrap;
}

.campere2 .row .image img{
    width: 100%;
}

.campere2 .row .image img:hover{
    transform: scale(1.1);
}

.campere2 .row .content{
    padding: 1rem;
}

.campere2 .row .image h3{
    font-size: 3rem;
    color: var(--text-color);
    text-align: center;
    text-transform: uppercase;

}



/* about */
.heading{
    text-align: center;
    color: var(--text-color);
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;
}

.heading span{
    color: var(--main-color);
    text-transform: uppercase;
}

.about .row{
    display: flex;
    align-items: center;
    background: var(--bg);
    gap: 1rem;
    flex-wrap: wrap;
}

.about .row .image{
    flex: 1 1 45rem;
}

.about .row .image img{
    width: 100%;
}

.about .row .content{
    flex: 1 1 45rem;
    padding: 2rem;
}

.about .row .content h3{
    font-size: 3rem;
    color: var(--text-color);
    text-transform: uppercase;
}

.about .row .content p{
    font-size: 1.6rem;
    color: var(--text-color2);
    padding: 1rem 0;
    line-height: 1.8rem;

}

/* reviews */

.review .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;

}

.review .box-container .box{
    border: var(--border);
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg);
}

.review .box-container .box p{
    font-size: 1.6rem;
    line-height: 1.8rem;
    color: var(--text-color2);
    padding: 2rem 0;
}

.review .box-container .box .user{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
}

.review .box-container .box h3{
    padding: 1rem 0;
    font-size: 2rem;
    color: var(--text-color);
    text-transform: uppercase;
}

.review .box-container .box .stars i{
    font-size: 1.5rem;
    color: var(--main-color);
}
/* contact */
.contact .row{
    display: flex;
    background: var(--bg);
    flex-wrap: wrap;
    gap: 1rem;
}

.contact .row .map{
    flex: 1 1 45rem;
    width: 100%;
    object-fit: cover;
}

.contact .row form{
    flex: 1 1 45rem;
    padding: 5rem 2rem;
    text-align: center;
}

.contact .row form h3{
    text-transform: uppercase;
    font-size: 3.5rem;
    color: var(--text-color);
}

.contact .row form .inputBox{
    display: flex;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background: var(--bg);
    border: var(--border);
}

.contact .row form .inputBox span{
    color: var(--text-color);
    font-size: 2rem;
    padding-left: 2rem;
}

.contact .row form .inputBox p{
    width: 70%;
    padding: 1rem;
    font-size: 1.7rem;
    color: var(--text-color2);
    text-transform: none;
    background: none;
}

.contact .row form .inputBox input{
    width: 100%;
    padding: 2rem;
    font-size: 1.7rem;
    color: var(--text-color);
    text-transform: none;
    background: none;
}

.contact .row form .inputBox .input2{
    width: 100%;
    padding: 0;
    font-size: 1.7rem;
    color: var(--text-color2);
    text-transform: none;
    background: none;
}

/* preturi */
.preturi .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: .5rem;
    background-color: var(--bg);
}

.preturi .box-container .box{
    padding: 1rem;
    text-align: center;
    border-color: red;
    border-radius: 2rem;
}

.preturi .box-container .box:hover{
    padding: 0;
}

.preturi .box-container .box .i{
    height: 20rem;
}

.preturi .box-container .box h3{
    color: var(--text-color);
    font-size: 2rem;
    padding: 1rem 0;
}

.preturi .box-container .box .price{
    color: var(--text-color);
    font-size: 2.5rem;
    padding: .5rem 0;
}



/* footer*/
.footer{
    background: var(--bg);
    text-align: center;
    text-transform: uppercase;
}

.footer .share{
    padding: 1rem 0;
}

.footer .share button{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    color: var(--text-color);
    border: var(--border);
    margin: .3rem;
    border-radius: 50%;
    background: none;
    border: none;
    display: inline-block;
}

.footer .share p{
    font-size: 2rem;
    padding-left: 0.4rem;
    display: inline-block;
}

.footer .share a{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    color: var(--text-color);
    border: var(--border);
    margin: .3rem;
    border-radius: 50%;
}

.footer .share a:hover{
    background-color: var(--main-color);
    color: #ffffff;
}

.footer .links{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
    gap: 1rem;

}

.footer .links a{
    padding: .7rem 2rem;
    color: var(--text-color);
    border: var(--border);
    font-size: 2rem;
}

.footer .links a:hover{
    background-color: var(--main-color);
    color: #ffffff;
}

.footer .credit{
    font-size: 2rem;
    color: var(--text-color2);
    font-weight: lighter;
    padding: 1.5rem;
}

.footer .credit span{
    color: var(--main-color);
}




/* media queries */
@media (max-width: 991px){
    html{
        font-size: 55%;
    }

    .header{
        padding: 1.5rem 2rem;
    }

    section{
        padding: 2rem;
    }
    .about .row .image{
    flex: 1 1 45rem;
    order: -1;
}
}

@media (max-width: 768px){
    #menu-btn{
        display: inline-block;
    }

    .header .navbar{
        position: absolute;
        top: 100%;
        right:-100%;
        background: #ffffff;
        width: 30rem;
        height: calc(100vh - 9.5rem);
    }

    .header .navbar.active{
        right: 0;
    }

    .header .navbar a{
        color: var(--black);
        display: block;
        margin: 1.5rem;
        padding: .5rem;
        font-size: 2rem;
    }
    .home{
        background-position: right;
        justify-content: center;
        text-align: center;
    }

    .home .content h3{
        font-size: 4.5rem;
    }

    .home .content p{
        font-size: 1.5rem;
    }
}
@media (max-width: 450px){
    html{
        font-size: 50%;
    }
}















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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
}

.container2 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Prețuri Section */
.pricing-section {
    padding: 3rem 0;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

/* Pricing Grid
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.pricing-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-item:hover {
    transform: scale(1.05);
}

.icon-circle {
    background-color: #f5f5f5;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-circle img {
    width: 40px;
    height: 40px;
}

.price {
    font-size: 1.8rem;
    color: #ff6347;
    font-weight: bold;
    margin-bottom: 1rem;
}

.pricing-item h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.season-dates, .details {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive *
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
*/

/* avantaje */
/* Container for the benefits section */
.container {
    width: 90%;
    max-width: 75rem; /* 1200px = 75rem */
    margin: 0 auto;
    padding: 2rem 0;
}

/* Benefits Section Styling */
.benefits-section {
    text-align: left;
}

.benefits-heading h2 {
    font-size: 2.5rem; /* 40px = 2.5rem */
    font-weight: bold;
    color: #000;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.benefits-heading hr {
    width: 6.25rem; /* 100px = 6.25rem */
    border: 0.125rem solid #00bdbd; /* 2px = 0.125rem */
    margin-left: 0;
    margin-top: 0.5rem;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1 1 calc(50% - 2rem); /* Adjusts width of each item */
    text-align: center;
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.625rem; /* 10px = 0.625rem */
    box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1); /* 0 4px 6px = 0 0.25rem 0.375rem */
    margin-bottom: 2rem;
}

.icon img {
    width: 3.125rem; /* 50px = 3.125rem */
    height: 3.125rem; /* 50px = 3.125rem */
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.5rem; /* 24px = 1.5rem */
    color: #000;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    font-size: 1rem; /* 16px = 1rem */
}

/* Responsive */
@media (max-width: 48rem) { /* 768px = 48rem */
    .benefits-grid {
        flex-direction: column;
        align-items: center;
    }

    .benefit-item {
        flex: 1 1 100%;
        width: 100%;
        margin-bottom: 2rem;
        text-align: center;
    }
}

@media (min-width: 75rem) { /* 1200px = 75rem */
    .benefit-item {
        flex: 1 1 calc(33.33% - 2rem); /* 3 items per row for larger screens */
    }
}
