/* Resetarea stilurilor implicite ale browserului */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fonturi personalizate */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f5f5f5;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo img {
    width: 150px;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-links li a:hover {
    background-color: #f0f0f0;
    color: #007BFF;
}

.nav-links li.active a {
    background-color: #007BFF;
    color: #fff;
}

.nav-links li::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background-color: #007BFF;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.nav-links li:hover::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.lang-button {
    background: none;
    border: none;
    font-size: 16px;
    margin-left: 10px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s;
}

.lang-button.active {
    color: #007BFF;
    font-weight: bold;
}

.lang-button:hover {
    color: #0056b3;
}

/* Meniu Hamburger */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    margin-left: 15px;
}

.hamburger i {
    color: #333;
}

/* Media Queries */
@media (max-width: 992px) {
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        background-color: #ffffff;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
        border-top: 1px solid #ddd;
        z-index: 999;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .language-switcher {
        margin-left: 0;
    }
}

/* Animarea meniului pe mobil */
.nav-links.nav-active {
    display: flex;
    animation: navSlide 0.5s forwards;
}

@keyframes navSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Slideshow */
.slideshow-container {
    position: relative;
    margin-top: -40px;
    max-height: 85vh;
    overflow: hidden;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    animation: zoomIn 20s infinite;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.overlay .btn {
    padding: 15px 30px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.overlay .btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.dot-container {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.7);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
    background-color: #007BFF;
}

/* Secțiuni generale */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    color: #007BFF;
}

section h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: #007BFF;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

section p {
    font-size: 18px;
    color: #555;
}

/* About Section */
.about p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s forwards;
}

/* Services Section */
.services {
    background-color: #f9f9f9;
}

.service-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-item {
    background-color: #ffffff;
    width: 30%;
    margin: 15px 0;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: fadeInUp 1s forwards;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.service-item i {
    font-size: 50px;
    color: #007BFF;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
    color: #555;
}

.service-item:hover i {
    color: #0056b3;
}

/* Amenities Section */
/* Secțiunea Facilități */
.amenities-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.amenities-list li {
    position: relative;
    flex: 1 1 200px;
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.amenities-list li:hover {
    transform: translateY(-5px);
}

.amenities-list i {
    font-size: 40px;
    color: #007BFF;
    margin-bottom: 15px;
}

.amenity-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 123, 255, 0.9);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    overflow-y: auto;
}

.amenities-list li.active .amenity-overlay {
    display: block;
}

.amenities-list li:hover .amenity-overlay {
    display: block;
}

/* Ajustări pentru dispozitive mobile */
@media (max-width: 768px) {
    .amenities-list li {
        flex: 1 1 100%;
        margin: 10px 0;
    }
}

/* Reservation Section */
.reservation {
    background-color: #f9f9f9;
}

.reservation-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    animation: fadeInUp 1s forwards;
}

.form-group label {
    font-size: 16px;
    margin-bottom: 5px;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 5px rgba(0,123,255,0.5);
}

.form-group.full-width {
    width: 100%;
}

button[type="submit"] {
    padding: 15px 30px;
    background-color: #007BFF;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    display: block;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

button[type="submit"]:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

button[type="submit"]::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.2);
    transition: left 0.3s;
    z-index: -1;
}

button[type="submit"]:hover::after {
    left: 0;
}

/* Contact Section */
.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.contact-item {
    width: 30%;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s;
    animation: fadeInUp 1s forwards;
}

.contact-item:hover {
    transform: translateY(-10px);
}

.contact-item i {
    font-size: 40px;
    color: #007BFF;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.contact-item p {
    font-size: 18px;
    color: #555;
}

.contact-item:hover i {
    color: #0056b3;
}

/* Footer */
footer {
    background-color: #343a40;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons a {
    color: #fff;
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    color: #007BFF;
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .service-item,
    .contact-item {
        width: 45%;
    }

    .logo img {
        width: 120px;
    }
}

@media (max-width: 768px) {
    .service-item,
    .contact-item {
        width: 100%;
    }

    .amenities-list li {
        width: 100%;
    }

    .overlay .btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 28px;
    }

    .nav-links li a {
        font-size: 18px;
    }
}

/* Stiluri suplimentare pentru elementele de limbă */
.lang {
    display: none;
}

.lang.active-lang {
    display: block;
}

.nav-item.lang {
    display: none;
}

.nav-item.lang.active-lang {
    display: inline-block;
}

/* Stiluri pentru scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #007BFF;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Efecte de focus */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0,123,255,0.5);
    border-color: #007BFF;
}

