@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;
}

/* ---------------- Donation Page Style ---------------- */

#donation-banner {
    height: 400px;
    width: 100%;
    background: url(../../assets/images/donation_banner.png) no-repeat center center;
    background-size: cover;
}

#donation-banner p {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 100px !important;
    font-weight: 600;
    text-transform: uppercase;
}

#donation-heading {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    margin: 20px 0;
    color: var(--primary-color1);
}

/* Donation Page Left Section */
#donation-text-div {
    display: flex;
    flex-direction: column;
}

#raise-your-helping-hands {
    font-size: 25px;
    font-weight: 600;
    margin: 20px 0;
    color: var(--primary-color2);
    text-decoration: underline var(--primary-color1);
}

#donation-text {
    font-size: 18px;
    font-weight: 400;
    margin: 20px 0;
    text-align: justify;
}

#Corinthians {
    color: var(--primary-color1);
    font-size: 18px;
    font-weight: 500;
}

/* Donation Page Right Section */

#donation-bank-details-heading {
    font-size: 25px;
    font-weight: 600;
    margin: 20px 0;
    color: var(--primary-color2);
    text-decoration: underline var(--primary-color1);
}

#donation-bank-info-div #column1 {
    /* border-right: none; */
}

#donation-bank-info-div ul {
    font-size: 18px;
    font-weight: 400;
    margin: 10px 0;
}

#donation-bank-info-div ul li:hover {
    cursor: pointer;
    background-color: rgb(231, 231, 231);
}

/* Responsive Design */

@media (min-width: 1200px) {
    #donation-banner {
        height: 350px;
    }
    #donation-banner p {
        font-size: 80px;
    }
    #donation-heading {
        font-size: 35px;
    }

    #column1{
        width: 100% !important;
        /* border: 2px solid red; */
        font-weight: bold;
      }

      #column2{
        width: 100% !important;
        text-align: center;
      }
    
      /* #column2, #column2{
        width: 100% !important;
      } */
}

@media (max-width: 1024px) {
    #donation-banner {
        height: 300px;
    }
    #donation-banner p {
        font-size: 60px;
    }
    #donation-heading {
        font-size: 30px;
    }
    #raise-your-helping-hands, 
    #donation-bank-details-heading {
        font-size: 22px;
    }
    #donation-text, #Corinthians {
        font-size: 16px;
    }

    #column1{
        width: 100% !important;
        /* border: 2px solid red; */
        font-weight: bold;
      }

      #column2{
        width: 100% !important;
        text-align: center;
      }
    
      /* #column2, #column2{
        width: 100% !important;
      } */
}

@media (max-width: 768px) {
    #donation-banner {
        height: 250px;
    }
    #donation-banner p {
        font-size: 50px;
    }
    #donation-heading {
        font-size: 28px;
    }
    #raise-your-helping-hands, 
    #donation-bank-details-heading {
        font-size: 20px;
    }
    #donation-text, #Corinthians {
        font-size: 15px;
    }
    #donation-bank-info-div {
        display: flex;
        flex-direction: column;
    }
    #column1, #column2 {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    #column1{
        width: 100% !important;
        /* border: 2px solid red; */
        font-weight: bold;
      }

      #column2{
        width: 100% !important;
        text-align: center;
      }
    
      /* #column2, #column2{
        width: 100% !important;
      } */
}

@media (max-width: 576px) {
    #donation-banner {
        height: 200px;
    }
    #donation-banner p {
        font-size: 40px;
    }
    #donation-heading {
        font-size: 25px;
    }
    #raise-your-helping-hands, 
    #donation-bank-details-heading {
        font-size: 18px;
    }
    #donation-text, #Corinthians {
        font-size: 14px;
    }

    #column1{
        width: 100% !important;
        /* border: 2px solid red; */
        font-weight: bold;
      }

      #column2{
        width: 100% !important;
        text-align: center;
      }
    
      /* #column2, #column2{
        width: 100% !important;
      } */
}
