@font-face {
    font-family: 'Belinda';
    src: url('./belinda.otf') format('truetype');
    font-weight: 100; /* Setăm greutatea la cea mai mică valoare pentru a sugera eleganță */
    font-style: normal; /* Păstrăm font-style normal pentru a menține claritatea */
}



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

body {
    font-family: 'Arial', sans-serif;
    padding-top: 90px;
}

header {
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    transition: color 0.6s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: #B17457;
    transition: width 0.6s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #B17457;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 100%;
    left: 0;
    padding-top: 10px;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
}

.dropdown-content li {
    list-style: none;
}

.dropdown-content a {
    color: #333;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.dropdown-content a:hover {
    background-color: #f8f8f8;
}





.nav-buttons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #333;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #B17457;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 21px;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1268px) {
    .nav-links a {
        font-size: 12px;
    }
}

@media screen and (max-width: 768px) {
    .nav-buttons {
        display: none;

    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 95px;
        left: 0;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Umbră doar în jos */
        padding: 20px 0;
    }
    

    .nav-links li, .nav-buttons {
        margin: 10px 0;
        text-align: center;
    }

    .burger {
        display: flex;
    }

    .nav-active {
        display: flex;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        padding-top: 0;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown > a::after {
        content: ' ▼';
        font-size: 10px;
    }
}

/* Ascunde punctele, dar păstrează funcționalitatea */
#dotDiv {
    display: none; /* Ascunde div-ul care conține punctele */
}

.dot {
    display: none; /* Ascunde fiecare punct */
}

.slideshow-container {
    width: 100%;
    height: 80vh;
    position: relative;
    margin: 0;
    overflow: hidden;

}

@media (max-width: 768px) {
    .slideshow-container {
        height: 500px;
    }

 
}

.slide {
    display: none;
    height: 100%;
    position: relative; /* Adăugăm pentru a poziționa overlay-ul relativ */
}

.imgSlideshow {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asigură că imaginea acoperă complet containerul */
    vertical-align: middle;
}

@media (max-width: 768px) {
    #stangaImg {
        width: 70%; /* Face imaginea mai îngustă pentru a lăsa loc în dreapta */
        object-position: right; /* Mută partea vizibilă a imaginii spre dreapta */
        height: 100%; /* Păstrează înălțimea imaginii */
        object-fit: cover;
    }
}



.overlayY {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Overlay întunecat */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.text {
    color: #ffffff; /* Culoare albă pentru text */
    font-size: 25px; /* Dimensiunea mai mică a fontului pentru un aspect mai delicat */
    font-family: 'Belinda', cursive; /* Fontul Belinda */
    font-weight: 100; /* Font-weight cât mai mic pentru un aspect mai subțire */
    letter-spacing: 1px; /* Spațiere între litere pentru un efect mai rafinat */
    text-align: center;
    margin:10px;
}

.textT {
    color: #ffffff; /* Culoare albă pentru text */
    font-size: 50px; /* Dimensiunea mai mică a fontului pentru un aspect mai delicat */
    font-family: 'Belinda', cursive; /* Fontul Belinda */
    font-weight: 100; /* Font-weight cât mai mic pentru un aspect mai subțire */
    letter-spacing: 1px; /* Spațiere între litere pentru un efect mai rafinat */
    text-align: center;
    margin:10px;
    margin-bottom: -14px;
    font-weight: bold;
}






/* Fade Animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}



/* Stilurile pentru secțiunea de meniu */

.menu-section {
    max-width: 1220px;
    margin: 20px auto;
    padding: 20px;
    margin-top: -20px;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    
}

.full-menu-link {
    text-decoration: none;
    color: #B17457;
    font-weight: bold;
    font-family: Garamond, serif;
}

.menu-title {
    font-size: 3rem;
    font-weight: bold;
}

.menu-content {
    display: flex;
    justify-content: space-between;
}

.menu-categories, .menu-featured {
    flex: 1;
}

.menu-categories ul {
    list-style: none;
    padding: 0;
}

.menu-categories li {
    margin-bottom: 10px;
}

.menu-featured {
    margin-left: 20px;
    overflow-y: scroll;
    max-height: 390px;
}

.menu-btn {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #B17457;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    background-color: white;
}

.menu-btn i {
    margin-right: 10px;
    color: #B17457;
}

.menu-btn:hover {
    background-color: #B17457;
    color: white;
}

.menu-btn:hover i {
    color: white; 
}


.featured-item {
    display: flex;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.featured-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 10px;
}

.featured-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-info h3 {
    margin: 0;
    font-size: 1.5rem;
}

.featured-info p {
    margin: 10px 0;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #B17457;
}

/* Stiluri responsive */
@media screen and (max-width: 768px) {
    .menu-content {
        flex-direction: column;
    }

    .menu-featured {
        margin-left: 0;
        margin-top: 20px;
    }

    .featured-item {
        flex-direction: column;
        align-items: center;
    }

    .featured-item img {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

footer {
    background-color: #ffffff;
    color: #000000;
    padding: 40px 0;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-social {
    flex: 1;
    margin: 10px 20px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #B17457;
}

.footer-about p,
.footer-contact p {
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #B17457;
}

.footer-social .social-icons {
    display: flex;
}

.footer-social .social-icons a {
    color: #000000;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social .social-icons a:hover {
    color: #B17457;
    transform: scale(1.1);
}

.footer-bottom {
    background-color: #ffffff;
    text-align: center;
    padding: 10px 20px;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-about,
    .footer-links,
    .footer-contact,
    .footer-social {
        margin: 20px 0;
    }

        .footer-social .social-icons {
        justify-content: center;
    }
}


/* Adăugăm fontul Open Sans de pe Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

.parallax {
    background-image: url('./18320871_1437585133016271_268170503396502359_o.jpg'); /* Schimbă cu calea imaginii tale */
    min-height: 400px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Fundal negru semi-transparent */
}

.parallax-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    max-width: 600px;
    z-index: 1; /* Asigură că textul se află deasupra overlay-ului */
}

.parallax-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: Garamond, serif;
}

.parallax-text p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: Garamond, serif;
}

