/* ======================================================
   LIKTEŅA MATRICA
   PAMATA STILI
====================================================== */

:root{

    --gold:#ab9953;
    --gold-hover:#8f7f43;

    --title:#7b5a33;
    --text:#444;

    --border:#d9d2c6;
    --white:#ffffff;
}


/* ======================================================
   LAPAS STRUKTŪRA
====================================================== */

.matrix-page{
    padding:70px 0;
}


/* ======================================================
   VIRSRAKSTS
====================================================== */

.page-title{
    margin:0 0 20px;

    color:#9b6f3c;

    text-align:center;

    font-family:"Cormorant Garamond",serif;
    font-size:55px;
    font-weight:500;
    line-height:1.1;
}

.page-subtitle{
    max-width:700px;

    margin:50px auto 45px;

    color:#666;

    text-align:center;

    font-size:18px;
    line-height:1.7;
}


/* ======================================================
   GALVENAIS ATTĒLS
====================================================== */

.content-image{
    max-width:1100px;
    margin:0 auto 40px;
}

.content-image img{
    display:block;

    width:100%;
    height:280px;

    object-fit:cover;

    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.18);
}


/* ======================================================
   KALKULATORS
====================================================== */

.calculator-card{
    max-width:900px;

    margin:0 auto 40px;
}


/* ======================================================
   FORMA
====================================================== */

.form-block{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;

    gap:18px;
    margin-bottom:20px;
}

.reset-block{
    display:flex;
    justify-content:center;

    margin-bottom:50px;
}


/* ======================================================
   DATUMA IEVADE
====================================================== */

#birthDate{
    width:260px;
    height:58px;

    padding:0 18px;

    background:#fff;
    color:var(--text);

    border:1px solid var(--border);
    border-radius:14px;

    font-size:17px;

    outline:none;

    transition:
        border-color .25s,
        box-shadow .25s;
}

#birthDate:focus{
    border-color:var(--gold);
    box-shadow:0 0 10px rgba(171,153,83,.20);
}


/* ======================================================
   POGAS
====================================================== */

.btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;

    min-width:180px;
    height:58px;

    padding:0 28px;

    background:var(--gold);
    color:#fff;

    border:none;
    border-radius:14px;

    font-size:17px;
    font-weight:600;

    cursor:pointer;

    transition:
        background .25s,
        transform .25s,
        box-shadow .25s;
}

.btn:hover{
    background:var(--gold-hover);

    transform:translateY(-2px);

    box-shadow:0 8px 18px rgba(0,0,0,.15);
}

.secondary{
    display:none;
}

/* ======================================================
   REZULTĀTS
====================================================== */

#result{
    display:none;
}


/* ======================================================
   PILNĀ APRAKSTA BLOKS
====================================================== */

.report-info{
    max-width:900px;

    margin:60px auto;
    padding:40px;

    background:#f7f2e8;

    border-radius:16px;

    text-align:center;
}

.report-info h2{
    margin-bottom:20px;

    color:var(--title);

    font-family:"Cormorant Garamond",serif;
    font-size:36px;
    font-weight:600;
    line-height:1.2;
}

.report-info p{
    max-width:700px;

    margin:0 auto 30px;

    color:#555;

    font-size:17px;
    line-height:1.8;
}


/* ======================================================
   PASŪTĪJUMA POGA
====================================================== */

.report-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;

    min-width:220px;
    min-height:58px;

    padding:15px 34px;

    background:var(--gold);
    color:#fff;

    border:none;
    border-radius:14px;

    font-size:17px;
    font-weight:600;

    text-decoration:none;

    cursor:pointer;

    transition:
        background .25s,
        transform .25s,
        box-shadow .25s;
}

.report-btn:hover{
    background:var(--gold-hover);

    transform:translateY(-2px);

    box-shadow:0 8px 18px rgba(0,0,0,.15);
}