* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h5{
    font-family: "Kaushan Script", cursive;
  font-weight: 400;
    font-size: 70px;
    color: white;
    padding: 10px  20px;
}

body {
    font-family: "Fira Sans Extra Condensed", sans-serif;
    font-weight: 300;
    margin: 0;
    padding: 0;
    background-color: #ffe4e1;
    text-align: center;
}

h1{
    padding: 35px;
}

.site-header {
    background: #ff99cc;
    color: white;
    padding: 15px 0;
}

.site-header nav ul {
    list-style: none;
    padding: 0;
}


.site-header nav ul li {
    display: inline;
    margin: 0 15px;
}


.site-header nav ul li a:hover{
    color: #ffffff;
    transition: .3s all;
}

.site-header nav ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: bold;
    transition: .3s all;
}


.hero {
    padding: 50px 20px;
    background: #ffcce0;
}

.hero h1{
    font-size: 50px;
}

.site-footer {
    background: #ff99cc;
    color: white;
    padding: 10px 0;
}

/* Carousel Styling */
.carousel-container {
    box-shadow: 0px 0px 5px #ff99cc;
    position: relative;
    width: 90vw; /* Slightly less than full width */
    height: 80vh; /* Less height to make it more balanced */
    overflow: hidden;
    margin: 0 auto; /* Center the carousel */
}

.carousel {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel img {
    width: 100vw; /* Full width */
    height: 80vh; /* Less height to make it more balanced */
    object-fit: cover; /* Ensure the images fit properly */
    display: none; /* Hide all images initially */
}

.carousel img.active {
    display: block; /* Show only the active image */
}

/* Navigation buttons */
button {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    transform: translateY(-50%);
}

button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.produse {
    display: flex;
    align-items: center;
    gap: 15px; /* Increased gap for more spacing */
    background-color: rgba(240, 248, 255, 0.459);
    border: 3px solid rgb(0, 0, 0);
    padding: 0px; /* Added padding for better spacing */
    margin-bottom: 20px; /* Added margin to separate multiple items */
    transition: .3s;
}

.produse img {
    width: 200px;
    height: auto;
}

.details {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Added gap between title and price */
}

.produse:hover {
    scale: 1.03;
}

.acces{
    padding: 30px;
}

.acces .despre{
    background-color: white;
    color: black;
    padding: 30px;

}

.acces a{
    color: white;
    text-decoration: none;
    background-color: black;
    padding: 15px 20px;
}

.acces a:hover{
    opacity: .7;
}

.map-container {
    width: 100%;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}

.map-container iframe {
    padding: 30px;
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

.organigrama img{
    border-radius: 20px;
    box-shadow: 0px 5px 10px rgba(196, 13, 83, 0.301);
}

