/* 

            Global setup
    
*/
body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
p {
    padding: 0;
    margin: 0;
}

/* 

            Universal Layouts 
    
*/
/* Need a universal containter class */
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 12.5vw;
    padding-right: 12.5vw;
    color: #272727;
}

/* Need a universal title header for main section */
.main-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
}

/* Need a universal p tag class for the whole page */
.paragraph {
    color: rgba(39, 39, 39, 0.60);
    text-align: center;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 30px;
    max-width: 38rem;
}

/* Need a universal button class */
.primary-btn {
    border-radius: 8px;
    padding: 20px 43px;
    background-color: #E55473;
    color: #FFF;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
}

.primary-btn:hover {
    cursor: pointer;
}

.title-special-word {
    color: #E55473;
}



/* 

            Header section styling
    
*/
.header-container {
    background: rgba(229, 84, 115, 0.10);
    height: 90vh;
}

.header-content {
    padding-left: 4vw;
}

.header-title {
    font-size: 5rem;
    max-width: 36vw;
}

.header-paragraph {
    text-align: left;
    margin-top: 3.5vh;
    margin-bottom: 3.5vh;
}

.header-image {
    align-self: flex-end;
}


/* 

            Main section styling
    
*/
.main-container {
    flex-direction: column;
    justify-content: center;
}

/* FEATURED SECTION */
.featured-section-container {
    height: 110vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.featured-paragraph {
    margin-top: 3vh;
    margin-bottom: 6vh;
}

.featured-content {
    align-items: flex-end;
}

.featured-item-container {
    margin-left: 0.5vw;
    margin-right: 0.5vw;
}

.featured-item-image-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    border-radius: 300px 300px 0px 0px;
    text-align: center;
    height: 55vh;
    width: 22vw;
}

#featured-image1 {
    background-color: rgba(167, 33, 98, 0.15);
}

#featured-image2 {
    background-color: rgba(5, 151, 160, 0.15);
}

#featured-image3 {
    background-color: rgba(71, 125, 17, 0.15);
}

.featured-item-text {
    color: #272727;
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
    text-decoration: underline;
    text-align: center;
    margin-top: 3vh;
}

/* SIGNUP SECTION */
.signup-section-container {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 84, 115, 0.05);
    width: 100vw;
    padding-left: 12.5vw;
    padding-right: 12.5vw;
}

.signup-content {
    margin-right: 10vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signup-paragraph {
    margin-top: 3vh;
    margin-bottom: 3vh;
}


/* INSTAGRAM SECTION */
.instagram-section-container {
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.instagram-paragraph {
    margin-top: 3vh;
    margin-bottom: 6vh;
}

.instagram-content {
    align-items: flex-end;
}

.instagram-item-container {
    margin-left: 0.5vw;
    margin-right: 0.5vw;
}

.instagram-item-image-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    text-align: center;
}

#instagram-image4 {
    background-color: rgba(71, 125, 17, 0.15);
}

.instagram-item-text {
    color: #272727;
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
    text-decoration: underline;
    text-align: center;
    margin-top: 3vh;
}

/* SUBSCRIBE SECTION */
.subscribe-section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url("../assets/Rectangle\ 9.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 40vh;
}

.subscribe-paragraph {
    margin-top: 2vh;
    margin-bottom: 3vh;
}

.subscribe-email-field {
    color: rgba(39, 39, 39, 0.60);
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    padding: 20px 35px;
    width: 30vw;
    margin-right: 2vw;
}

/* CUSTOMER SECTION */
.customer-section-container {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(229, 84, 115, 0.05);
    height: 50vh;
    width: 100%;
    padding-left: 12.5vw;
    padding-right: 12.5vw;
    margin-top: 10vh;
    margin-bottom: 10vh;
}

.customer-review {
    margin-right: 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 15vw;
    font-size: 2rem;
}

#customer {
    height: 45vh;
}

#customer-name {
    padding-top: 2vh;
    text-align: left;
    font-size: 0.8rem;
}



/* 

            Footer section styling
    
*/
.footer-container {
    height: 45vh;
    justify-content: center;
    background-color: #111010;
    margin-top: 10vh;
}

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

.footer-title {
    color: white;
    font-size: 48px;
    font-weight: 800;
}



.footer-paragraph {
    color: rgba(255, 255, 255, 0.90);
    margin-top: 3vh;
    margin-bottom: 4vh;
}

.copyright-footer {
    color: rgba(255, 255, 255, 0.40);
    font-size: 16px;
    font-weight: 400;
}