*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

#header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(to left, rgb(105, 91, 0),rgba(255, 240, 141, 0.7)); 
    background-position: center;
    background-size: cover;
    position: relative;
}

.logo {
    margin: 10px;
}
.logo {  animation: translateX 1s ease-out;
}

@keyframes translateX {
  0% {opacity: 50%;
    transform: translateX(70px);
  }
  100% {opacity: 100%;
    transform: translateX(0px);
  }
}

p1 { display: flex; 
    color: #d4af37;
    font-size: 30px;
    font-weight: 600;
    font-family: 'Great Vibes', cursive;
    opacity: 60%;
    animation: translateX_p1 1s ease-out;
}

@keyframes translateX_p1 {
    0% {opacity: 0%;
      transform: translateX(50px);
    }
    100% {opacity: 100%;
      transform: translateX(0px);
    }
}

h3 a {
    color: #7f6549;
    padding-top: 3px;
    margin-top: 0px;
    margin-right: 8px;
    text-align: center;
}

h5 a {
    font-size: small;
    color: #7f6549;
    padding-top: 3px;
    margin-top: 0px;
    margin-right: 8px;
    text-align: right;
}

.nav {display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
nav img {
    width: 80px;
}

.nav-links {
    flex: 1;
    text-align: right;
}
.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background:#FFD700;
    display: block;
    margin: auto;
    transition: 0.5s;
    }
    .nav-links ul li:hover::after {
        width: 100%;
    }
    .text-box {
        width: 90%;
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
    .text-box h1 {
        font-size: 62px;
        font-family: 'Poppins', sans-serif;        
    }
    
    .text-box p {
        margin: 10 0 40;
        font-size: 14px;
        color:#fff;
        text-align: center;
        visibility: hidden;
        animation: appear 1.5s linear forwards;
    }
    @keyframes appear {
        0% {
            visibility: hidden;
            opacity: 0;
        }
        100% {
            visibility: visible;
            opacity: 1;
        }
    }
    .hero-btn {
        display: inline-block;
        text-decoration: none;
        color: #fff;
        border: 1px solid #fff;
        padding: 12px 34px;
        font-size: 13px;
        background: transparent;
        position: relative;
        cursor: pointer;
    }
    .hero-btn:hover {
        border: 1px, solid#FFD700;
        background:#FFD700;
        transition: 1s;
    }
    nav .fa {
        display: none;
    }

.stars {
        margin-bottom: 10px;
        width: vw;
        height: vh;
    }
/*---- Slider ----*/

#slider {overflow: hidden;
}
#slider figure {
    position: relative;
    width: 500%;
    margin: 0;
    left: 0;
    animation: 20s slider infinite;
}

#slider figure img {
    width: 20%;
    float: left;
}
@keyframes slider {
    0% {left:0;}
    20% {left:0;}
    25% {left:-100%;}
    45% {left:-100%;}
    50% {left:-200%;}
    70% {left:-200%;}
    75% {left:-300%;}
    95% {left:-300%;}
    100% {left:-400%;}
}


/*---- Social media ----*/

#social_media {
    display: flex;
    align-items: right;
    justify-content: right;
    margin-top: -8px;
    margin-right: 8px;
    z-index: 1;
}

#social_media ul li {
width: 100;
height: 100;
display: inline;
}

#social_media title {
    width: 100;
    height: 100;
    display: inline;
    color: #fff;
    font-style: italic;
}

.fa-brands {
    color: #fff;
}

