/* ===== RESET & VARIABILE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #c4283e;
    --primary-dark: #911c1c;
    --primary-light: #fdf0f2;
    --bg: #f6f6f6;
    --white: #ffffff;
    --text: #1a1a1a;
    --text-muted: #666;
    --border: #e8e8e8;
    --nav-height: 70px;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --transition: 0.3s ease;
}

body {
    font-family: 'Raleway', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-logo img {
    height: 44px;
    transition: transform var(--transition);
    display: block;
}
.nav-logo:hover img { transform: scale(1.08); }

.nav-links {
    display: flex;
    gap: 0.25rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.45rem 0.85rem;
    border-radius: 6px;
    transition: background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
    background: var(--primary-dark);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: url('images/intro2.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.48);
}
.hero-content {
    position: relative;
    color: white;
    padding: 2rem;
    max-width: 750px;
    animation: fadeUp 0.9s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 24px rgba(196,40,62,0.5);
}
.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
    box-shadow: 0 8px 32px rgba(196,40,62,0.5);
}

/* ===== STATS ===== */
.stats-bar {
    background: var(--primary);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.stat-item {
    padding: 1.4rem 2.5rem;
    text-align: center;
    color: white;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
}

/* ===== PAGE HEADER (pentru pagini interne) ===== */
.page-header {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: calc(var(--nav-height) + 3rem) 2rem 3rem;
}
.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}
.page-header p {
    opacity: 0.85;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

/* ===== LAYOUT PAGINI ===== */
.page-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

/* ===== CONTENT BLOCKS ===== */
.content-block {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}
.content-block h2 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    font-weight: 800;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-light);
}
.content-block h3 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin: 1.75rem 0 0.6rem;
    font-weight: 700;
}
.content-block p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}
.content-block p:last-child { margin-bottom: 0; }
.content-block ul, .content-block ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.content-block li {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 0.4rem;
}

blockquote {
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    background: var(--primary-light);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}
blockquote p {
    font-style: italic;
    font-size: 1.05rem !important;
    margin-bottom: 0.5rem !important;
}
blockquote p:last-child { margin-bottom: 0 !important; }

/* ===== HOMEPAGE SECTIONS ===== */
.home-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}
.home-section + .home-section {
    padding-top: 0;
}

.section-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    position: relative;
}
.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 48px; height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text);
    max-width: 720px;
}

/* Cards (Ce facem) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    border-top: 3px solid var(--primary);
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 36px rgba(0,0,0,0.12);
}
.card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

/* Callout box */
.callout {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary);
    margin-top: 2rem;
}
.callout p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--primary); }

/* Social links */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    transition: transform var(--transition), opacity var(--transition);
}
.social-link:hover { transform: translateY(-2px); opacity: 0.9; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.facebook { background: #1877f2; }
.social-link.tiktok { background: #010101; }

/* ===== ECHIPA ===== */
.team-intro {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 1.5rem 0;
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 2.5rem auto 5rem;
    padding: 0 1.5rem;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: center;
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}
.team-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.team-card-info {
    padding: 1.1rem 1rem 1.25rem;
}
.team-card-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}
.team-card-info .role {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}
.contact-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-details strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
    font-weight: 700;
}
.contact-details a, .contact-details span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}
.contact-details a {
    color: var(--primary);
    text-decoration: none;
}
.contact-details a:hover { text-decoration: underline; }

/* ===== PRESĂ ===== */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.press-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow);
    text-decoration: none;
    border-left: 3px solid var(--primary);
    transition: transform var(--transition), box-shadow var(--transition);
}
.press-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.11);
}
.press-source {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--primary);
}
.press-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}
.press-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: auto;
}

/* ===== FOOTER ===== */
footer {
    background: #111;
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 2rem 1.5rem;
    font-size: 0.85rem;
}
footer a { color: var(--primary); }
footer a:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0; right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 0.75rem;
        gap: 0.15rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        border-radius: 6px;
    }
    .hamburger { display: flex; }

    .hero h1 { font-size: 2.5rem; }

    .stats-bar { flex-direction: row; }
    .stat-item {
        padding: 1rem 1.25rem;
        border-right: 1px solid rgba(255,255,255,0.2);
    }
    .stat-number { font-size: 1.5rem; }

    .home-section { padding: 3rem 1rem; }
    .cards-grid { grid-template-columns: 1fr 1fr; }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
        margin-bottom: 3rem;
    }

    .page-content { padding: 2rem 1rem 4rem; }
    .content-block { padding: 1.5rem; }

    .contact-grid { grid-template-columns: 1fr; }

    .social-links { justify-content: center; }
}

@media (max-width: 480px) {
    .cards-grid { grid-template-columns: 1fr; }
    .stat-item { padding: 0.85rem 1rem; }
    .stat-number { font-size: 1.25rem; }
}
