/* Modern Dark Theme - Elegant Dark Grey Nuances */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #1E1E1E;
    color: #E0E0E0;
    padding: 20px;
    line-height: 1.6;
}

header {
    text-align: center;
    margin-bottom: 40px;
    background: #2A2A2A;
    padding: 20px;
    border-radius: 10px;
}

header h1 {
    font-size: 1.8em;
    color: #76C893;
}

header p {
    font-size: 1em;
    color: #BBBBBB;
}

/* Form Styling */
form {
    margin: 20px 0;
    text-align: center;
    background: #292929;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

form label {
    display: block;
    font-size: 18px;
    color: #76C893;
    margin-bottom: 10px;
}

form select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #1E1E1E;
    color: #E0E0E0;
    border: 1px solid #76C893;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

form select:hover {
    background-color: #333333;
}

form select:focus {
    outline: none;
    background-color: #333333;
    border-color: #76C893;
}


/* Product listing */
.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    justify-items: center;
}

.product-container div {
    background: #292929;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    text-align: center;
}

.product-container div:hover {
    transform: scale(1.05);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

h3 {
    font-size: 22px;
    color: #76C893;
    margin: 10px 0;
}

.category, .description, .price {
    font-size: 16px;
    color: #B0B0B0;
}

.price {
    font-weight: bold;
    color: white;
    margin-top: 10px;
}

.contact a {
    text-decoration: none;
    color: #BBBBBB;
    /*font-weight: bold;*/
}

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

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #BBBBBB;
}

/* Buttons */
.inregistrare-autentificare-btn {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.login-btn, .signup-btn {
    padding: 10px 20px;
    border: 1px solid #76C893;
    border-radius: 8px;
    color: #BBBBBB;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.login-btn:hover, .signup-btn:hover {
    background: #76C893;
    color: #1E1E1E;
}
