@import "fonts.css";
@import "specks.css";
@import "_colors.css";

html {
    height: 100%;
}

.background {
    position: absolute;
    z-index: -1;

    &:before {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: url("../../assets/images/bg.png") no-repeat center;
        background-size: cover;
    }
}

/*FONTS*/
body, p {
    font-family: Raleway, serif;
}

h1, h2, h3, h4, h5 {
    font-family: Munday, serif;
    text-transform: uppercase;
}

/*NAVIGATION*/
header {
    background-color: var(--color-main);

    nav {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 15px;

        .navbar-brand {
            width: 100%;
            height: 170px;
            margin: 40px 0 15px;
            background: url("../../assets/images/logo-l.png") no-repeat center center;
            background-size: contain;
        }

        .navbar-toggler {

        }

        hr {
            width: 40%;
            margin: 0 auto;
            height: 2px;
            z-index: 3;
            position: relative;
            display: block;
            background: var(--color-gold-light);
        }

        .navigation-section {
            width: 100%;

            .navbar-nav {
                padding-top: 10px;
                padding-bottom: 10px;

                .nav-item {
                    .nav-link {
                        color: var(--color-gold-light);
                        padding: 10px 30px;
                    }
                }
            }
        }
    }
}

/*CAROUSEL*/
.carousel {
    .carousel-inner {
        .carousel-item {
            position: relative;

            &:before {
                content: '';
                position: absolute;
                display: block;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: radial-gradient(circle, rgba(103, 76, 44, 0) 0%, rgba(51, 35, 15, 0.6) 54%, rgba(20, 14, 14, 1) 100%);
            }

            img {
                height: 500px;
                object-fit: cover;
            }

            .carousel-caption {
                position: absolute;
                display: flex;
                justify-content: center;
                width: 100%;
                bottom: 20%;
                left: 0;

                .carousel-caption-inner {
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: flex-start;

                    h1 {
                        font-family: Kugile, serif;
                        font-family: 'Orange', serif;
                        font-family: Rosehot, serif;
                        font-family: Munday, serif;
                        color: var(--color-gold-light);
                        /*text-shadow: 1px 0px 1px #f7f09c;*/
                        width: 100%;
                        font-size: 4em;
                        text-align: start;
                    }

                    h4 {
                        font-family: Raleway, serif;
                        color: var(--color-offwhite);
                        width: 100%;
                        text-align: start;
                        font-weight: 100;
                    }
                }


            }
        }
    }
}

/*SECTIONS*/
.cta-section {
    padding: 120px 0;
    display: flex;
    justify-content: center;

    h2 {
        color: var(--color-offwhite);
        width: 100%;
        font-family: Munday, serif;
        font-size: 3.6em;
    }

    h4 {
        color: var(--color-offwhite);
        width: 100%;
        font-size: 2.1em;
        font-family: Raleway, serif;
        font-weight: 100;
    }

    p {
        color: var(--color-offwhite);
    }
}

