:root {
    --primary-green: #4A7A3C;
    --dark-bg: #0f0f0f;
    --darker-bg: #050505;
    --accent-gold: #c5a059;
    --text-light: #e0e0e0;
    --warning-red: #ff4d4d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* Header & Logo Modificat */
header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: flex-start; /* Sau center daca vrei logo pe mijloc */
}

.logo-link {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.9); /* Cerc alb semitransparent */
    padding: 10px;
    border-radius: 50%; /* Face containerul rotund */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo {
    height: 90px; /* Logo mai mare */
    width: auto;
    display: block;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('4.jpg') no-repeat center center/cover; /* Asigura-te ca e .jpg sau .jpeg */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.85));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

h1 span {
    color: var(--primary-green);
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    margin-top: 10px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(74, 122, 60, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 122, 60, 0.6);
    background: #5a934a;
}

.cta-button.gold {
    background: var(--accent-gold);
    color: black;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.cta-button.gold:hover {
    background: #d4b270;
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.6);
}

/* Sections General */
section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Warning Section */
.warning {
    background: #220000;
    padding: 50px 0;
    text-align: center;
    border-top: 3px solid var(--warning-red);
    border-bottom: 3px solid var(--warning-red);
}

.warning h2 {
    color: var(--warning-red);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.warning strong {
    color: white;
}

/* Arsenal Grid */
.arsenal {
    background: var(--darker-bg);
}

.section-header h2 {
    color: var(--primary-green);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    border-bottom: 5px solid var(--primary-green);
    transition: transform 0.3s ease, background 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    background: #252525;
}

.card h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.card strong {
    color: var(--primary-green);
}

/* Team Section */
.team {
    background: var(--dark-bg);
    text-align: center;
}

.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.member {
    max-width: 300px;
}

.img-container {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member:hover img {
    transform: scale(1.1);
}

figcaption h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

/* Location Short Section */
.location-info {
    background: var(--primary-green);
    color: white;
    text-align: center;
    padding: 50px 0;
}

.location-info h2 {
    margin-bottom: 20px;
    color: var(--darker-bg);
}

/* NOU: Contact Details Extended Section */
.contact-details-extended {
    background: #111;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.contact-item {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
}

.contact-item h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-link, address {
    color: white;
    text-decoration: none;
    font-style: normal;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--primary-green);
}

/* Contact Form Section */
.contact {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('3.jpeg') no-repeat center/contain;
    background-attachment: fixed;
}

form {
    max-width: 500px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input {
    padding: 15px 20px;
    background: rgba(255,255,255,0.05);
    border: 2px solid #333;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* Footer - Modificat pentru link */
footer {
    background: #000;
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: var(--accent-gold); /* Culoarea aurie pentru link */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

/* NOU: Sticky Call Button */
.sticky-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-green);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    z-index: 100;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.sticky-call-btn:hover {
    background-color: var(--accent-gold);
    color: black;
    transform: scale(1.05);
}

.call-icon {
    font-size: 1.2rem;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(74, 122, 60, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(74, 122, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 122, 60, 0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Centrare meniu pe mobil */
    .nav-container {
        justify-content: center;
    }

    .header {
        padding: 15px 0;
    }
    
    /* Logo mult mai mare pe mobil */
    .logo {
        height: 160px !important;
    }

    /* SOLUȚIA PENTRU SUPRAPUNERE */
    .hero {
        display: block !important; /* Oprește "elasticul" care trage textul pe centru */
        padding-top: 270px !important; /* SPAȚIUL FIX: 160px logo + 110px aer sub el */
        padding-bottom: 80px !important;
        height: auto !important;
        min-height: 100vh !important;
    }

    .hero-content {
        display: block !important;
        margin: 0 auto !important; /* Ține textul centrat doar stânga-dreapta */
    }

    .hero-content h1 {
        font-size: 1.6rem !important; 
        line-height: 1.3 !important;
        margin-top: 0 !important; /* Ne asigurăm că nu apar margini invizibile în plus */
    }
    
    .team-grid, .contact-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .sticky-call-btn {
        bottom: 20px;
        right: 20px;
        padding: 15px;
        border-radius: 50%;
        z-index: 1000; 
    }
    
    .call-text {
        display: none; 
    }
}

/* Stiluri Banner GDPR Fixat */
.gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    border-top: 4px solid #4A7A3C;
    padding: 20px 0;
    z-index: 9999; /* Se asigură că stă peste tot */
    box-shadow: 0 -5px 20px rgba(0,0,0,0.8);
}

.gdpr-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.gdpr-content p {
    font-size: 0.85rem;
    color: #e0e0e0;
    margin: 0;
}

.gdpr-content a {
    color: #c5a059;
    text-decoration: underline;
}

.gdpr-buttons {
    display: flex;
    gap: 10px;
}

.gdpr-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: transform 0.2s;
}

.gdpr-btn:hover {
    transform: scale(1.05);
}

.gdpr-btn.accept {
    background: #4A7A3C;
    color: white;
}

.gdpr-btn.exit {
    background: #333;
    color: #ccc;
}

/* Ajustare pentru desktop: butoanele să stea la dreapta textului */
@media (min-width: 992px) {
    .gdpr-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}