@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Poppins",sans-serif;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../Assests/images/about-cover-page.webp");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;

    color:#F7F3ED;
}

main{
    width:min(900px,90%);
    margin:auto;
    padding:90px 0;
}

article{
    background:rgba(0,0,0,.18);
    backdrop-filter:blur(4px);
    padding:clamp(25px,5vw,60px);
    border-radius:20px;
}

h1{
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(2rem,5vw,3.5rem);
    color:#F8F5F0;
    margin-bottom:30px;
    letter-spacing:1px;
}

h2{
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(1.5rem,3vw,2.2rem);
    color:#D6B56C;
    margin-bottom:15px;
}

p{
    font-size:1.08rem;
    line-height:2;
    color:rgba(255,255,255,.92);
    margin-bottom:28px;
}

em{
    color:#D6B56C;
    font-style:italic;
}

section{
    margin-top:60px;
}

ul{
    margin-top:20px;
    margin-left:30px;
}

li{
    margin-bottom:15px;
    font-size:1.05rem;
    line-height:1.8;
    color:#F7F3ED;
}

strong{
    font-weight:600;
}

article > p:last-child{
    margin-top:50px;
    text-align:center;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(1.4rem,3vw,1.8rem);
    color:#D6B56C;
}

/* ---------------- Tablets ---------------- */

@media (max-width:768px){

    body{
        background-attachment:scroll;
    }

    main{
        width:92%;
        padding:70px 0;
    }

    article{
        padding:35px;
    }

    p,
    li{
        font-size:1rem;
        line-height:1.9;
    }

    section{
        margin-top:45px;
    }
}

/* ---------------- Mobile ---------------- */

@media (max-width:480px){

    main{
        width:94%;
        padding:50px 0;
    }

    article{
        padding:22px;
        border-radius:16px;
    }

    h1{
        margin-bottom:20px;
        line-height:1.2;
    }

    h2{
        margin-bottom:12px;
    }

    p,
    li{
        font-size:.95rem;
        line-height:1.8;
        margin-bottom:20px;
    }

    ul{
        margin-left:20px;
    }

    section{
        margin-top:35px;
    }

    article > p:last-child{
        margin-top:35px;
    }
}

/* ---------------- Small Phones ---------------- */

@media (max-width:360px){

    main{
        width:95%;
        padding:40px 0;
    }

    article{
        padding:18px;
    }

    p,
    li{
        font-size:.9rem;
    }

    ul{
        margin-left:18px;
    }
}