@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color1: #D61F27;
    --primary-color2: #005B30;
    --primary-hover: #c157d6;
    --secondary-color: #E9D4ED;

    --background-color: #ffffff;
    --primary-background: #F5EFEA;
    --secondary-background: #E4D5B7;

    --text-color: #000000;
    --text-white: #ffffff;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* ----------------membership Page Style ---------------- */

#membership-banner {
    height: 400px;
    width: 100%;
    background: url(../../assets/images/member_banner.png) no-repeat center center;
    background-size: cover;
}

#membership-banner #membership-heading {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 100px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

#membership-para #definition_heading, #basis_heading, #conclusion_heading {
    font-size: 20px;
    font-weight: 600;
    text-decoration: underline var(--primary-color2);
    color: var(--primary-color1);
}

/* membership section style  */

#membership-main-heading {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-color1);
    text-transform: uppercase;
    border-bottom: 2px solid var(--primary-color2);
    display: inline-block;
    line-height: 35px;
}

/* ----------------- Responsive Styles ------------------ */

/* For devices with a width of 768px or less (tablets and below) */
@media screen and (max-width: 768px) {
    #membership-banner {
        height: 250px;
    }

    #membership-banner #membership-heading{
        font-size: 60px;
    }

    #membership-main-heading {
        font-size: 30px;
    }

    #membership-para #definition_heading,
    #basis_heading,
    #conclusion_heading {
        font-size: 16px;
    }
}

/* For devices with a width of 480px or less (mobile phones) */
@media screen and (max-width: 480px) {
    #membership-banner {
        height: 200px;
    }

    #membership-banner #membership-heading {
        font-size: 50px;
    }

    #membership-main-heading {
        font-size: 24px;
    }

    #membership-para #definition_heading,
    #basis_heading,
    #conclusion_heading {
        font-size: 14px;
    }
}

/* For devices with a width of 1024px or more (desktops and large tablets) */
@media screen and (min-width: 1024px) {
    #membership-heading {
        font-size: 120px;
    }

    #membership-main-heading {
        font-size: 50px;
    }
}