/* Efecte pentru link-urile sociale */
.social-icons a:hover {
    text-shadow: 0 0 10px rgba(0,123,255,0.7);
}

/* Efecte pentru logo la hover */
.logo img:hover {
    transform: rotate(-5deg) scale(1.05);
}

/* Efecte suplimentare pentru butoane */
button[type="submit"] {
    position: relative;
    overflow: hidden;
}

button[type="submit"]:active {
    transform: translateY(2px);
}

/* Efect de puls pentru butonul din overlay */
.overlay .btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0,123,255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(0,123,255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0,123,255, 0);
    }
}

/* Efecte de focus pentru butoanele de limbă */
.lang-button:focus {
    outline: none;
    color: #0056b3;
}

/* Efecte pentru overlay-ul facilităților la dispozitive touch */
@media (hover: none) and (pointer: coarse) {
    .amenities-list li:hover .amenity-overlay {
        display: none;
    }
}


/* ... (restul CSS-ului anterior) ... */

/* Rooms Section */
.rooms {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.rooms h2 {
    margin-bottom: 50px;
}

.room {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.room-image {
    flex: 1 1 50%;
    text-align: center;
}

.room-image img {
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.room-details {
    flex: 1 1 50%;
    padding: 20px;
}

.room-details h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #007BFF;
}

.room-details p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.room-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.room-features li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.room-features li i {
    color: #007BFF;
    margin-right: 10px;
}

.extra-bed-option {
    font-size: 16px;
    color: #333;
}

.extra-bed-option label {
    margin-right: 10px;
}

.extra-bed-option input[type="checkbox"] {
    transform: scale(1.2);
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .room {
        flex-direction: column;
    }

    .room-image,
    .room-details {
        flex: 1 1 100%;
    }

    .room-image img {
        width: 100%;
    }
}






/* Secțiunea Cameră */
/* Secțiunea Camere */
.room-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.room-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
    color: #333;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.room {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.room-image {
    flex: 1 1 500px;
    position: relative;
}

.room-image .main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
}

.left-arrow {
    left: 15px;
}

.right-arrow {
    right: 15px;
}

.thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    padding-bottom: 15px;
    background-color: #f9f9f9;
}

.thumbnails img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: border 0.3s, opacity 0.3s;
}

.thumbnails img:hover {
    opacity: 0.8;
}

.thumbnails img.active-thumbnail {
    border: 2px solid #007BFF;
    opacity: 1;
}

.room-details {
    flex: 1 1 500px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.room-details h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #007BFF;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.room-details p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.room-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.room-features li {
    font-size: 1em;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.room-features li i {
    color: #007BFF;
    margin-right: 10px;
    font-size: 1.2em;
}

.room-features li:hover {
    color: #007BFF;
}

.room-pricing {
    margin-top: 20px;
}

.room-pricing h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #007BFF;
    text-align: center;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.room-pricing table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1em;
}

.room-pricing th, .room-pricing td {
    padding: 15px;
    text-align: left;
}

.room-pricing th {
    background-color: #007BFF;
    color: #fff;
    font-size: 1.1em;
    border: 1px solid #ddd;
}

.room-pricing tr:nth-child(even) {
    background-color: #f2f2f2;
}

.room-pricing tr:hover {
    background-color: #e6f7ff;
}

.room-pricing td i {
    margin-right: 8px;
    color: #007BFF;
    font-size: 1.2em;
}

