/* --- FUNDAL SI BAZA --- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: rgba(245, 245, 245, 0.78);
    overflow-x: hidden;
}

/* --- PROGRESS BAR --- */
#progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4.4px;
    background: transparent;
    z-index: 9999;
}

#progress-bar {
    height: 100%;
    width: 0%;
    background: cyan;
    box-shadow: 0 0 8px cyan;
    transition: width 0.1s ease-out;
}

/* --- CAROUSEL --- */
.carousel-item {
    height: 710px !important;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

@media (max-width: 768px) {
    .carousel-item {
        height: 250px !important;
    }
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.8s ease-in-out;
}

.carousel-item:hover img {
    transform: scale(1.1);
}

.carousel-caption {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    width: 95%;
    pointer-events: none;
}

.carousel-text-custom {
    font-size: 3.5vw !important;
    white-space: nowrap;
    color: cyan;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 51, 102, 0.9), -1px -1px 0px #003366, 1px -1px 0px #003366;
}

@media (min-width: 1200px) {
    .carousel-text-custom {
        font-size: 3rem !important;
    }
}

/* --- SECTIUNE PRODUSE --- */
.product-wrapper {
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
}

.product-wrapper:hover {
    transform: scale(1.07);
}

.product-img {
    width: 100%;
    max-width: 150px;
    display: block;
    border: 2px solid cyan;
}

.btn-group-custom {
    display: flex;
    width: 100%;
    max-width: 160px;
    margin-top: 10px;
    cursor: pointer;
}

.btn-left,
.btn-right {
    background-color: #003388;
    color: cyan;
    border: 1px solid cyan;
    padding: 8px 0;
    font-weight: bold;
    font-size: 0.75rem;
}

.btn-left {
    flex: 3;
    border-radius: 6px 0 0 6px;
}

.btn-right {
    flex: 1;
    border-radius: 0 6px 6px 0;
}

.btn-group-custom:hover .btn-left,
.btn-group-custom:hover .btn-right {
    background-color: cyan;
    color: #003366;
}

/* --- FORMULAR CONTACT --- */
.custom-input {
    border: 1px solid #ced4da;
    border-radius: 8px;
    transition: all 0.3s ease;
    resize: none;
}

.custom-input:focus {
    border-color: cyan !important;
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.1) !important;
    outline: none;
}

footer ul li {
    margin-bottom: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
    color: #bbb;
}

footer ul li:hover {
    color: red !important;
}

/* --- FOOTER --- */
footer ul li:hover {
    color: red;
    cursor: pointer;
}

/* SPATIU INTRE SECTIUNI */
@media (max-width: 991px) {
    .order-2 {
        margin-top: 3rem;
    }
}

/* EFECT HOVER */
button:hover {
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
    filter: brightness(1.2);
}

/* CAMPURI INPUT */
.custom-input {
    border: 1px solid #ced4da;
    border-radius: 8px;
    transition: all 0.3s ease;
    resize: none;
}


.news-letter {
  margin-top: -28px;
}

.news-letter input[type="email"] {
  width: 53%;
  background-color: white;
  color: cyan;
  padding: 8px;
  border-radius: 8px 0 0 8px;
  border: 2px solid cyan;
}

@media only screen and (min-width: 768px) {
  .news-letter input[type="email"] {
    width: 35%;
  }
}

.news-letter input[type="submit"] {
  width: 35%;
  background-color: #003388;
  color: cyan;
  font-size: 1rem;
  font-weight: bold;
  padding: 8px;
  border-radius: 0 8px 8px 0;
  border: 2px solid cyan;
  margin-left: -3px;
}

@media only screen and (min-width: 768px) {
  .news-letter input[type="submit"] {
    width: 17%;
  }
}

