
/* default values */
*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body 
{
    background-color: var(--background);
}

:root
{
    --primary: #8B3A62;
    --secondary: #D9A5B3;
    --accent: #F4D6D0;
    --background: #FFF8F6;
    --text: #2B2B2B;
    --footer: #4A1F36;
}

.primary
{
    color: var(--primary);
}

.secondary
{
    color: var(--secondary);
}

.accent
{
    color: var(--accent);
}

.background
{
    color: var(--background);
}

.text 
{
    color: var(--text);
}

.footer 
{
    color: var(--footer);
}

@font-face {
    font-family: playfair display;
    src: url(/fonts/PlayfairDisplay-VariableFont_wght.ttf);
}

@font-face {
    font-family: poppinsr;
    src: url(/fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: poppinssm;
    src: url(/fonts/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: lobster;
    src: url(/fonts/LobsterTwo-BoldItalic.ttf);
}

.lobster
{
    font-family: lobster;
}

.playfair-display
{
    font-family: playfair display;
}

.fw-700
{
    font-weight: 700;
}

h1,h2,h3,h4,h5,h6 
{
    font-family: playfair display;
    letter-spacing: 1px;
}

p 
{
    font-family: poppinsr;
    letter-spacing: 1px;
    font-weight: 600;
}

span, a, button 
{
    font-family: poppinssm;
    letter-spacing: 1px;
}

.container
{
    height: 100%;
    max-width: 1170px;
    margin: auto;
}

.row 
{
    display: flex;
    flex-direction: row;
    height: 100%;
}

.row-center
{
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.column
{
    display: flex;
    flex-direction: column;
}

.navbar-list
{
    list-style-type: none;
    padding: 0;
    margin: 0;
    gap: 20px;
    align-items: center;
}

.button
{
    background-color: var(--footer);
    color: var(--accent);
    display: inline-block;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.contact-icon
{
    height: 30px;
    width: 30px;
    object-fit: cover;
}

button 
{
    border: none;
}

a 
{
    text-decoration: none;
}

.w-30
{
    width: 30%;
}

.w-301
{
    padding: 10px 0px;
    width: 30%;
}

/* .bs-white
{
    box-shadow: 0px 0px 10px white;
    color: white;
}

.bs-black
{
    box-shadow: 0px 0px 10px black;
} */

.py-20
{
    padding: 20px 0;
}

.py-40
{
    padding: 40px 0;
}

.text-center
{
    text-align: center;
}

.top 
{
    position: fixed;
    bottom: 3%;
    right: 3%;
    border: 2px solid var(--footer);
    box-shadow: 0px 0px 8px var(--text);
    border-radius: 50%;
    padding: 10px;
}

.top img 
{
    transform: rotate(90deg);
}

.img 
{
    height: 80px;
    width: 80px;
    object-fit: contain;
}

.img1 
{
    height: 20px;
    width: 20px;
    object-fit: contain;
}

.aimg 
{
    height: auto;
    width: 23%;
    object-fit: cover;
}

.up-20
{
    transform: translateY(-20px);
}

textarea
{
    resize: none;
    width: 100%;
    background-color: rgba(128, 128, 128, 0.3);
    border-radius: 8px;
    border: none;
    padding: 5px;
    height: 100px;
}

input 
{
    padding: 10px;
    border-radius: 8px;
    border: none;
    background-color: rgba(128, 128, 128, 0.3);
    font-family: poppinsr;
}

.form-column
{
    width: 100%;
}

.navbar-list-item a
{
    display: inline-block;
    transition: 0.5s all;
    position: relative;
}

.navbar-list-item1 a
{
    display: inline-block;
    transition: 0.5s all;
    position: relative;
}

.navbar-list-button a
{
    display: inline-block;
    transition: 0.5s all;
}

.navbar-list-item a::before
{
    content: " ";
    height: 2px;
    background-color: var(--footer);
    width: 0;
    left: 0;
    top: 100%;
    position: absolute;
    transition: 0.5s all;
}

.navbar-list-item a::after 
{
    content: " ";
    height: 2px;
    background-color: var(--footer);
    width: 0;
    right: 0;
    top: 100%;
    position: absolute;
    transition: 0.5s all;
}

.navbar-list-item1 a::before
{
    content: " ";
    height: 2px;
    background-color: var(--background);
    width: 0;
    left: 0;
    top: 100%;
    position: absolute;
    transition: 0.5s all;
}

.navbar-list-item1 a::after 
{
    content: " ";
    height: 2px;
    background-color: var(--background);
    width: 0;
    right: 0;
    top: 100%;
    position: absolute;
    transition: 0.5s all;
}

.heading span
{
    background-color: rgba(43, 43, 43, 0.5);
    border-radius: 12px;
    padding: 4px;
    position: relative;
    animation: fadeIn 6s;
}

.discount-heading
{
    font-size: 60px;
}

/* header */
#header
{
    min-height: 80px;
    padding: 10px 0;
}

.navbar-logo img
{
    height: 70px;
    width: 70px;
    object-fit: contain;
}

.navbar-mobile-icon
{
    height: 70px;
    width: 70px;
    object-fit: contain;
    z-index: 2000;
    display: none;
}

.navbar-mobile-list
{
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1500;
    height: 100%;
    width: 100%;
    background-color: var(--accent);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
    gap: 20px;
    font-size: 90px;
}

/* banner */
#banner
{
    max-height: 500px;
    background: linear-gradient(to right, rgba(217, 165, 179, 0.3), var(--secondary)), url(/media/banner4.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    background-attachment: fixed;
}

.banner-content, .banner-image
{
    max-height: 500px;
    width: 50%;
    color: white;
}

.banner-content
{
    gap: 10px;
    overflow: hidden;
}

.banner-content h1 
{
    font-size: 70px;
}

.banner-image img 
{
    max-height: 500px;
    width: 100%;
    object-fit: contain;
    position: relative;
    animation: fadeIn 6s;
}

/* about */
#about
{
    background-color: var(--secondary);
}

.about-row 
{
    gap: 60px;
}

.item-row, .item-col1
{
    flex-basis: 50%;
    min-height: 400px;
}

.item-row
{
    gap: 20px;
}

.item-col1 
{
    gap: 20px;
    color: white;
}


/* services */
.item-col 
{
    gap: 20px;
    align-items: center;
}

.item-col img 
{
    padding: 12px;
    background-color: var(--primary);
    border-radius: 50%;
}

/* wedding discount */
#wedding-discount
{
    min-height: 400px;
    background-image: url(/media/weddingmakeupdiscount.png);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.wedding-row
{
    width: 50%;
}

.item-col2
{
    gap: 20px;
    align-items: flex-start;
}

/* form */

.item-col3 
{
    gap: 20px;
    align-items: flex-start;
    width: 50%;
}

/* testimonial section */
#review
{
    min-height: 300px;
    background-color: var(--secondary);
}

.testimonial
{
    min-height: 300px;
    width: 100%;
    position: relative;
}

.testimonial-row 
{
    gap: 12px;
    justify-content: space-evenly;
}

.testimonial-card
{
    height: 100%;
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
}

.active 
{
    display: block;
}

.testimonial-image
{
    height: 70%;
    border-radius: 12px;
    border: 2px solid var(--footer);
    overflow: hidden;
    box-shadow: 0px 0px 12px var(--footer);
}

.testimonial-image img 
{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.testimonial-col 
{
    gap: 12px;
}

.testimonial-bullets
{
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%,-50%);
    list-style-type: none;
    margin: 0;
    padding: 0;
    
}

.testimonial-bullets li 
{
    display: inline-block;
    margin-right: 4px;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    border: 2px solid var(--footer);
}

.active-bullet
{
    background-color: var(--footer);
}

.testimonial-arrows a
{
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
}

.left-arrow
{
    left: 0;
}

.right-arrow
{
    right: 0;
}

.right-arrow img 
{
    transform: rotate(-180deg);
}

/* instagram feed */
.instagram-follow
{
    gap: 20px;
    align-items: center;
}

.instagram-follow .button 
{
    color: var(--accent);
}

.instagram-content 
{
    gap: 20px;
    transition: all 0.5s;
}

.instagram-content img 
{
    height: 300px;
    width: 200px;
    object-fit: contain;
    transition: all 0.5s;
}

.instagram-feed
{
    background-color: var(--background);
    background-image: url(/media/icons/insta-background.png);
    background-position: 20% 50%;
    background-repeat: no-repeat;
    background-size: 20%;
    padding: 0 20px;
    overflow: hidden;
}

/* footer section */
#footer
{
    background-color: var(--footer);
}

.footer-row
{
    justify-content: space-between;
}

.footer-form, .footer-social, .footer-links
{
    gap: 8px;
}

.footer-form .row 
{
    gap: 8px;
}

.footer-form button 
{
    background-color: var(--accent);
    color: var(--footer);
}

.footer-logo img 
{
    height: 150px;
    width: 150px;
    object-fit: contain;
}

.footer-form a
{
    color: #4A1F36;
    background-color: var(--primary);
}

/* effects */
.navbar-list-item a:hover 
{
    transform: scale(1.1);
}

.navbar-list-button a:hover 
{
    transform: scale(1.1);
}

.navbar-list-item a:hover::after 
{
    width: 50%;
} 

.navbar-list-item a:hover::before
{
    width: 50%;
} 

.navbar-list-item1 a:hover::after 
{
    width: 50%;
} 

.navbar-list-item1 a:hover::before
{
    width: 50%;
} 

@keyframes fadeIn
{
    0%{right: -60%;opacity: 0.4;}
    100%{right: 0;}
}

.instagram-content img:hover 
{
    transform: scale(1.1);
}

/* responsiveness */

/* --------------Mobile------------------ */
@media screen and (max-width:786px) 
{
    .container
    {
        max-width: 90%;
    }   

    .navbar-menu 
    {
        display: none;
    }

    .navbar-mobile-icon
    {
        display: block;
    }

    #banner
    {
        max-height: 800px;
        padding: 20px 0;
    }

    .banner-content, .banner-image
    {
        width: 100%;
    }

    .banner-row
    {
        flex-wrap: wrap;
    }

    .w-30
    {
        width: 70%;
    }

    .about-row 
    {
        flex-flow: column nowrap;
        gap: 20px;
    }

    .item-row
    {
        justify-content: space-evenly;
    }

    .aimg 
    {
        width: 18%;
    }

    .services-row 
    {
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-evenly;
    }

    .form-row 
    {
        flex-wrap: wrap;
    }

    .item-col3
    {
        width: 100%;
    }

    .testimonial-arrows
    {
        display: none;
    }

    .instagram-feed 
    {
        flex-flow: column wrap;
        background-size: 80%;
        background-position: -50% 50%;
    }

    .instagram-content
    {
        flex-flow: column wrap;
    }

    .footer-row
    {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

}

/* -----------Medium Tablet Devices----------- */
@media screen and (min-width:786px) and (max-width:1200px)
{
    .container
    {
        width: 90%;
    }

    .navbar-menu
    {
        display: none;
    }

    .navbar-mobile-icon
    {
        display: block;
    }

    .about-row 
    {
        flex-flow: column nowrap;
        gap: 20px;
    }

    .item-row
    {
        justify-content: space-evenly;
    }

    .aimg 
    {
        width: 18%;
    }

    .form-row 
    {
        flex-wrap: wrap;
    }

    .item-col3
    {
        width: 100%;
    }

    .testimonial-arrows
    {
        display: none;
    }

    .instagram-feed 
    {
        flex-flow: column wrap;
        background-size: 60%;
        background-position: -30% 0%;
    }

    .footer-row
    {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px 20px;
    }

    .footer-section,
    .footer-form
    {
        width: 48%;
    }

    .footer-logo
    {
        text-align: center;
    }

    .footer-logo img
    {
        height: 250px;
        width: 250px;
    }

    .footer-form .row
    {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .footer-form input
    {
        width: 100%;
    }

    .footer-form .button
    {
        width: 100%;
        text-align: center;
    }

    .footer-social .row
    {
        justify-content: flex-start;
    }

    .footer-social, .footer-form
    {
        padding-bottom: 20px;
    }
    
}

