/* --- RESET & VARIABLES --- */
:root {
    --bg-dark: #121212;
    --text-light: #ffffff;
    --accent: #FF1E00C0;
    --accent-dark: #FF1E00C0;
    --nav-bg: rgba(18, 18, 18, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* --- BUTTONS --- */
.btn-primary {
    background: var(--accent);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-block;
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* --- NAVBAR --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    z-index: 100;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
}
.logo {
    font-size: 1.5rem;
    font-weight: 800;
}
.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin-right: 30px;
    font-size: 0.9rem;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 120px 5% 40px 5%;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(255, 30, 0, 0.754) 100%);
    z-index: -1;
}
.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    margin-bottom: 60px;
}
.hero-main-text p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.hero-main-text h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
}
.hero-side-text {
    max-width: 300px;
}
.hero-side-text h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.hero-side-text p {
    font-size: 0.9rem;
    color: #ccc;
}
.hero-services {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}
.service {
    font-size: 0.9rem;
}
.service span {
    color: var(--accent);
    font-weight: bold;
    margin-right: 5px;
}

/* --- BRAND SLIDER (Infinite Marquee) --- */
.brand-slider {
    padding: 40px 5%;
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.slider-title {
    font-size: 0.8rem;
    color: #aaa;
    min-width: 150px;
}
.slider-track {
    display: flex;
    gap: 50px;
    animation: scroll 15s linear infinite;
}
.brand {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- COPYWRITING SECTION --- */
.copywriting {
    padding: 100px 5%;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.copy-left, .copy-right {
    flex: 1;
}
.copy-left h3 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.copy-left h2 {
    font-size: 3rem;
    line-height: 1.2;
}
.copy-right p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}
.action-row {
    display: flex;
    align-items: center;
    gap: 20px;
}
.sub-text {
    font-size: 0.8rem;
    color: #aaa;
}

/* --- SHOWCASE SECTION --- */
.showcase {
    padding: 0 5% 100px 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.card {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: #222; /* Fallback */
}
.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}
.card:hover img {
    transform: scale(1.05);
}

/* --- FREE GIFT SECTION --- */
.free-gift {
    padding: 60px 5%;
    text-align: center;
}
.gift-box {
    background: #1a1a1a;
    border: 1px dashed var(--accent);
    padding: 50px 20px;
    border-radius: 20px;
}
.gift-box h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.gift-box p {
    color: #aaa;
    margin-bottom: 30px;
}
.btn-gift {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.btn-gift:hover {
    background: var(--accent);
    color: #fff;
}

/* --- CONTACT SECTION --- */
.contact {
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}
.contact-container {
    background: #1a1a1a;
    padding: 50px;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    text-align: center;
}
.contact-container h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}
.contact-container p {
    color: #aaa;
    margin-bottom: 30px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #222;
    color: #fff;
    font-size: 1rem;
    outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--accent);
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .hero-content { flex-direction: column; align-items: flex-start; }
    .hero-main-text h1 { font-size: 3.5rem; }
    .hero-side-text { margin-top: 30px; }
    .hero-services { flex-wrap: wrap; gap: 10px; }
    .copywriting { flex-direction: column; }
    .showcase { grid-template-columns: 1fr; }
    .nav-links { display: none; /* Poti adauga un burger menu in JS ulterior daca vrei */ }
}
