@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@100..900&display=swap');

.pagetitle {
    position: relative;
    width: 100%;
    height: 60vh;
    padding: 50px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background-color: #190e06;
}


.pagetitle::before,
.values::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #0c0f12, #0d1712d1);
    mix-blend-mode: multiply;
    opacity: .95;
    z-index: 1;
    overflow: hidden;
}


.titlecontainer {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.titlecontainer h2 {
    padding-top: 100px;
    /* font-family: myfont; */
    font-family: "Big Shoulders Display", serif;
    font-weight: 500;
    color: #f9faff;
    font-size: 70px;
    text-align: center;
    z-index: 10;
}

.pagetitle img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: cover;
    z-index: -1;
}


/* GALLERY */

.gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 100px 50px;
    gap: 30px;
}

.gallery .box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.gallery .box .dream {
    display: flex;
    flex-direction: column;
    width: 20%;
}

.gallery .box .dream img {
    width: 100%;
    padding: 0 10px 10px 0;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.gallery a {
    font-family: "Big Shoulders Display", serif;
    /* font-family: myfont; */
    display: inline-block;
    text-decoration: none;
    text-transform: capitalize;
    background: none;
    color: #190e06;
    padding: 10px 40px;
    letter-spacing: 1px;
    user-select: none;
    border: 2px solid #190e06;
    border-radius: 50px;
}


/* INTRO EDITING */


.intro {
    top: 0;
    position: relative;
    width: 100%;
    padding: 50px 100px;
    background-color: #ebe5daad;
}

.intro .intro-heading {
    padding: 20px 0;
}

.intro .intro-heading .text {
    font-family: playfair;
    font-weight: 700;
    font-size: 50px;
    /* color: #545454; */
    color: #190e06;
    width: 100%;
    margin-top: 20px;
}

.intro .intro-heading span {
    display: inline-block;
    background: #190e06;
    width: 50px;
    height: 2.5px;
}

.intro .intro-heading .motto {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 500;
    /* font-family: myfont; */
    font-family: "Big Shoulders Display", serif;
    color: #190e06;
    letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
    .intro {
        padding: 10px;
    }

    .intro .intro-heading .text {
        font-size: 2rem;
        width: 100%;
        padding-left: 20px;
    }

    .gallery {
        padding: 20px 50px;
    }


}

/* VALUES SECTION */

.values {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 100px;
    gap: 50px;
}

.values h2 {
    text-align: center;
    font-family: playfair;
    padding-bottom: 30px;
    font-size: 30px;
    z-index: 100;
    color: #f9faff;
}

.values .philosophy {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    z-index: 100;
    color: #f9faff;
}

.values .philosophy .cover {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.values .philosophy .cover .p-heading,
.p-text {
    text-align: center;
}

.values .philosophy .cover .p-heading {
    font-family: "Big Shoulders Display", serif;
    /* font-family: myfont; */
    font-size: 1.5rem;
    font-weight: 400;
}

.values hr {
    display: none;
}

.values img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: cover;
    z-index: -1;
}


@media screen and (max-width: 768px) {
    .values {
        padding: 50px 25px;
    }

    .values hr {
        display: block;
    }

    .values .philosophy .cover {
        width: 100%;
    }

    .values .philosophy {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .values .philosophy .vertical {
        display: none;
    }

    .values .philosophy .cover .p-heading,
    .p-text {
        text-align: center;
    }
}


/* CONTACT FORM  */

.contact {
    width: 100%;
    padding: 50px 100px;
}

.contact .contactForm {
    display: flex;
    justify-content: center;
    align-content: center;
}

.contact .contactForm form {
    width: 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contact .contactForm form h2 {
    font-family: playfair;
    color: #190e06;
    font-weight: 700;
    font-size: 30px;
    margin-top: 20px;
    width: 500px;
    text-align: center;
}

.contact .contactForm form .inputBox {
    width: 100%;
    position: relative;
}

.contact .contactForm form input {
    width: 100%;
    font-family: "Big Shoulders Display", serif;
    /* font-family: myfont; */
    height: 50px;
    padding-left: 10px;
    outline: none;
    border: none;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    background: none;
    border-bottom: 1px solid #190e06;
}

.contact .contactForm form textarea {
    background: none;
    border: none;
    border-bottom: 2px solid #190e06;
    color: #190e06;
    font-family: "Big Shoulders Display", serif;
    /* font-family: myfont; */
    letter-spacing: 1px;
    font-weight: 200;
    font-size: 18px;
    padding: 10px;
    outline: none;
    min-height: 90px;
    max-height: 100px;
    min-width: 100%;
    max-width: 100%;
}

.contact .contactForm form #submit {
    font-family: "Big Shoulders Display", serif;
    /* font-family: myfont; */
    display: inline-block;
    text-decoration: none;
    text-transform: capitalize;
    color: #190e06;
    padding: 10px 40px;
    letter-spacing: 1px;
    user-select: none;
    border: 2px solid #190e06;
    border-radius: 50px;
    background: none;
    width: max-content;
}



.products {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 100%; */
    padding: 50px 100px;
}

.products .prod-container {
    width: 100%;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.products .prod-container .prod-card{
    gap: 20px;
    width: 300px;
    display: block;
    /* background: linear-gradient(to right, #010a00, #001003); */
    text-decoration: none;
    /* box-shadow: 0 5px 5px rgba(176, 179, 255, 0.166); */
}

.products .prod-container .prod-card .prod-img, .prod-card img  {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

.products .prod-container .prod-card .prod-img{
    margin-bottom: 20px;
}

.products .prod-container .prod-card .prod-title{
    color: #190e06;
    /* font-family: playfair, serif; */
    font-family: "Big Shoulders Display", serif;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.5rem;
    padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .products{
        padding: 50px 20px 0 20px;
    }
}


.mapcontainer{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

iframe{
    width: 80%;
    height: 400px;
}
