/* Font Google (adaugă în <head>):
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&display=swap" rel="stylesheet">
*/

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

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #E7F0F7; /* gri-albstru deschis */
    color: #243B55; /* gri închis */
    line-height: 1.7;
    font-size: 16px;
}

header {
    background-color: #1769AA; /* albastru electric */
    padding: 1.5rem 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(23, 105, 170, 0.7);
}

header h1 {
    font-size: 2.6rem;
    color: #F0F7FF;
    font-weight: 700;
    letter-spacing: 1.3px;
}

nav {
    margin-top: 0.7rem;
}

nav a {
    color: #F0F7FF;
    margin: 0 1.4rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #00BFFF; /* cyan vibrant */
}

section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

section:nth-child(even) {
    background-color: #D3E6F5; /* albastru pal pastel */
    color: #243B55;
}

h2 {
    color: #008080; /* turcoaz închis */
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

p, li {
    color: #243B55;
    font-weight: 400;
    font-size: 1.1rem;
}

ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

ul li {
    margin: 0.5rem 0;
}

blockquote {
    font-style: italic;
    background-color: #F0F7FF;
    padding: 1.2rem 1.5rem;
    border-left: 5px solid #00BFFF;
    margin: 1rem auto 2rem;
    max-width: 700px;
    color: #1769AA;
}

.cta-button {
    display: inline-block;
    background-color: #1769AA;
    color: white;
    padding: 1rem 2.3rem;
    border: none;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-top: 2rem;
    box-shadow: 0 6px 14px rgba(23, 105, 170, 0.8);
}

.cta-button:hover {
    background-color: #00BFFF;
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.9);
    cursor: pointer;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

form label {
    font-weight: 600;
    color: #1769AA;
    font-size: 1rem;
}

form input, form textarea {
    background-color: #F0F7FF;
    color: #243B55;
    border: 2px solid #008080;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

form input:focus, form textarea:focus {
    border-color: #00BFFF;
    outline: none;
}

form textarea {
    resize: vertical;
    min-height: 100px;
}

form button {
    background-color: #1769AA;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 35px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(23, 105, 170, 0.8);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

form button:hover {
    background-color: #00BFFF;
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.9);
}

.info p {
    margin: 0.8rem 0;
}

footer {
    background-color: #1769AA;
    color: #D3E6F5;
    text-align: center;
    padding: 1.3rem;
    font-size: 0.9rem;
    border-top: 1px solid #00BFFF;
    margin-top: 3rem;
}

/* Prețuri */

.price-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    background-color: #D3E6F5;
    border: 2px solid #008080;
    border-radius: 18px;
    padding: 2rem;
    width: 280px;
    box-shadow: 0 6px 18px rgba(0, 191, 255, 0.4);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    text-align: center;
    color: #243B55;
}

.price-card:hover {
    box-shadow: 0 10px 28px rgba(0, 191, 255, 0.7);
    transform: translateY(-7px);
}

.price-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.price {
    font-size: 2rem;
    color: #00BFFF;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.price-card p {
    font-size: 1rem;
    margin-bottom: 1.6rem;
}

.price-button {
    background-color: #1769AA;
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.price-button:hover {
    background-color: #00BFFF;
    cursor: pointer;
}

/* Galerie */

#galerie {
    background-color: #F0F7FF;
    padding: 4rem 2rem;
    text-align: center;
    color: #243B55;
}

#galerie p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

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

/* FAQ */

#faq {
    background-color: #D3E6F5;
    padding: 4rem 2rem;
    color: #243B55;
    max-width: 1000px;
    margin: 3rem auto 0;
    border-radius: 14px;
}

#faq h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.faq-item {
    background-color: #F0F7FF;
    border-left: 5px solid #00BFFF;
    margin-bottom: 1.8rem;
    padding: 1.4rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: #1769AA;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item a {
    color: #00BFFF;
    text-decoration: underline;
}

/* Responsive */

@media (max-width: 768px) {
    .price-cards {
        flex-direction: column;
        align-items: center;
    }
    nav a {
        margin: 0 0.7rem;
        font-size: 1rem;
    }
}
