*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
   font-family:'Montserrat',sans-serif;
    background:#f4f0eb;
    color:#333;
}

.wrapper{
    max-width:1400px;
    margin:auto;
    padding:40px 20px;
}

h1{
    text-align:center;
    margin-bottom:70px;
    color:#6e573e;
	font-size:48px;
}

h2{
    text-align:center;
    margin-bottom:25px;
    color:#6e573e;
    font-size:31px;
}

.form-box{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin-bottom:80px;
}

#birthDate{

    width:280px;
    height:56px;

    padding:0 18px;

    font-size:20px;

    border:1px solid #d8d1c7;
    border-radius:14px;

    background:white;

    outline:none;

    transition:.3s;
	 display:flex;
    align-items:center;
    justify-content:center;
}

#birthDate:focus{

    border-color:#a89652;

    box-shadow:
    0 0 10px rgba(168,150,82,.25);
}
 

#calculateBtn{
    width:180px;
    height:56px;

    padding:0;

    border:none;

    border-radius:14px;

    background:#a89652;

    color:white;

    font-size:18px;
    font-weight:bold;

    cursor:pointer;

    transition:.3s;
}

#calculateBtn:hover{

    transform:translateY(-2px);

    box-shadow:
    0 6px 18px rgba(0,0,0,.15);

}

#buyBtn{

    min-height:60px;

    padding:15px 35px;

    border:none;

    border-radius:12px;

    background:#a89652;

    color:white;

    font-size:18px;
    font-weight:bold;

    cursor:pointer;

    transition:.3s;
	text-decoration:none;
}

#buyBtn:hover{

    transform:translateY(-2px);

    box-shadow:
    0 6px 18px rgba(0,0,0,.15);

}


.portrait-section{
    margin-bottom:80px;
}


.section-description{
    max-width:1000px;
    margin:0 auto 35px;

    text-align:center;
    line-height:1.8;

    color:#555;
}


/* INFO LODZIŅI */

.info-box{
    margin:0 auto 40px;
    padding:25px;
    width:100%;
    max-width:1100px;
    min-height:130px;
    background:white;
    border:1px solid #d8d1c7;
    border-radius:15px;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
	transition:.2s;
}

.info-box h3{
    margin-bottom:10px;
    color:#6e573e;
}

.info-box p{
    line-height:1.6;
}

/* APLĪŠI */

.circle{

    width:80px;
    height:80px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:26px;
    font-weight:bold;

    cursor:pointer;

    transition:
        opacity .2s ease,
        background-color .2s ease;
}

.circle:hover{
    opacity:.9;
}

/* PSIHOLOĢISKAIS */

.psychology{
    background:#ead7cb;
    border:2px solid #d5a8a8;
}

/* KARMISKAIS */

.karma{
    background:#c9c9c9;
    border:2px solid #777;
}

/* ĒNAS */

.shadow{
    background:#e2e2e2;
    border:2px solid #a5a5a5;
}

/* PAPILDU */

.extra{
    background:#e6d0c1;
    border:2px solid #c39b85;
}

/* PSIHOLOĢISKĀ MATRICA */

.psychology-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    max-width:1200px;
    margin:40px auto;
}


/* KARMISKĀ MATRICA */

.karma-grid{
    max-width:900px;
    margin:auto;

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

/* ĒNU MATRICA */

.shadow-grid{
    max-width:900px;
    margin:auto;

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

/* PAPILDPOSĪCIJAS */

.extra-grid{
    max-width:900px;
    margin:auto;

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

/* PILNAIS APRAKSTS */

.purchase-box{
    max-width:700px;
    margin:80px auto;

    background:white;

    padding:30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 3px 12px rgba(0,0,0,.08);
}



.purchase-box p{
    margin:15px 0 25px;
}

/* MOBILĀ VERSIJA */

    @media(max-width:768px){

    .circle{
        width:60px;
        height:60px;
        font-size:18px;
    }

    .psychology-grid,
    .karma-grid,
    .shadow-grid,
    .extra-grid{
        gap:15px;
    }

     h1{
        font-size:28px;
        line-height:1.2;
        word-break:break-word;
    }

    h2{
        font-size:28px;
    }
		
 .form-box{
        flex-direction:column;
        gap:15px;
    }

    #birthDate,
    #calculateBtn{
        width:100%;
        max-width:320px;
    }
}
 @media(max-width:768px){

    .form-box{
        flex-direction:column;
        gap:12px;
        margin-bottom:50px;
    }

    #birthDate{
        width:100%;
        max-width:280px;
        height:50px;
        font-size:21px;
        padding:0 15px;
		text-align:center;
    }

    #calculateBtn{
        width:100%;
        max-width:280px;
        height:50px;
        padding:0;
        font-size:16px;
    }

	 @media(max-width:768px){

    .purchase-box{
        padding:25px 20px;
        margin:50px auto;
    }

    .purchase-box h2{
        font-size:25px;
        line-height:1.2;
        margin-bottom:20px;
    }

    .purchase-box p{
        font-size:16px;
        line-height:1.7;
        margin:0 0 20px;
    }

    #buyBtn{
        max-width:240px;
        width:100%;
        min-height:50px;
        font-size:16px;
        padding:12px 20px;
    }

}
}
