﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: var(--primary-color);
    font-family: 'Rubik';
    font-family: 'DM Sans';
}


body {
    background-color: rgb(245 245 244);
}


/* -- Root varaible -- */

:root {
    --primary-color: rgb(116 19 45);
    --secondary-color: rgb(244 63 94);
    --tertiory-color: rgb(251 113 133);
    --logo-text-shadow: 0 6px rgba(114, 114, 255, 0.2);
    --btn-color: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color) );
    --hover-color: rgb(255 228 230);
    --footer-color: rgb(76 5 25);
    --box-shadow: 0 0 15px rgba(251, 113, 133, 0.4);
}

/* -- Custom Classes -- */

.support-color {
    color: var(--secondary-color);
}

.hr {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik';
}

input::placeholder, textarea::placeholder {
    color: #aaa;
}

input {
    color: var(--primary-color);
}

.btn-main {
    background: var(--btn-color);
    color: #fff;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

    .btn-main:hover {
        background: transparent;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
    }

.btn-link {
    color: var(--secondary-color);
    text-decoration: none;
}

    .btn-link:hover {
        color: var(--secondary-color);
        border-bottom: 2px solid var(--secondary-color);
    }

.search-input {
    display: block;
    width: 100%;
    padding: 0 .75rem;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    border: none;
    background-clip: padding-box;
    appearance: none;
    background-color: #fff;
    transition: border .15s ease-in-out, box-shadow .15s ease-in-out;
}

    .search-input:focus {
        outline: none;
    }

.search-box {
    margin: 0 5rem;
    border: 2px solid var(--secondary-color);
}

.search-div i {
    color: var(--secondary-color);
}

.search-result {
    height: 510px;
    overflow-y: scroll;
}

.search-result-data {
    height: 75px;
}

    .search-result-data:hover {
        background-color: var(--hover-color);
    }

.secondary-form-color {
    background-color: var(--hover-color);
}

.sidebar-blog:hover {
    box-shadow: var(--box-shadow);
}

.blog-heading {
    transition: all .3s ease;
}

    .blog-heading:hover {
        color: var(--secondary-color);
        font-size: 1.2rem;
    }

.custom-card {
    background-color: #fff;
}

    .custom-card:hover {
        background-color: var(--hover-color);
    }

.Error {
    color: var(--tertiory-color);
}

.login-container {
    padding: 0 10%;
}
/* -- Custom Classes End -- */

/* -- Navbar -- */
nav {
    width: 100%;
    height: 100%;
    /*height: 80px;*/
    z-index: 99;
}

    nav .navbar {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: auto
    }

.navbar .logo a {
    /*  font-size: 1.8rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 450;
    font-style:normal;*/
    /*text-shadow: 0 0 10px rgba(114, 114, 255, 0.2);*/
    /*text-shadow: var(--logo-text-shadow);*/
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .03rem;
    text-decoration: none;
    color: var(--primary-color);
}

nav .navbar .links {
    display: flex;
    margin-bottom: 0;
    padding-left: 0;
}

    nav .navbar .links li {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        list-style: none;
        padding: 7px 10px;
        border-radius: 7px;
    }

        nav .navbar .links li a {
            height: 100%;
            text-decoration: none;
            white-space: nowrap;
            color: var(--primary-color);
            font-size: 1rem;
            line-height: 1.2;
            font-weight: 450;
            letter-spacing: .03em;
            text-transform: capitalize;
            transition: all 0.1s ease-out;
            position: relative;
        }

            nav .navbar .links li a:after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 2px;
                background: var(--secondary-color);
                transition: all .2s linear;
            }

            nav .navbar .links li a:hover:after {
                /*background-color: var(--hover-color);*/
                /*border-bottom: 2px solid var(--primary-color);*/
                width: 100%;
            }


.navbar .nav-links .sidebar-logo {
    display: none;
}


.navbar .bx-menu {
    display: none;
}

