
* {
  box-sizing: border-box;
}


a{
    text-decoration: none;
    font-style: none;
    color:#111;
}
a:hover{
    font-weight: bold;
    text-decoration: underline;
    color: #007bff;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.custom-slider {
    position: relative;
    width: 100%;
    height: auto;
}

.slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* Dot indicators */
.indicators {
    text-align: center;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
}

.dot {
    height: 14px;
    width: 14px;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.4s ease;
    cursor: pointer;
}

.dot.active {
    background-color: #007bff;
}


 .card-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }

        .card {
            border: 1px solid #ddd;
            border-radius: 8px;
            width: 220px;
            padding: 10px;
            text-align: center;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
            background-color: #fff;
        }

        .card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 10px;
        }

        .card h3 {
            margin: 0;
            font-size: 1.1em;
        }

        .card p {
            margin: 5px 0;
            font-weight: bold;
            color: #2c3e50;
        }

.btn-create {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #38c172;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
}
.btn-create:hover {
    background-color: #2fa360;
}





.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: gold;
    padding: 10px 30px;
    font-family: sans-serif;
    border-bottom: 2px solid #ccc;
    height: 60px;
}

.nav-wrapper .brand {
    font-weight: bold;
    font-size: 24px;
    color: green;
}

.nav-wrapper nav {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.nav-wrapper nav a {
    text-decoration: none;
    color: green;
    font-weight: bold;
    transition: color 0.3s ease;
    font-size: 20px;
    
}

.nav-wrapper nav a:hover {
    border-bottom:3px solid green;
}

.nav-wrapper .welcome {
    color: #444;
    font-weight: normal;
    margin-right: 10px;
}

/* Ajustează conținutul paginii sub meniu */
.content-area {
    padding-top: 80px;
}

.burger-menu {
  display: none; /* Ascuns pe ecrane mari */
}




/* .product-card {
  width: 250px;
  height: auto;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: #fff;
} */

 


#popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 20px #000;
}

.popup-content img {
    display: block;
    margin: 0 auto 10px auto;
    max-width: 100%;
    max-height: 60vh;
}

#popup-text{
    margin-top: 20px;
    font-size: 16px;
    color: #333;
    max-width: 500px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}


/* .category-filter,
.right-sidebar {
  flex: 0 0 200px;
  max-width: 200px;
}

.category-filter ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-filter li {
    margin-bottom: 8px;
}

.category-filter a {
    text-decoration: none;
    display: block;
    padding: 6px 10px;
    border-radius: 5px;
    transition: background 0.2s ease;
    border: 1px solid;
}

.category-filter a.active {
    background-color: gold;
    color: green;
    text-decoration: underline;
    
}

.category-filter a:hover {
    font-weight: bold;
    color: brown;
    text-decoration: underline;
} */



.contact-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    font-family: sans-serif;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.contact-container h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #444;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-map {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
    width: 200px;
}

/* Button dropdown */
.dropbtn {
    background-color: #333;
    color: white;
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

/* Dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 180px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 6px;
    overflow: hidden;
}

/* Links in dropdown */
.dropdown-content a {
    color: #333;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    transition: background 0.2s ease;
}

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

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}
.suport-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    font-family: sans-serif;
}

.suport-container h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.suport-container h3 {
    font-size: 20px;
    color: #444;
    margin-top: 30px;
}

.suport-container ul {
    padding-left: 20px;
    margin-top: 10px;
}

.suport-container li {
    margin-bottom: 8px;
    color: #555;
}

.suport-container p {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
}

.suport-container a {
    color: #007bff;
    text-decoration: none;
}

.suport-container a:hover {
    text-decoration: underline;
}



.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 15px 20px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.cookie-banner a {
    color: #0af;
    text-decoration: underline;
}

.cookie-banner button {
    background: #0af;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 5px;
    cursor: pointer;
}
.services-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    font-family: sans-serif;
}

.services-container h1, .services-container h3 {
    color: #333;
    margin-bottom: 10px;
}

.services-container p {
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
}

.services-container a {
    color: #007bff;
    text-decoration: none;
}

.services-container a:hover {
    text-decoration: underline;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery img:hover {
    transform: scale(1.03);
}

.container {
    max-width: 1200px;
    margin: auto;
}

footer {
  background: #111;
  padding: 40px 20px 20px 20px;
  font-size: 14px;
  color: gold;
  border-top:3px solid gold;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-col {
  flex: 1 1 200px; /* min width 200px, crește flexibil */
  min-width: 180px;
}

.footer-col h3 {
  margin-bottom: 10px;
  font-size: 16px;
  color:gold;
}

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

.footer-col ul li {
  margin-bottom: 5px;
}

.footer-col ul li a {
  text-decoration: none;
  color: gold;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}
.footer-col h3 a {
 color: gold;
}

.footer-bottom {
  padding-top: 10px;
  border-top:1px solid gold;
  font-size: 13px;
  color: gold;
}
/* FIX pentru margine dreaptă urâtă pe telefon */
html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

.home-page {
  max-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}






.container-home {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* Coloanele desktop */
.left,
.center,
.right {
  padding: 10px;
  box-sizing: border-box;
}

.left {
  width: 20%;
  margin-top: 40px;
  padding: 20px;
}

.left button{
    display: flex;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    background-color: gold;
    color:green;
    font-size: 20px;
}

.left button:hover{
    cursor: pointer;
}

.center {
  width: 50%;
  padding: 30px;
}
.center p{
    font-size: 20px;
}
.center li{
    font-size: 20px;
}

.right {
  width: 30%;
  margin-top: 40px;
}

.right img{
    display: block;
    margin: 0 auto;
}

.article {
    display: none;
}

.article.active {
    display: block;
}