.social_media ul li a .fa-brands {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.fa-brands:hover {
    zoom: 1.5;
    color: #FFD700;
    transition: 1s;
}

/* Publicitate */
.publicitate-wrapper {
    width: 100%;
    height: 100svh;
    display: flex;
    background-color: #FFD700;
    margin: 0 auto;
    border: 2px dashed #7f6549;
}

.publicitate {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.publicitate img {
    height: 100svh;
}

.publicitate p {
    width: 80%;
    margin-right: 20px;
    color: #7f6549;
    font-size: 1.5rem;
    align-self: center;
    text-indent: 2rem;
    line-height: 3rem;
}

.publicitate i {
 color: #7f6549;
}

.publicitate i:hover {
    color: #7f6549;
    opacity: 1;
   }

/*---- Despre noi ----*/

.despre_noi {  
    position: relative;  
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 30px;
    background-image: linear-gradient(to left,rgba(254, 233, 95, 0.5),rgba(255, 240, 141, 0.2));
}
.despre_noi img {
    display: inline-block;
    width: 35px;
    position: relative;
}

h1 {
    color: #FFD700;
    font-size: 36px;
    font-weight: 600;
    font-family: 'Great Vibes', cursive;
}
h2 {
    color: #d4af37;
    font-size: 36px;
    font-weight: 600;
    font-family: 'Great Vibes', cursive;
    margin-top: 10px;
}

p {
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    text-align: justify;
    text-indent: 10px;
}

.skewed {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 2em auto;
    padding: 1.5em;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}


.despre-text {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-self: flex-start;
    flex-direction: column;
}

.despre-noi-video {
    width: 100%;
    height: 100svh;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 10px;
    justify-content: center;
    text-align: center;
    display: block;
}

.video::before {
    content: '';
    position: absolute;
    left: -6.1em;
    top: 50%;
    transform: translateY(-50%) rotate(20deg);
    width: 50%;
    height: 140%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    padding: 10px;
    text-align: center;
}

#evenimente {
    width: 98%;
    text-align: center;
    margin: 0 auto;
    padding: 10px;
    background-image: linear-gradient(to bottom,rgba(254, 233, 95, 1),rgba(255, 240, 141, 0.2));

}

.plus, .evenimente {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 30px;
}
h1 {
    color: #FFD700;
    font-size: 36px;
    font-weight: 600;
    font-family: 'Great Vibes', cursive;
}
p {
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    text-align: justify;
    text-indent: 10px;
}

.plus ul {
    padding-left: 75px;
    padding-bottom: 30px;
}

.plus ul li {
    color: #777;
    font-size: 12px;
    font-weight: 300;
    line-height: 12px;
    padding: 8px 12px;
    text-align: left;
    margin-left: 20px;
    padding-left: 10 px;
}
.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.despre_noi-col {
    flex-basis: 31%;
    background: #f9ecb3;
    border-radius: 10px;
    margin: .5%;
    padding: 20px 12px;
    box-sizing: border-box;
}
h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.despre_noi-col:hover {
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

/*---- Ballroom -----*/
.ballroom {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 30px;
}

.ballroom img {
    width: 50%;
    object-fit: cover;
    object-position: center;
    padding: 5px;
    border-radius: 15px;
    box-shadow: 10px 5px rgba(0, 0, 0, 0.3);
}

h1 {
    color: #FFD700;
    font-size: 36px;
    font-weight: 600;
    font-family: 'Great Vibes', cursive;
}
p {
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    text-align: justify;
    text-indent: 10px;
}

.ballroom {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.ballroom-col {
    /* flex-basis: 48%;  pt 2 coloane */
    flex-basis: 98%;
    background: #f9ecb3;
    border-radius: 10px;
    margin: .5%;
    padding: 20px 12px;
    box-sizing: border-box;
}
h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.ballroom-col:hover {
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

/*---- Galerie -----*/
.galerie {
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 30px;
}

/*---- Testimonials -----*/
.testimonial {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr ));
    grid-gap: 20px;
    width: 90%;
    margin: auto;
    padding-top: 30px;
   }

.testimonial-col {
    display: flex;
    position: relative;
    /* align-items: center; */
    border-radius: 10px;
    margin: .5%;
    margin-bottom: 5%;
    text-align: left;
    background: #796d4a;
    padding: 25px;
   }

.testimonial-col p {
    padding: 3px;
    margin-top: 3px;
    color: #FFD700;
    text-align: justify;
    text-indent: 0;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: #000000;
}
.testimonial-col h4 {
    font-size: small;
    padding-top: 3px;
    margin-top: 8px;
    text-align: left;
}
.testimonial-col .fa-solid {
    color: #FFD700;
    padding-bottom: 5px;
}
.testimonial-col .fa-regular {
    color: #FFD700;
    padding-bottom: 5px;
}


/*---- Blog -----*/
#blog {
    display: flex;
    width: 90%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* padding: 10px; */
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin: 0 auto;
    margin-bottom: 10px;
    margin-top: 0px;
}
.blog-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0px;
    flex-wrap: wrap;
}