.features-section {
    background: radial-gradient(circle, rgba(103, 76, 44, 0) 0%, rgba(51, 35, 15, 0.6) 54%, rgba(20, 14, 14, 1) 100%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    .feature {
        .features-inner {
            margin: 30px 20px 0px 20px;
            padding: 25px 35px;
            height: 100%;
            display: flex;
            flex-wrap: wrap;

            .feature-icon {
                display: block;
                width: 100%;
                margin-top: -95px;
                height: 100px;
            }

            h3 {
                margin-top: 35px;
                margin-bottom: 20px;
                color: var(--color-offwhite);
            }

            .icon-link {
                text-decoration: none;
                color: var(--color-offwhite);
                display: flex;
                align-content: center;
                margin-top: 55px;

                i {
                    margin-left: 0;
                    transition: all 0.3s ease-in-out;
                    display: flex;
                    flex-wrap: wrap;
                    align-items: center;
                    align-content: center;
                }

                &:hover {
                    i {
                        margin-left: 10px;
                        transition: all 0.3s ease-in-out;
                    }

                }
            }

        }
    }
}

.hero-section {
    height: 200px;

    img {
        height: 100%;
        object-fit: cover;
    }
}

.filter-section {
    display: flex;
    justify-content: center;

    form {
        display: flex;
        align-content: flex-end;
        align-items: flex-end;
    }
}

.shop-section {
    display: flex;
    justify-content: center;
    background: radial-gradient(circle, rgb(41 30 17 / 55%) 0%, rgb(35 23 9 / 71%) 54%, rgba(20, 14, 14, 1) 100%);

    .product-container {
        padding: 10px 15px;
        .product-inner {
            cursor: pointer;
            background: transparent; /* 1. Semi-transparent background */
            backdrop-filter: blur(10px); /* 2. The frosted glass effect */
            -webkit-backdrop-filter: blur(10px); /* Vendor prefix for compatibility */
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
            color: var(--color-offwhite);
            width: 100%;

            .product-image {
                height: 180px;
                width: 100%;
            }

            .product-info {
                padding: 10px 15px;
                .product-name {

                }

                .product-category {
                    opacity: 0.8;
                    text-transform: uppercase;
                }

                .product-price {
                    font-weight: 600;
                }
            }

        }
    }
}

/*REUSEABLE*/

.dark-block-section {
    background-color: var(--color-main);
}

.plain-blur {
    background: transparent; /* 1. Semi-transparent background */
    backdrop-filter: blur(10px); /* 2. The frosted glass effect */
    -webkit-backdrop-filter: blur(10px); /* Vendor prefix for compatibility */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    color: var(--color-offwhite);
}

.section-heading {
    font-size: 2.5em;
    color: var(--color-gold-light);
    margin-bottom: 10px;
    text-align: center;

    &.border-bottom {
        border-bottom: 0.5px solid #dead2b4f !important;
    }
}

hr {
    width: 40%;
    margin: 0 auto;
    height: 2px;
    z-index: 3;
    position: relative;
    display: block;
    background: var(--color-gold-light);
}

/*ICONS*/
.icon {
    display: block;
    position: relative;
    width: 150px;
    height: 150px;
    filter: drop-shadow(2px 4px 18px #1e1704);

    &.icon-handmade {
        background: url("../../assets/images/hand1.svg");
        background-size: contain;
    }

    &.icon-custommade {
        background: url("../../assets/images/custom1.svg");
        background-size: contain;
    }

    &.icon-gifting {
        background: url("../../assets/images/gifting1.svg");
        background-size: contain;
    }
}


/*FOOTER*/
footer {
    background-color: var(--color-main);
    color: rgba(255, 255, 255, 0.6);
    a {
        color: white;
        text-decoration: none;
    }
}

/*BUTTONS*/
.btn-primary {
    background: var(--color-main);
    color: var(--color-offwhite);
    border: var(--color-offwhite) 1px solid;
    padding: 11px 15px;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    font-weight: 600;
    position: relative;
    font-family: Bentley, sans-serif;

    &:hover {
        background: transparent;
        color: var(--color-offwhite);
        border: transparent 1px solid;
        transition: all 0.3s ease-in-out;
    }

    &::before,
    &::after {
        content: "";
        position: absolute;
        display: block;
        border: 0 solid transparent;
        width: 0%;
        height: 0%;
        transition: all 0.5s ease;
    }

    &::after {
        top: 0;
        left: 0;
        border-top: 2px solid transparent;
        border-left: 2px solid transparent;
    }

    &::before {
        right: 0;
        bottom: 0;
        border-bottom: 2px solid transparent;
        border-right: 2px solid transparent;
    }

    &:hover::before,
    &:hover::after {
        width: 100%;
        height: 100%;
        border-color: var(--color-offwhite);
        border-left: 2px solid transparent;
        border-right: 2px solid transparent;
    }

    &:disabled {
        background: var(--color-main);
        color: var(--color-offwhite);
        border: var(--color-offwhite) 1px solid;
        opacity: 0.5;
    }
}

.btn-sm {
    padding: 7.5px 10px;
}

.btn-plain {
    color: var(--color-offwhite);
}

/*FORM*/
.form-control {
    border-radius: 0;
    background: var(--color-main);
    border-color: var(--color-gold-light);
    color: var(--color-gold-light);
}