.btn-parallax {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #B17457;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: #B17457 1px solid;
    background-color: white;
}

#despreNoi {
    color: #000000;
    font-size: 1.4rem;
    text-align: center;
    border: 2px dashed white;
    border-radius: 10px;
    padding: 10px;
    font-weight: 500;
    font-family: Garamond, serif;
}

.btn-parallax:hover {
    background-color: #fff;
    color: #B17457;
}

@media screen and (max-width: 768px) {
    .parallax-text h2 {
        font-size: 2rem;
    }

    .parallax-text p {
        font-size: 1rem;
    }
    #despreNoi {
        font-size: 1rem;
    }

}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
}
.feature {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    flex: 1 1 300px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.feature:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transform: translateY(-5px);
    transition: all 0.5s ease;

}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: #8e44ad;
}
.feature-text h3 {
    margin: 0 0 10px 0;
    color: #333;
}
.feature-text p {
    margin: 0;
    color: #666;
    font-size: 14px;
}
.feature{
    border: 1px solid #B17457;
}

#iconita3{
    color: #B17457;
    font-size: 30px;
}

@media (max-width: 768px) {
    .feature {
        flex-basis: 100%;
    }
}

/* Stiluri pentru secțiunea evenimente viitoare */
.upcoming-events {
    background-color: white;
    padding: 0px 20px;
    text-align: center;
}

.upcoming-events h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    font-family: 'Open Sans', sans-serif;
}

.events-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centrarea elementelor */
    gap: 20px;
}

.event-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px); /* 3 elemente pe rând */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px; /* Adaugă spațiu între rânduri */
    border: 1px solid #000000;
}

.event-item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.event-details {
    padding: 15px;
}

.event-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.event-details p {
    font-size: 1rem;
    margin: 5px 0;
    color: #666;
}

.event-details .location i, .event-details .time i {
    color: #B17457;
    margin-right: 8px;
}

#evViitoare{
    color: black;
    font-size: 30px;
}

#contacteazane{
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #B17457;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    background-color: #B17457;
    color: white;
    margin-top: 20px;
}



#footerIC{
    color: #B17457;
}

#map {
    height: 400px;
    width: 100%;
    margin: 20px 0;
    border-radius: 10px;
}
#anpc {
    display: flex;
    justify-content: center;
    align-items: center;
}



@media screen and (max-width: 768px) {
    .event-item {
        width: calc(50% - 20px); /* 2 elemente pe rând */
    }
}

@media screen and (max-width: 480px) {
    .event-item {
        width: 100%; /* 1 element pe rând */
    }
}

