/* ======================================================
   PERSONĀLAIS GADS
====================================================== */
/* ======================================================
   HERO
====================================================== */

.hero{
    padding:70px 0 40px;
}

.page-title{
    margin:30px 0 20px;

    color:#9b6f3c;

    text-align:center;

    font-family:"Cormorant Garamond",serif;
    font-size:55px;
    font-weight:500;
    line-height:1.1;
}

.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);
}

/* ======================================================
   SATURS
====================================================== */

.personal-year-section{
    padding:0 0 50px;
}


/* ======================================================
   IEVADS
====================================================== */

.personal-year-header{
    max-width:900px;

    margin:0 auto 50px;

    text-align:center;
}

.personal-year-header p{
    max-width:760px;

    margin:0 auto;

    color:#555;

    font-size:18px;
    line-height:1.8;
}


/* ======================================================
   APRĒĶINA FORMA
====================================================== */

.personal-year-form{
    max-width:700px;

    margin:0 auto;

    padding:35px;

    background:#fff;

    border-radius:18px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);
}


/* ======================================================
   FORMAS LAUKI
====================================================== */

.form-group{
    margin-bottom:25px;
}

.form-group label{
    display:block;

    margin-bottom:8px;

    color:#555;

    font-size:16px;
    font-weight:600;
}

.form-group input{
    width:100%;

    padding:14px 16px;

    background:#fff;

    border:1px solid #d9d9d9;
    border-radius:10px;

    box-sizing:border-box;

    color:#333;

    font-size:16px;

    transition:border-color .3s,
               box-shadow .3s;
}

.form-group input:focus{
    outline:none;

    border-color:#b48a2b;

    box-shadow:0 0 8px rgba(180,138,43,.20);
}


/* ======================================================
   POGA
====================================================== */

#calculatePersonalYear{
    display:block;

    width:100%;
    min-height:58px;

    padding:16px 20px;

    background:#b48a2b;
    color:#fff;

    border:none;
    border-radius:30px;

    font-size:17px;
    font-weight:600;

    cursor:pointer;

    transition:
        background .3s,
        transform .3s;
}

#calculatePersonalYear:hover{
    background:#9b741f;

    transform:translateY(-2px);
}
/* ======================================================
   REZULTĀTS
====================================================== */

.personal-year-result{
    margin-top:50px;
}

.personal-year-result h2{
    margin-bottom:35px;

    color:#9b6f3c;

    text-align:center;

    font-family:"Cormorant Garamond",serif;
    font-size:46px;
    font-weight:500;
    line-height:1.2;
}


/* ======================================================
   ENERĢIJU KARTĪTES
====================================================== */

.energy-cards{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;

    gap:25px;
}

.energy-card{
    width:280px;

    padding:30px;

    background:#fff;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.energy-card h3{
    margin-bottom:20px;

    color:#9b6f3c;

    font-family:"Cormorant Garamond",serif;
    font-size:30px;
    font-weight:500;
    line-height:1.2;
}

.energy-number{
    color:#b48a2b;

    font-size:60px;
    font-weight:700;
}


/* ======================================================
   APRAKSTI
====================================================== */

#personalYearDescriptions{
    max-width:900px;

    margin:50px auto 0;
}

.description-block{
    margin-bottom:30px;

    padding:35px;

    background:#fff;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.description-block:last-child{
    margin-bottom:0;
}

.description-block h3{
    margin-bottom:20px;

    color:#9b6f3c;

    font-family:"Cormorant Garamond",serif;
    font-size:34px;
    font-weight:500;
    line-height:1.2;
}

.description-block p{
    color:#555;

    font-size:18px;
    line-height:1.9;
}
/* ======================================================
   MOBILĀ VERSIJA
====================================================== */

@media (max-width:768px){

    .personal-year-section{
        padding:40px 0;
    }

    .personal-year-header{
        margin-bottom:35px;
        padding:0 15px;
    }

    .personal-year-header p{
        font-size:16px;
        line-height:1.8;
    }


    /* ==================================================
       FORMA
    ================================================== */

    .personal-year-form{
        padding:25px 20px;
    }

    .form-group{
        margin-bottom:20px;
    }

    .form-group label{
        font-size:15px;
    }

    .form-group input{
        padding:14px;

        font-size:16px;
    }

    #calculatePersonalYear{
        min-height:54px;

        font-size:16px;
    }


    /* ==================================================
       REZULTĀTS
    ================================================== */

    .personal-year-result{
        margin-top:40px;
    }

    .personal-year-result h2{
        margin-bottom:30px;

        font-size:36px;
    }


    /* ==================================================
       ENERĢIJU KARTĪTES
    ================================================== */

    .energy-cards{
        gap:20px;
    }

    .energy-card{
        width:100%;

        padding:25px 20px;
    }

    .energy-card h3{
        font-size:28px;
    }

    .energy-number{
        font-size:48px;
    }


    /* ==================================================
       APRAKSTI
    ================================================== */

    #personalYearDescriptions{
        margin-top:35px;
    }

    .description-block{
        padding:25px 20px;
    }

    .description-block h3{
        font-size:28px;
    }

    .description-block p{
        font-size:16px;
        line-height:1.8;

        text-align:left;
    }
	
	
.hero{
    padding:30px 0;
}

.page-title{
    font-size:48px;
}

.content-image{
    margin:20px auto;
}

.content-image img{
    height:180px;

    border-radius:12px;
}
}
