﻿/* ==========================================
   RESET & BAZĂ
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Rubik", "Inter", sans-serif;
    font-weight: 400;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   LAYOUT & CONTAINER RESPONSIVE
   ========================================== */
.wrapper {
    background: linear-gradient(360deg, rgba(204, 179, 14, 0.82) 40%, rgba(255, 255, 255, 1) 80%);
    width: 100%;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.line {
    width: 100%;
    height: 6px;
    background: linear-gradient(180deg, rgba(158, 149, 149, 0.82) 11%, rgba(255, 255, 255, 1) 56%);
}

/* ==========================================
   HEADER & NAVIGAȚIE
   ========================================== */
header.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    position: relative;
    z-index: 100;
}

.logo img {
    width: 130px;
    height: auto;
}

/* Meniu Desktop */
header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

header nav ul li a {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
}

header nav ul li.active a {
    color: #E87D0E;
}

header nav ul li.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 10px;
    background: #FA9021;
    margin-top: 4px;
}

header nav ul li:not(.active):not(.btn) a:hover {
    color: #E87D0E;
}

header nav ul li.btn a,
.btn-hero {
    background-color: #FA9021;
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
}

header nav ul li.btn a:hover,
.btn-hero:hover {
    background-color: #FF8400;
    transform: translateY(-2px);
}

/* Buton Hamburger (pentru telefon) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px 100px 20px;
    gap: 40px;
}

.hero--info {
    flex: 1;
    max-width: 600px;
}

.hero--info h2 {
    color: #E87D0E;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero--info h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero--info p {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero--img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero--img img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ==========================================
   SECTIUNEA CONTACT
   ========================================== */
.contact {
    background: #ffffff;
    padding: 80px 0;
}

.contact h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.contact p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    color: #555;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #222;
}

.info-item p a {
    color: #FA8305;
    font-weight: 700;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    width: 100%;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    background: #FA8305;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #E87D0E;
}

/* ==========================================
   FOOTER (ALBĂ)
   ========================================== */
footer {
    background: #ffffff;
    color: #000000;
    padding: 60px 0 20px 0;
    border-top: 1px solid #e0e0e0;
}

footer .blocks {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.footer-logo p {
    font-weight: 600;
}

.footer-about h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #FA9021;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-links a:hover img {
    transform: scale(1.15);
}

.footer-contact p a {
    color: #000000;
}

.footer-contact p a:hover {
    color: #FA9021;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #eeeeee;
    padding-top: 20px;
    font-size: 14px;
    color: #666666;
}

/* ==========================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================== */

/* Tablete (Max 992px) */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-bottom: 60px;
    }

    .hero--info {
        max-width: 100%;
    }

    .hero--info h1 {
        font-size: 36px;
    }

    footer .blocks {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Telefoane Mobile (Max 768px) */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    header nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none;
        padding: 20px 0;
    }

    header nav.active {
        display: block;
    }

    header nav ul {
        flex-direction: column;
        gap: 15px;
    }

    header nav ul li.active::after {
        display: none;
    }

    .hero--info h1 {
        font-size: 28px;
    }

    .contact-info {
        flex-direction: column;
        gap: 25px;
    }
}