.contact-section {
    position: relative;
    background-image: url('./481491531.jpg'); /* Înlocuiește cu calea imaginii tale */
    background-size: cover;
    background-attachment: fixed; /* Efectul parallax */
    background-position: center;
    padding: 40px 20px;
    color: #fff;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Nuanță de orange cu transparență (rgba) */
    z-index: 1; /* Asigură-te că overlay-ul este deasupra imaginii */
}

.contact-container {
    position: relative; /* Face ca containerul să fie deasupra overlay-ului */
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 1); /* Fundal semi-transparent pentru form */
    border-radius: 8px;
    z-index: 2; /* Asigură-te că formularul este deasupra overlay-ului */
    color: black;
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    font-family: 'Open Sans', sans-serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    box-shadow: none; /* Elimină orice shadow implicit care poate apărea la focus */
    transition: border-color 0.3s ease; /* Tranziție pentru border-color */
}

.form-group input:focus, 
.form-group textarea:focus {
    border: none; /* Elimină border-ul la focus */
    outline: none; /* Elimină outline-ul implicit */
    box-shadow: 0 0 0 2px #B17457; /* Adaugă o umbră subtilă pentru a indica focusul */
}


.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #B17457;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #0145ff;
}

/* Stiluri responsive */
@media (max-width: 768px) {
    .contact-container {
        padding: 15px;
    }

    .contact-container h2 {
        font-size: 1.5rem;
    }

    .submit-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
}





.section {
    max-width: 1200px;
    margin: 0 auto;

    padding: 20px;
    border-radius: 10px;
}
.section h2 {
    text-align: center;
    margin-bottom: 20px;
}
.info-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.info-box {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #B17457;

}
.info-box h3 {
    margin-top: 0;
    font-size: 1.2em;
    margin-bottom: 10px;
}
.info-box ul {
    list-style: none;
    padding: 0;
}
.info-box ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.info-box ul li i {
    margin-right: 10px;
    color: #B17457;
}

.menu-header {
    display: flex;
    flex-direction: column; /* Arrange the icon and text vertically */
    align-items: center;
    font-size: 30px;
}

.icon {
    width: 100px; /* Ajustează dimensiunea iconiței */
    height: auto; /* Păstrează proporțiile corecte */
    margin-bottom: 10px;
}

.rotated-icon {
    transform: rotate(180deg); /* Rotește imaginea la 180 de grade */
    margin-top: 10px;
}




.sectionBtnVezi {
    display: flex;
    flex-direction: column; /* Aranjează elementele pe verticală */
    align-items: center; /* Centrează elementele pe orizontală */
    text-align: center; /* Aliniază textul pe mijloc */
    margin-bottom: 20px;
}

.menu-button {
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid #B17457;
    color: white;
    font-size: 1rem;
    text-align: left; 
    cursor: pointer;
    border-radius: 8px;
    background-color: #B17457;

    transition: background-color 0.6s ease;


}

.menu-button:hover {
    background-color: #ffffff;
    color: #B17457;
    
}

.menu-button i {
    margin-left: 5px; 
}





/* GALERIE */

.gallery {
    width: 1200px;
    margin: auto;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
  }
  .img-c {
    width: 590px;
    height: 300px;
    float: left;
    position: relative;
    overflow: hidden;
    margin: 5px !important;

  }
  
  .img-w {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform ease-in-out 300ms;
  }
  
  .img-w img {
    display: none;
  }
  
  .img-c {
      transition: width ease 400ms, height ease 350ms, left cubic-bezier(0.4, 0, 0.2, 1) 420ms, top cubic-bezier(0.4, 0, 0.2, 1) 420ms;
  }
  
  .img-c:hover .img-w {
    transform: scale(1.08);
    transition: transform cubic-bezier(0.4, 0, 0.2, 1) 450ms;
  }
  
  .img-c.active {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    z-index: 2;
    /*transform: translateX(-50%);*/
  }
  
  .img-c.postactive {
    position: absolute;
    z-index: 2;
    pointer-events: none;
  }
  
  .img-c.active.positioned {
    left: 0 !important;
    top: 0 !important;
    transition-delay: 50ms;
  }

  @media screen and (max-width: 768px) {
    .gallery {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Disable click events on .img-c */
    .img-c {
        pointer-events: none;
    }


    #galerie {

        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Două coloane */
        gap: 5px; /* Spațiu între imagini */
        width: 100%;
        justify-content: center;
    }

    .img-c {
        width: 100%; /* Să se adapteze în grid */
        height: auto;
        aspect-ratio: 4/3; /* Păstrează proporțiile imaginilor */
        pointer-events: none;
    }

}