.blog-box {
    flex: 1;
    flex-wrap: wrap;
    width: 350px;
    height: 50svh;
    overflow: auto;
    padding: 30px;
    background-color: #f8dcfc;
    border: 1px solid rgba(0,0,0,0.05);
    margin-left: 8px;
    margin-bottom: 10px;
    align-self: start;
    box-shadow: 5px 3px rgba(0, 0, 0, 0.3);
    border-top-right-radius: 10px;
}

.blog-box img {
    bottom: 10px;
    width: 50%;
    object-fit: cover;
    object-position: center;
    padding: 5px;
    border-radius: 15px;
    box-shadow: 10px 5px rgba(0, 0, 0, 0.3);
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4af37;
}
.blog-title:hover {
    color: #fff;
    transition: all-ease 0.3s;
} 
.blog-text p {
    flex: 1;
    font-size: 0.9rem;
    color: #777;
    display: -webkit-box;
    /*----  -webkit-line-clamp: --*/
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 10px 0px;
}
.blog-text a:hover {
    color: #d4af37;
    transition: all-ease 0.3s;
}


/*---- Contact -----*/
.contact {
    width:90%;
    height: 100vh;
    background-color: #7f6549;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

form {
    width: 60%;
    max-width: 600px;
    margin-left: 25%;
}
.input-group {
    margin-top: 15px;
    margin-bottom: 30px;
    position: relative;
}
input, textarea{
    width: 100%;
    padding: 10px;
    outline: 0px;
    border: 1px solid #7f6549;
    background: transparent;
    font-size: 15px;
}

select{
    width: 100%;
    padding: 10px;
    outline: 0px;
    border: 1px solid #7f6549;
    background: transparent;
    color: #7f6549;
    font-size: 15px;
}

label{
    height: 100;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    color: #7f6549;
    cursor: text;
    transition: 0.2s;
}
button{
    padding: 10px 0;
    color: #7f6549;
    outline: none;
    background: transparent;
    border: 1px solid #7f6549;
    width: 100%;
    cursor:pointer;
}

input:focus~label,
input:valid~label,
textarea:focus~label,
textarea:valid~label{
    top: -35px;
    font-size: 14px;
} 
.rows {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rows .input-group{
    flex-basis: 48%;
}

/*---- Map -----*/
.map {
    display: flex;
    width: 90%;
	margin: 10px auto;
    background-image: radial-gradient(circle at center, rgba(255, 240, 141, 0.7), rgb(105, 91, 0)); 
	border: 2px dashed #FFD700;
	padding: 15px; 
    justify-content: center;
}

/*---- QR -----*/
.qr {
    display: inline-block;
    width: 100%;
    background-image: radial-gradient(circle at center, rgba(255, 240, 141, 0.7), rgb(105, 91, 0)); 
    margin-bottom: 10px;
}

.qr img {
    width: 200px;
    position: relative;
    margin-top: 10px;
    box-shadow: 3px 3px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

/*---- Tags -----*/
.tags {
    text-align: center;
    flex-basis: 25%;
    background: #f9ecb3;
    border-radius: 10px;
    margin: 5px;
    padding: 20px 12px;
    box-sizing: border-box;
}
.tags p {
    text-indent: 0px;
    text-align: justify;
}

.tags img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 4%;
}

/*---- Footer -----*/
.footer {
	margin: auto;
	padding: 10px;
	font-size: 10px;
	text-align: center;
    border-top: 1px solid #7f6549;
    padding-top: 10px;
}

.footer .fa {
    color: #ff0000;
}

/*---- Adresa -----*/
.address {
    display: flex;
    flex-wrap: wrap;
    margin-top: 5%;
    margin-left: 25px;
    margin-right: 25px;
    display: flex;
    justify-content: space-between;
}
.address-col {
    flex-basis: 50%;
    flex: 1;
    background: #fff3f3;
    border-radius: 10px;
    margin: .5%;
    padding: 20px 12px;
    box-sizing: border-box;
}
.address-col p {
    text-indent: 0px;
}
h1 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.address-col:hover {
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

.isu {
    text-align: center;
    color: #7f6549;
}
#isu h3 {
    margin: 5px;
}
#isu p {
    width: 30%;
    margin:auto;
    margin-bottom: 5px;
    text-align: center;
    color: #FFD700;
    padding: 5px 0px 5px;
    background-color: #7f6549;
    border: 2px solid #FFD700;
}

.linkuri_utile {
    border-top: 1px solid #7f6549;
    padding-top: 10px;
    padding-bottom: 10px;

}

.linkuri_utile a {
    color: #7f6549;
    font-size: small;
    text-decoration: none;
    border-right: 2px solid #FFD700;
    padding: 0px 5px 0px;
}
.linkuri_utile a:hover {
    color: #ffd700;
    font-size: 1.2em;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 5px;
    color:#fff;
    text-decoration: none;
    border-radius: 50%;
}

.back-to-top a {
    text-decoration: none;
    background-color: #ffd700;
    border:2px dashed #7f6549;
}

.back-to-top:hover {
    font-size: 1.2em;
}

.back-to-top a i {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 5px;
    color:#7f6549;
    text-decoration: none;
    font-size: xx-large;
    border:2px dashed #7f6549;
    border-radius: 50%;
    }

.back-to-top a i:hover {
    font-size: 1.2em;
}
/*---- Media -----*/
    @media(max-width: 1000px) {
    #header {
       height: 100svh;
    }
        
    .text-box h1 {
        font-size: 20px;
    }
    
    .publicitate {
        position: relative;
        width: 100%;
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        bottom: 300px;
    }
    .publicitate-wrapper {
        width: 100%;
    }
    .publicitate p {
        font-size: .9rem;
    }
        .nav-links ul li {
            display: block;
    }
        .nav-links {
            position: absolute;
            background:#FFD700;
            height: 100vh;
            width: 200px;
            top: 0px;
            right: -180px;
            text-align: left;
            z-index: 2;
            transition: 1s;
        }
        nav .fa {
            display: block;
            color: #fff;
            margin: 10px;
            font-size: 22px;
            cursor: pointer;
        }
        .nav-links ul{
            padding: 30px;
        }
        .row {
            flex-direction: column;
        }
        .ballroom {
            flex-direction: column; 
        }
        .skewed {
            grid-template-columns: 1fr;
        }
        .despre-text {
            width: 90%;
        }
        .despre-noi-video {
            width: 90%;
        }

        .despre-noi-video video {
            height: 100svh;
            margin: 0 auto;
        }
        .testimonial {
            flex-direction: column;         
        }
        form {
            flex-direction: column;         
        }
        .tags {
            flex-direction: column;         
        }



        .blog {
            display: flex;
            flex-wrap: wrap;
        }

        .blog-container {
            display: flex;
            flex-wrap: wrap;
            margin: 0, auto;
            justify-self: center;
            gap: 50px;
        }

        .blog-box {  
            max-width: 45%;
            flex: 0 0 50%;
        }


        .contact-container {
            flex-direction: column;
            flex-wrap: wrap;
            width: 100%;
        }

        .address-col {
            flex-direction: column;
            width: 80%;
            padding-bottom: 30px;
        }
        .back-to-top {
            bottom: 10px;
            right: 10px;
        }
}