/* ======================================================
   PĀRA SADERĪBA
   LAPAS STRUKTŪRA
====================================================== */

.compatibility-page{
    padding:60px 0;
}

.compatibility-hero{
    max-width:1100px;
    margin:0 auto;
}


/* ======================================================
   VIRSRAKSTS
====================================================== */

.compatibility-hero h1{
    margin:30px 0 20px;

    color:#9b6f3c;

    font-family:"Cormorant Garamond",serif;
    font-size:55px;
    font-weight:500;
    line-height:1.1;

    text-align:center;
}

.intro{
    max-width:700px;
    margin:0 auto 50px;

    text-align:center;
    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);
}
/* ======================================================
   FORMA
====================================================== */

.compatibility-form{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;

    margin-bottom:40px;
}


/* ======================================================
   PERSONAS KARTE
====================================================== */

.person-card{
    padding:30px;

    background:#fff;
    border-radius:16px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.person-card h2{
    margin-bottom:25px;
    text-align:center;
}


/* ======================================================
   FORMAS LAUKI
====================================================== */

.form-group{
    display:flex;
    flex-direction:column;

    margin-bottom:20px;
}

.form-group label{
    margin-bottom:8px;
    font-weight:600;
}

.form-group input{
    padding:14px;

    font-size:16px;

    border:1px solid #d8d8d8;
    border-radius:10px;

    transition:.3s;
}

.form-group input:focus{
    outline:none;

    border-color:#b48a2b;
    box-shadow:0 0 8px rgba(180,138,43,.25);
}


/* ======================================================
   POGA
====================================================== */

.button-wrapper{
    margin-bottom:60px;
    text-align:center;
}

.gold-button{
    display:inline-block;

    padding:14px 40px;

    color:#fff;
    background:#b48a2b;

    border:none;
    border-radius:30px;

    font-size:16px;
    font-weight:600;

    text-decoration:none;
    cursor:pointer;

    transition:.3s;
}

.gold-button:hover{
    background:#9b741f;
    transform:translateY(-2px);
}

/* ======================================================
   MOBILĀ VERSIJA
====================================================== */

@media (max-width:768px){

    .compatibility-page{
        padding:30px 15px;
    }

    /* ---------- Galvenais attēls ---------- */

    .content-image{
        margin:20px auto;
    }

    .content-image img{
        width:100%;
        height:180px;

        object-fit:cover;
        border-radius:12px;
    }

    /* ---------- Virsraksts ---------- */

    .compatibility-hero h1{
        font-size:48px;
        margin-top:25px;
    }

    /* ---------- Forma ---------- */

    .compatibility-form{
        grid-template-columns:1fr;
        gap:25px;
    }

    .person-card{
        padding:20px;
    }

    /* ---------- Rezultāts ---------- */

    .compatibility-channel{
        padding:25px;
    }

    .channel-energies{
        flex-direction:column;
        gap:15px;
    }

    .channel-divider{
        transform:rotate(90deg);
        font-size:24px;
    }

    .energy-number{
        width:75px;
        height:75px;
        font-size:28px;
    }

    /* ---------- Pasūtījuma bloks ---------- */

    .order-box{
        padding:30px 22px;
    }

    .order-box h3{
        font-size:32px;
    }

    .order-box p{
        font-size:17px;
        line-height:1.8;
    }

}