/* Responsivitate */
@media (max-width: 992px) {
    .room {
        flex-direction: column;
    }

    .room-image, .room-details {
        flex: 1 1 100%;
        margin: 0;
    }

    .room-details {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .arrow {
        font-size: 30px;
        width: 40px;
        height: 40px;
    }

    .thumbnails img {
        width: 60px;
        height: 45px;
    }

    .room-details h3 {
        font-size: 1.6em;
    }

    .room-details p {
        font-size: 1em;
    }

    .room-pricing h3 {
        font-size: 1.5em;
    }

    .room-pricing th, .room-pricing td {
        padding: 10px;
        font-size: 0.9em;
    }
}



/* Secțiunea Mapă */
.map {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.map h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #222;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsivitate */
@media (max-width: 768px) {
    .map h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .map-container iframe {
        height: 300px;
    }
}



/* Secțiunea Tarife */
/* Secțiunea Tarife */
.rates {
    padding: 60px 20px;
    background-color: #fff;
}

.rates .container {
    max-width: 1200px;
    margin: 0 auto;
}

.rates h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.8em;
    color: #333;
    position: relative;
}

.rates h2::after {
    content: '';
    width: 100px;
    height: 4px;
    background-color: #007BFF;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.rate-category {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rate-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.rate-category h3 {
    font-size: 1.8em;
    color: #007BFF;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.rate-category h3 i {
    margin-right: 10px;
}

.rate-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rate-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.rate-list li:last-child {
    border-bottom: none;
}

.rate-list li span:first-child {
    display: flex;
    align-items: center;
    color: #333;
}

.rate-list li span:first-child i {
    margin-right: 8px;
    color: #007BFF;
}

.rate-list li span:last-child {
    font-weight: bold;
    color: #555;
}

/* Responsivitate */
@media (max-width: 1024px) {
    .rates h2 {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .rates h2 {
        font-size: 2.2em;
    }

    .rates-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .rate-category h3 {
        font-size: 1.6em;
    }

    .rate-list li span:first-child i,
    .rate-category h3 i {
        font-size: 1.2em;
    }

    .rate-list li span:last-child {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .rates h2 {
        font-size: 2em;
    }

    .rate-category h3 {
        font-size: 1.4em;
    }

    .rate-list li span:first-child {
        font-size: 0.9em;
    }

    .rate-list li span:last-child {
        font-size: 0.9em;
    }
}





















/* Secțiunea Camere */
.camere-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.camere-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.camere-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.8em;
    color: #333;
    position: relative;
}

.camere-section h2::after {
    content: '';
    width: 100px;
    height: 4px;
    background-color: #007BFF;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.camere-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.camera {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.camera:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Containerul pentru imagini */
.camera-images {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background-color: #000; /* Fundal negru pentru a evidenția imaginile */
}

/* Slider-ul de imagini */
.camera-slider {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease-in-out;
}

/* Imaginile din slider */
.camera-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asigură că imaginea umple complet containerul */
    flex-shrink: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Săgețile de navigare */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 123, 255, 0.7);
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: background-color 0.3s;
}

.arrow:hover {
    background-color: rgba(0, 123, 255, 0.9);
}

.left-arrow {
    left: 15px;
}

.right-arrow {
    right: 15px;
}

/* Miniaturile (thumbnails) */
.thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap; /* Permite rularea pe mai multe rânduri pe ecrane mici */
}

.thumbnails img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    margin: 5px;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: opacity 0.3s, border 0.3s;
}

.thumbnails img:hover {
    opacity: 1;
}

.thumbnails img.active-thumbnail {
    opacity: 1;
    border: 2px solid #007BFF;
}

/* Detaliile camerei */
.camera-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.camera-details h3 {
    font-size: 1.8em;
    color: #007BFF;
    margin-bottom: 15px;
}

.camera-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.camera-pricing, .camera-features {
    margin-bottom: 20px;
}

.camera-pricing h4, .camera-features h4 {
    font-size: 1.4em;
    color: #007BFF;
    margin-bottom: 10px;
}

.camera-pricing ul, .camera-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.camera-pricing ul li, .camera-features ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.camera-pricing ul li:last-child, .camera-features ul li:last-child {
    border-bottom: none;
}

.camera-pricing ul li span:first-child, .camera-features ul li span:first-child {
    display: flex;
    align-items: center;
    color: #333;
}

.camera-pricing ul li span:first-child i, .camera-features ul li span:first-child i {
    margin-right: 8px;
    color: #007BFF;
}

.camera-pricing ul li span:last-child, .camera-features ul li span:last-child {
    font-weight: bold;
    color: #555;
}

/* Responsivitate */
@media (max-width: 1024px) {
    .camere-section h2 {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .camere-section h2 {
        font-size: 2.2em;
    }

    .camere-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .arrow {
        font-size: 18px;
        padding: 8px;
    }

    .thumbnails img {
        width: 50px;
        height: 38px;
    }

    .camera-images {
        padding-top: 75%; /* Ajustează raportul de aspect pentru ecrane mai mici */
    }
}

@media (max-width: 480px) {
    .camere-section h2 {
        font-size: 2em;
    }

    .camera-details h3 {
        font-size: 1.6em;
    }

    .camera-pricing h4, .camera-features h4 {
        font-size: 1.2em;
    }

    .camera-description {
        font-size: 1em;
    }
}

/* Optimizări suplimentare pentru accesibilitate și performanță */
.camera-slider img {
    /* Adăugarea unei tranziții pentru încărcarea imaginilor */
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.camera-slider img.active {
    opacity: 1;
}
