/* Reset general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background general */
body {
    background-color: #8b5e3c;
    /* Oak brown */
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    /* Text alb */
    line-height: 1.6;
}

/* Header */
header {
    background-color: #6b442c;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Titlu principal */
header h1 {
    margin-bottom: 10px;
    font-size: 32px;
    letter-spacing: 1px;
}

/* Paragraf header */
header p {
    font-size: 14px;
    color: #ffd700;
    margin-bottom: 10px;
}

/* Meniu */
nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s, border-bottom 0.3s;
    padding-bottom: 4px;
}

nav a:hover {
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
}

/* Conținut principal */
main {
    padding: 30px;
    text-align: justify;
}

/* Secțiuni */
section {
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    /* Fundal ușor transparent */
    padding: 20px;
    border-radius: 8px;
}

/* Imagini secțiuni */
section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #6b442c;
    font-size: 14px;
    color: #fff;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
}

/* Stil pentru fiecare card de produs */
.product {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Stil pentru imagini produse */
.product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

/* Container pentru toate produsele */
.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Container pentru sectiunile din Contact */
.sections-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 20px;
}

/* Stil butoane WhatsApp */
.btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #25D366;
    /* Verde WhatsApp */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #1ebd58;
    /* Verde mai închis la hover */
}

/* Galerie */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

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

/* Formular contact */
form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form input,
form textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    background-color: #25D366;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #1ebd58;
}