
:root {
    /* COLORS */
    --main-color: #AADEF3;
    --pink-color: #DD1D96;
    --purple-color: #2E2E8A;
    --white-color: #FFFFFF;
    --dark-color: #000000;
    --grey-color: #909090;
    --green-color: #BBDCAF;
    --footer-background: #E4E5E7;

    /* FONT SIZE */
    --main-title-h1: 64px;
    --section-title-h2: 52px;
    --section-title-h3: 36px;

    --menu-text: 18px;
    --body-text: 24px;
    --small-subtitle-text: 16px;
    --product-price-text: 20px;


    /* SPACING */
    --header-height: 100px;
    --section-block-space: 75px;
    --hero-sapce: 140px;
}

html{
    scroll-behavior: smooth;
}

/* ================== CSS Prefix ================== */
* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    margin: 0;
    padding: 0
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
ul,
li,
form,
label,
nav,
ul {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}


h1,
h2,
h3,
h4,
h5,
h6
 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1;
}


body,
p {
    font-family: 'Cormorant', serif;
    color: var(--purple-color);
    font-weight: 400;
}

a,
a:focus,
a:hover {
    outline: none !important;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.section-block {
 padding-block: var(--section-block-space);
}

.site-container {
    width: 100%;
    max-width: 1239px;
    padding-inline: 20px;
    margin-inline: auto;
}

ul,
li {
    list-style: none;
}


.list {
    list-style: disc;
}

html, body {
    width: 100%;
    height: 100%;
}

/* CSS COMMON CLASSES */

.main-title-h1 {
    font-size: var(--main-title-h1);
}


.section-title-h2 {
    font-size: var(--section-title-h2);
}


.section-title-h3 {
    font-size: var(--section-title-h3);
}

.section-title-h4 {
    font-size: var(--section-title-h4);
}

.section-title-h5{
    font-size: var(--section-title-h5);
}

.menu-text {
    font-size: var(--menu-text);
}

.body-text {
    font-size: var(--body-text);
}

.product {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center; 
}

.product-name {
    font-size: var(--body-text);
}

.product-price {
    color: var(--pink-color);
    font-size: var(--product-price-text);
}


.small-subtitle-text {
    font-size: var(--small-subtitle-text);
}

.site-row {
    display: flex;
    gap: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-col {
    flex: 1;
}

.site-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* COLORS AND BACKGROUNDS */
.bg-main {
    background: var(--main-color);
}

.bg-pink {
    background: var(--pink-color);
}

.bg-grey {
    background: var(--light-color);
}

.bg-green {
    background: var(--green-color);
}

.text-white {
    color: var(--white-color);
}

.text-dark {
    color: var(--dark-color);
}

.text-purple {
    color: var{var(--pruple-color)};
}

.text-center {
    text-align: center;
}

/* -------------------------BUTTONS------------------------- */
.hero-site-btn {
    display: inline-block;
    color: var(--white-color);
    background-color: var(--pink-color);
    border-radius: 18px;
    padding: 14px 30px;
}

/* -------------------------------------------------TOP-BAR-SECTION------------------------------------------------- */
.top-bar, .left-content, .social-icons, .right-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.top-bar {
    justify-content: space-between;
    padding-block: 28px;
}

.top-bar .offer-content {
    font-size: 20px;
}

.social-icons {
    margin-left: 10px;
}

/* ---------------------------------------------------HEADER-SECTION--------------------------------------------------- */
.header-wrap {
    padding-block: 20px;
}

.header-wrap, .menu, .shop-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.header-wrap a {
    font-size: var(--menu-text);
    color: var(--dark-color);
}

/* ----------------------------------------------------HERO-SECTION---------------------------------------------------- */
.hero-section {
    background-image: url(../images/hero-Images.png);
    background-repeat: no-repeat;
}

.hero-section .site-content {
    max-width: 450px;
    width: 100%;
    margin: auto;
    text-align: center;
    padding-bottom: 210px;
}

.hero-section .hero-site-btn {
    margin: auto;
}

.product-img {
    max-height: 677px;
}

.baby-img {
    max-height: 424px;
}

.counter-box {
    justify-content: center;
    padding-block: 50px;
    margin-block: var(--section-block-space);
}

.counter-box .site-content:nth-child(2) {
    border-left: 1px solid white;
    border-right: 1px solid white;
    padding-inline: 40px;
}

.counter-box .site-content {
    text-align: center;
}

.essential-section {
    justify-content: center;
}

.offer-section {
    max-width: 770px;
    width: 100%;
    margin-inline: auto;
    text-align: center;
    align-items: center;
}

.offer-section .body-text {
    padding-inline: 50px;
}

.offer-section .form {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.offer-section input {
    padding: 15px;
    border-radius: 18px;
    background-color: var(--purple-color);
    color: white;
    border: none;
    outline: none;
}

.offer-section form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.offer-section .hero-site-btn {
    background-color: var(--pink-color);
    padding-inline: 30px;
}

.adg-brand-logo {
    max-width: 368px;
    width: 100%;
    margin-top: 50px;
}

.footer-section {
    justify-content: space-between;
    padding-inline: 20px;
    padding-top: 70px;
    padding-bottom: 25px;
    border-radius: 40px;
}

.quick-link {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: end;
}

.quick-link a {
    font-size: 18px;
    color: var(--purple-color);
}

.baby-shower-logo {
    text-align: center;
    margin-top: 100px;
    margin-bottom: -90px;
}

.baby-shower-logo img {
    max-width: 150px;
    width: 100%;
}

.mother-baby-care {
    width: 250px;
}

/* ---------------------------------------------FOOTER-SECTION--------------------------------------------- */
.dot {
    color: orange;
}

.social-sites {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-divider {
    background: url(../images/footer-divider.png);
    background-repeat: repeat-x;
    width: 100%;
    height: 24px;
}

.contact-us-section {
    background-color: var(--footer-background);
    padding-block: 50px;
}

.contact-us-section .site-row, .copyright-section .site-row {
    align-items: center;
}

.contact-us-section .body-text, .copyright-section .body-text {
    font-size: 18px;
}

.contact-us-section .email {
    text-align: right;
}

.copyright-section {
    background-color: var(--purple-color);
    padding-block: 25px;
}

.copyright-section .site-row {
    justify-content: space-between;
}

.copyright-section .body-text {
    color: var(--white-color);
}

@media only screen and (max-width:763px) {
    :root {    
        /* FONT SIZE */
        --main-title-h1: 40px;
        --section-title-h2: 32px;
        --section-title-h3: 28px;
    
        --menu-text: 18px;
        --body-text: 20px;
        --small-subtitle-text: 16px;
        --product-price-text: 18px;
    
    
        /* SPACING */
        --header-height: 100px;
        --section-block-space: 50px;
        --hero-sapce: 140px;
    }
    

    .top-bar, .menu, .shop-icons {
        display: none;
    }

    .skin-section .site-row, .popular-section .site-row, .counter-box, .essential-section, .offer-section .form, .footer-section, .contact-us-section .site-row {
        flex-wrap: wrap;
    }

    .hero-section .site-content {
        text-align: left;
        padding-bottom: 80px;
    }

    .hero-section .hero-site-btn {
        margin-left: 0;
    }
    
   .skin-product, .lotion-product {
    max-width: 125px;
   }
    
    .hero-site-btn {
        font-size: 14px;
        white-space: nowrap;
        padding: 10px 16px;
    }

    .counter-box .site-content:nth-child(2) {
        border: none;
    }

    .baby-shower-logo {
        text-align: center;
    }
    
    .baby-shower-logo img {
        width: 100px;
    }

    .offer-section .body-text {
        padding-inline: initial;
    }

    .form input {
        width: 100%;
    }
    
    .contact-us-section .site-row, .copyright-section .site-row {
        flex-direction: column;
        align-items: initial;
    }

    .contact-us-section .email {
        text-align: initial;
    }

    .baby-shower-logo {
        text-align: center;
        margin-top: 100px;
        margin-bottom: -66px;
    }
    
    .skin-section .product {
        flex-direction: initial;
    }

}