@import url(https://fonts.googleapis.com/css?family=Raleway:400,500,800);
figure.snip1200 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 220px;
  min-height: 280px;
  max-width: 280px;
  max-height: 280px;
  width: 100%;
  background: #000000;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  font-size: 16px;
}
figure.snip1200 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}
figure.snip1200 img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    opacity: 0.9;
  }
  
figure.snip1200 figcaption {
  position: absolute;
  top: 45%;
  left: 7%;
  right: 7%;
  bottom: 45%;
  border: 1px solid white;
  border-width: 1px 1px 0;
}
figure.snip1200 .heading {
  overflow: hidden;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  position: absolute;
  bottom: 0;
  width: 100%;
}
figure.snip1200 h2 {
  display: table;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
  text-align: center;
  width: auto;
  text-transform: uppercase;
  font-weight: 400;
}
figure.snip1200 h2 span {
  font-weight: 800;
}
figure.snip1200 h2:before,
figure.snip1200 h2:after {
  position: absolute;
  display: block;
  width: 1000%;
  height: 1px;
  content: '';
  background: white;
  top: 50%;
}
figure.snip1200 h2:before {
  left: -1000%;
}
figure.snip1200 h2:after {
  right: -1000%;
}
figure.snip1200 p {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  width: 100%;
  padding: 0 20px;
  margin: 0;
  opacity: 0;
  line-height: 1.6em;
  font-size: 0.9em;
}
figure.snip1200 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}
figure.snip1200:hover img,
figure.snip1200.hover img {
  opacity: 0.25;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
figure.snip1200:hover figcaption,
figure.snip1200.hover figcaption {
  top: 7%;
  bottom: 7%;
}
figure.snip1200:hover p,
figure.snip1200.hover p {
  opacity: 1;
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}



.content {
    height: 600px;
    width: 1200px;
    position: relative;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
}
.content .images {
    height: 100%;
    width: 100%;
    
}
.content .images img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    
}
.content .images img.active {
    opacity: 1;
}
.slide-text {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 1);
    color: #B17457;
    padding: 10px 20px;
    border-radius: 20px;
    text-align: center;
    z-index: 2;
    display: none;
    font-size: 24px;
    font-weight: bold;
    font-family: Garamond, serif;
    width: 80%;

    
}
.slide-button {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: #B17457;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    z-index: 2;
    display: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.slide-button:hover {
    background: #0151cc;
}
.btm-slides {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 2;
}
.btm-slides span {
    height: 15px;
    width: 50px;
    border: 2px solid white;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 20px;
}
.sliders {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    cursor: pointer;
    border: 2px solid white;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    z-index: 2;
}
.sliders:hover {
    background: rgba(255,255,255,0.2);
}
.right {
    right: 10px;
}
.left {
    left: 10px;
}
.sliders span {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 41px;
    font-size: 35px;
    color: white;
}
@media (max-width: 600px) {
    .content {
        height: 400px;
        width: 100%;
        border-radius: 10px;
    }
    .sliders {
        width: 30px;
        height: 30px;
    }
    .btm-slides span {
        width: 30px;
    }
    .sliders span {
        font-size: 20px;
    }
}
@media (max-width: 900px) {
    .content {
        height: 500px;
        width: 80%;
    }
    .sliders {
        width: 35px;
        height: 35px;
    }
    .btm-slides span {
        width: 40px;
    }
    .sliders span {
        font-size: 25px;
    }
}
@media (max-width: 1200px) {
    .content {
        height: 550px;
        width: 90%;
    }
    .sliders {
        width: 40px;
        height: 40px;
    }
    .btm-slides span {
        width: 45px;
    }
    .sliders span {
        font-size: 30px;
    }

}


@media (max-width: 768px) {
    .overlayY #textSlideshow {
        font-size: 1.2rem;
        letter-spacing: 1px;
        line-height: 1.4;
        padding: 0 10px;
    }
    .textT {
        font-size: 2.0rem;
        letter-spacing: 1px;
        line-height: 1.2;
        margin-bottom: -10px;
    }
    .overlayY {
        padding: 10px;
    }


}