.sidebar-logo img {
    width: 220px;
}
/* -- Navbar End -- */
/* -- Home page -- */
/* -- Hero Section -- */
.hero-section {
    height: 600px;
    position: relative;
}

    .hero-section img {
        width: 100%;
        height: 100%;
        position: absolute;
        object-fit: cover;
        top: 0;
        left: 0;
    }

    .hero-section .search-box i {
        /*background-color: var(--secondary-color)*/
        color: var(--secondary-color);
    }

.min-w-150 {
    width: 100%;
    min-width: 150px;
}

.encyclopedia {
    /*background-color: rgba(255,255,255,0.7);*/
    background-color: rgba(255,228,230,0.7);
}

/* -- Hero Section End -- */

/* -- NoteGroup Section -- */

.notegroup-section {
    min-height: 500px;
}

    .notegroup-section .heading span {
        color: var(--secondary-color);
        font-family: 'Rubik';
    }



.topic {
    padding: 0.5rem 1rem;
    font-weight: 450;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    margin: 0;
    border-bottom: 1px solid var(--primary-color);
}

    .topic:hover {
        border-radius: 5px;
        background: var(--btn-color);
        color: #fff
    }
/* -- NoteGroup Section End -- */

/* -- Brands Section -- */

.brand-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.brand-slider {
    display: flex;
    animation: slide 40s linear infinite;
}

.brand-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    background-color: var(--hover-color);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Brand Logo */
.brand-logo {
    width: 70%;
    height: 70%;
    object-fit: contain;
    mix-blend-mode: multiply;
}
/* -- Brands Section End -- */


/* -- MidBlog carousal Section -- */

.fullblog {
    height: 520px;
}

.blog-category-tag {
    background: var(--btn-color);
    color: var(--hover-color);
    padding: 0.5rem 1rem;
}

    .blog-category-tag:hover {
        background: var(--hover-color);
        color: var(--primary-color);
    }

/* -- MidBlog carousal Section End -- */


/* -- Home Section End -- */


/* -- News Page -- */

.blog-content-text {
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: normal;
    line-height: 1.55;
}

.comment-box {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
}

    .comment-box p a {
        margin: 5px 0;
        color: var(--secondary-color);
        cursor: pointer;
        text-decoration: none;
    }

/* Featured Posts */
.featured-post {
    height: 80px;
}

.featured-post-content p {
    font-size: 0.9rem;
    margin: 0;
}

.featured-post-content small {
    color: #6c757d;
}

.min-w-150 {
    width: 100%;
    max-width: 150px;
}

/* -- News Page End -- */


/* -- Notes Page --*/
.notegroup-link {
    color: var(--primary-color);
}

    .notegroup-link:hover {
        color: var(--tertiory-color);
    }



/* -- Notes Page End --*/


/* -- Perfume Page --*/
.svg-icon {
    stroke: #cccccc; /* Default color */
}

.selected-color {
    stroke: var(--secondary-color); /* Blue color when selected */
}

.default-color {
    stroke: #cccccc; /* Light gray for unselected state */
}

.svg-color {
    fill: #cccccc;
}

.svg-selected-color {
    fill: var(--secondary-color);
}

.winter-selected-color {
    fill: #0d6efd;
}

.spring-selected-color {
    fill: #32b040;
}

.summer-selected-color {
    fill: #ff6a00;
}

.fall-selected-color {
    fill: #1e430f;
}

.day-selected-color {
    fill: #ffd800;
}

.night-selected-color {
    fill: #9895ff;
}

.svg-default-color {
    fill: #cccccc;
}

.default-stroke-width {
    stroke-width: 50;
}

.rating-bar {
    background: #e0e0e0;
    height: 12px;
}

    .rating-bar span {
        background: #d9534f;
        display: block;
        height: 100%;
    }
/* -- Perfume Page End --*/


/* -- Compare Page --*/

.side-border {
    border-right: 1px solid var(--primary-color);
}

/* -- Compare Page End--*/


