/* ===== Base Reset ===== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #0f0f0f;
    color: #f2f2f2;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* ===== Layout Container ===== */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Hero Section ===== */

.autor-hero {
    padding: 160px 0 140px;
}

.autor-hero .container {
    display: flex;
    align-items: center;
    gap: 100px;
}

/* Image */

.autor-image img {
    width: 100%;
    max-width: 440px;
    border-radius: 10px;
    transition: transform 0.6s ease;
    object-fit: cover;
    filter: saturate(90%) contrast(105%);
}

.autor-image img:hover {
    transform: scale(1.02);
}

/* Text */

.autor-content {
    max-width: 480px;
}

.autor-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    margin: 0 0 25px 0;
    letter-spacing: 0.5px;
}

.autor-subline {
    font-size: 18px;
    color: #bdbdbd;
    margin-bottom: 35px;
}

.autor-core {
    font-size: 20px;
    line-height: 1.7;
}

/* ===== Mobile ===== */

@media (max-width: 900px) {

    .autor-hero {
        padding: 120px 0;
    }

    .autor-hero .container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .autor-content {
        max-width: 100%;
    }

    .autor-content h1 {
        font-size: 40px;
    }

    .autor-core {
        margin: 0 auto;
    }
}

/* ===== Principii Section ===== */

.autor-principii {
    padding: 140px 0;
    background: #151515;
}

.container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

.autor-principii h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 25px;
}

.principii-intro {
    font-size: 18px;
    color: #bdbdbd;
    margin-bottom: 70px;
}

.principiu {
    margin-bottom: 60px;
}

.principiu h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.principiu p {
    font-size: 17px;
    line-height: 1.8;
    color: #c8c8c8;
}


/* ===== Evolutia Section ===== */

.autor-evolutia {
    padding: 140px 0;
    background: #0f0f0f;
}

.autor-evolutia h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 40px;
}

.evolutia-intro {
    font-size: 18px;
    margin-bottom: 60px;
    color: #bdbdbd;
}

.evolutia-block {
    margin-bottom: 45px;
}

.evolutia-block p {
    font-size: 17px;
    line-height: 1.9;
    color: #c8c8c8;
}

/* ===== De ce GGM Section ===== */

.autor-de-ce {
    padding: 150px 0;
    background: #151515;
}

.autor-de-ce h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 40px;
}

.dece-intro {
    font-size: 18px;
    margin-bottom: 70px;
    color: #bdbdbd;
}

.dece-block {
    margin-bottom: 50px;
}

.dece-block p {
    font-size: 17px;
    line-height: 1.9;
    color: #c8c8c8;
}

/* ===== Final Section ===== */

.autor-inchidere {
    padding: 160px 0 180px;
    background: #0f0f0f;
    text-align: center;
}

.inchidere-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
}

.inchidere-sub {
    font-size: 18px;
    color: #bdbdbd;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.autor-hero h1,
.autor-principii h2,
.autor-evolutia h2,
.autor-de-ce h2 {
    letter-spacing: 0.6px;
}

p {
    letter-spacing: 0.2px;
}

.autor-principii,
.autor-evolutia,
.autor-de-ce,
.autor-inchidere {
    border-top: 1px solid rgba(255,255,255,0.04);
}

/* ===== Minimal Nav ===== */

.autor-nav {
    padding: 30px 0;
    background: #0f0f0f;
}

.nav-logo {
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: #f2f2f2;
    letter-spacing: 0.5px;
}

.nav-logo:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease, transform 2s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Footer ===== */

.footer {
    background-color: var(--bg);
    border-top: 1px solid #1f1f1f;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #1f1f1f;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
}