/* import styles */

@import './navBar.css';
@import './footer.css';

/* import fonts */
@import url('https://fonts.googleapis.com/css2?family=Exo:wght@100;200;300;400;500;600;700&family=Montserrat+Alternates:ital,wght@1,200;1,300;1,400;1,500;1,600;1,700&family=Roboto:wght@100;300;400;500;700&family=Indie+Flower&display=swap');

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    margin-top: 5%;
    flex: 1 0 auto;
}
/* colors */

/* services colors*/
.bg-color-bronze {
    background-color: #cb7e1f;
}

.bg-color-silver {
    background-color: #c7d4da;
}
.bg-color-gold {
    background-color: #f8d570;
}

/* contact colors */
.bg-color-f1 {
    background-color: rgba(126, 103, 126, 0.5);
    border: 1px solid rgb(126, 103, 126);
    border-left: 2px solid rgb(126, 103, 126);
}

.bg-color-f2 {
    background-color: rgba(126, 103, 126, 0.2);
    border: 1px solid rgb(126, 103, 126);
}

.bg-color-f3 {
    background-color: rgba(126, 103, 126, 0.5);
    border: 1px solid rgb(126, 103, 126);
}

.bg-color-f4{
    background-color: rgba(126, 103, 126, 0.2);
    border: 1px solid rgb(126, 103, 126);
    border-right: 2px solid rgb(126, 103, 126);
}

/* fonts  */
h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

h3, h4, h5 {
    font-family: "Exo",sans-serif;
    font-weight: 300;
}

/* specials margins */

.margin-left-20 {
    margin-left: 10%;
}

.work-section {
    margin-top: 2%;
    margin-bottom: 2%;
}

.left-team {
    width: 47%;
    float:left;
    padding:1%;
}

.right-team {
    width: 47%;
    padding: 1%;
    float: right;
}

#left-service{
    float: left;
    width: 33%;
    padding: 1% 0 1% 3%;
}

#right-service {
    float: right;
    width: 33%;
    padding: 1% 3% 1% 0;
}

#center-service{
    width:33%;
    margin: auto;
}

.clear-both {
    clear: both;
}

.hidding-p {
    visibility: hidden;
}

.heading-margin {
    margin-top: 4%;
}

/* index */

.index-image {
    background-image: url(../img/couple.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 500px;
}

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


/* Gallery */

.grid-gallery{
    display: grid;
    grid-template: repeat(3, 1fr) / repeat(4, 1fr);
    width: 90vw;
    height: auto;
    margin: 0 auto;
}

.item{
    background-position: center;
    background-size: cover;
    aspect-ratio: 4/3;
}

.item-1{
    background-image: url('../img/gallery/beach_banquet.webp');
}

.item-2{
    background-image: url("../img/gallery/bride_and_groom.webp");
}

.item-3{
    background-image: url("../img/gallery/flowers_banquet.webp");
}

.item-4{
    background-image: url("../img/gallery/sunset-wedding.webp");
}

.item-5{
    background-image: url("../img/gallery/wedding_venue.webp");
}

.item-6{
    background-image: url("../img/gallery/wedding-church.webp");
}

.item-7{
    background-image: url("../img/gallery/wedding-clasic.webp");
}

.item-8{
    background-image: url("../img/gallery/wedding-Forest.webp");
}

.item-9{
    background-image: url("../img/gallery/wedding-mask.webp");
}

.item-10{
    background-image: url("../img/gallery/wedding_banquet_1.webp");
}

.item-11{
    background-image: url("../img/gallery/wedding_pool.webp");
}

.item-12{
    background-image: url("../img/gallery/wedding_trainers.webp");
}

/* Services */

.packs {
    height: 100px;
}

.packs-lists li {
    list-style: none;
}

#sevice-photo-container {
    width: 300px;
    height: 600px;
    padding: 5px;
    vertical-align: middle;
    margin: 0 auto;
}

#services-photo { 
    background: url("../img/services.webp") center center/cover no-repeat;
    height: 90%;
    width: 80%
    
}

/* about us */

/* creating container: background-image with opacity */
#company{
    clear: both;
    position: relative;
}

.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.background-container::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/bench-roses.webp") center center / cover no-repeat;
    background-attachment: scroll;
}

/* position of the content over the image */
.content {
    position: relative;
    color: #000000;
    z-index: 1;
}

.team-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin-right: 10%;
}

.info-team {
    text-align: left;
    font-size: 110%;
}

.right-team .info-team{
    margin-right: 2%;
}

#sarah {
    background: url("../img/team/Sarah.webp") center center/cover no-repeat;
    float: left;
}

#emma {
    background: url("../img/team/Emma.webp") center center/cover no-repeat;
    float: left;
}

/* contact */

.form-container {
    margin-top: 3%;
}

.form-design {
    width: 70%;
    margin: 0 auto;
}

.btn-form {
    border: 1px solid #000000;
    background-color: rgb(126, 103, 126);
    color:#fafafa
}

.btn-form:hover {
    background-color: #fafafa;
    color: rgb(90, 59, 90);
    border: 1px solid #000000;
}

.form-control{
    border:  2px solid rgb(126, 103, 126);
}

.form-textarea{
    border:  2px solid rgb(126, 103, 126);
    resize: none;
    border-radius: 10px;
    width: 100%;
}

#feedback q {
    padding-bottom: 20px;
}

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

.contact-left{
    float: left;
    padding-left: 2%;
    width: 50%;
}

.contact-right{
    float: left;
    width: 50%;
}

.contact-right li {
    list-style: none;
    
}

.frame {
    width: 80%;
}

/*response.html*/
.main-thankyou {
    width: 100%;
    height: 70vh; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.container-thankyou{
    width: 100%;
    height: 100%;
    background-image: url('../img/floralframe.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*center and align vertical items*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-thankyou h2, .title-thankyou h3{
    text-align: center;
    font-family: 'Indie Flower', cursive;
    font-size: 5vw;
}

.adjust100{
    height: 100vh;
}

/* medias */

@media screen and (max-width: 480px){
    .grid-gallery{
        grid-template: repeat(6, 1fr) / repeat(2, 1fr);
    }

    .form-design{
        width: 95%;
        margin: 0 auto;
    }

    .text-area{
        margin-left:0;
        text-align: left;
    }

}

@media screen and (max-width: 768px) {
    main{
        margin-top: 100px;
    } 
    #left-service {
        width: auto;
        float: none;
        padding: 1% 3% 1% 3%;
    }

    #right-service {
        width: auto;
        float: none;
        padding: 1% 3% 1% 3%;
    }

    #center-service{
        display: none;
    }

    #right-service h5,
    #left-service h5 {
        text-align: center;
    }

    .contact-left{
        float: none;
        width: 100%;
        padding-left: 2px;
    }

    .contact-right{
        float: none;
        width: 100%;
    }

}

@media screen and (max-width: 1024px) {

    .team-photo {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        margin-right: 5%;
    }

    .left-team, .right-team {
        width: auto;
        float: none;
        padding: 1%;
        margin-bottom: 10%;
    }

    .info-team {
        padding-left: 5px;
    }
}

@media screen and (min-width: 1360px) {

    main {
        margin-top: 4%;
    }

}

@media screen and (min-width: 481px) and (max-width: 1024px){

    .grid-gallery{
        grid-template: repeat(4, 1fr) / repeat(3, 1fr);
    }
} 

@media screen and (min-width: 768px) and (max-width: 1024px){

    main{
        margin-top: 6%;
    }
} 