/* -- Contect US Page --*/

.faq-answer {
    height: 0; /* Collapse the content initially */
    overflow: hidden; /* Hide overflowing text */
    opacity: 0; /* Start with 0 opacity */
    transition: height 0.3s ease, opacity 0.3s ease; /* Smooth transition for height and opacity */
}

    .faq-answer.faq-active {
        opacity: 1; /* Fully visible when active */
        transition: height 0.3s ease, opacity 0.3s ease; /* Smooth transition for height and opacity */
    }

    /*.faq-answer {
    display: none;
}

.faq-active {
    display: block;
}*/

    .faq-answer p {
        font-size: 0.825rem;
        margin-bottom: 0;
    }

.faq-question:hover {
    color: var(--secondary-color);
}

.contact-input {
    display: block;
    width: 100%;
    padding: .275rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--secondary-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    border: 1px solid #dee2e6;
    border: 1px solid var(--tertiory-color);
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

    .contact-input:focus {
        outline: none !important;
        border: 2px solid var(--primary-color);
    }

.contact-heading {
    text-transform: uppercase;
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
    position: relative;
}

    .contact-heading:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        margin-top: 1rem 0;
        width: 75px;
        height: 4px;
        background-color: var(--secondary-color);
        border-radius: 0.325rem;
    }



/* -- Profile Page  --*/
.wardrove_shadow {
    box-shadow: inset -101px 0px 114px -100px rgba(116 19 45,0.51);
}
/* -- Profile Page End --*/


/* -- Prefooter -- */
.prefooter-link:hover, .prefooter-link span:hover {
    color: var(--tertiory-color);
}
/* -- Prefooter End -- */


/* -- Footer -- */
footer {
    background-color: var(--footer-color);
    /*border-top: 1px solid var(--primary-color);*/
    /*margin-top: 50px;*/
}

.footer-about img {
    height: 100px;
}

footer h4, footer li a, footer p, footer a {
    color: #fff !important;
}


    footer li a:hover, footer a:hover {
        color: var(--tertiory-color) !important;
    }

.footer-social-link {
    display: flex;
    gap: 15px;
    padding-top: 10px;
}

.footer-social-link-icon {
    border: 3px solid #fff;
    min-width: 40px;
    background-color: transparent;
    border-radius: 8px;
    text-decoration: none;
}

    .footer-social-link-icon i {
        color: #fff;
        padding: .6rem;
        width: 100%;
        font-size: 1.15rem;
        transition: .2s linear;
    }

        .footer-social-link-icon i:hover {
            color: var(--primary-color);
            background-color: white;
        }
/* -- Footer End -- */


/* -- Media Query -- */
@media (max-width: 992px) {
    .navbar .nav-links .sidebar-logo {
        display: block;
    }


    .navbar .bx-menu {
        display: block;
        font-size: 2rem
    }

    .bx-x {
        font-size: 2rem;
        padding: 5px;
        background-color: transparent;
        border-radius: 50%;
        transition: .2s linear;
    }

        .bx-x:hover {
            background-color: var(--hover-color);
        }

    nav .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        width: 100%;
        height: 100%;
        background: #fff;
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 1.5rem;
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: .03rem;
        text-decoration: none;
        color: var(--primary-color);
    }

    .sidebar-logo i,
    .navbar .bx-menu {
        color: var(--primary-color);
    }

    nav .navbar .links {
        display: block;
        margin: 20px 0 0 20px;
    }


        nav .navbar .links li {
            display: block;
            padding: 0;
        }

    .brand-container {
        width: 150px;
        height: 150px;
    }

    .brand-logo {
        width: 75%;
    }
}


@media (max-width: 775px) {
    .search-box {
        margin: 0 1rem;
    }
}

@media (max-width: 576px) {

    nav img {
        width: 175px;
    }

    .brand-container {
        width: 150px;
        height: 150px;
    }
}

/* Slide Animation Keyframes */
@keyframes slide {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-500%);
    }
}
