@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/* Header CSS starts from here */
:root {
    --primary-bg: #FCFAF7;
    --secondary-text: #2D2D2D;
}

* {
    font-family: "Libre Baskerville", serif;
}

body {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* .top-bar {
    background-color: var(--secondary-text);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 0.85rem;
    letter-spacing: 1px;
} */

.main-header {
    background-color: var(--primary-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 0px 15px 10px rgba(128, 128, 128, 0.545);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 7px 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    z-index: 999;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-text);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.btn-cta {
    background-color: var(--secondary-text);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 2px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: opacity 0.3s;
}

.btn-cta:hover {
    opacity: 0.9;
}

.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* Container for the search */
.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 20px;
    /* Space between search and Book Now button */
}

/* The Input Field */
.search-input {
    width: 0;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid transparent;
    outline: none;
    background: transparent;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s;
    font-size: 0.9rem;
    color: #333;
}

/* Expand on hover or when focused */
.search-wrapper:hover .search-input,
.search-input:focus {
    width: 200px;
    /* Adjust width as needed */
    border-bottom: 1px solid #333;
    /* Use your primary brand color here */
    padding-right: 30px;
}

/* The Icon Button */
.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: #333;
    position: absolute;
    right: 0;
    transition: color 0.3s;
}

.search-btn:hover {
    color: #d4af37;
    /* A gold/premium accent color */
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .search-wrapper {
        margin-right: 10px;
    }

    .search-wrapper:hover .search-input,
    .search-input:focus {
        width: 130px;
    }
}

@media (max-width:900px) {

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        display: none;
    }

    .nav-links.active {
        display: block;
    }

    .menu-toggle {
        display: flex;
    }

    .search-box {
        display: none;
    }

    .nav-actions {
        display: none;
    }

}

/* Header CSS ends from here */


/* Banner CSS starts from here */
.swiper-slide {
    width: 100%;
    height: 90vh;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    padding: 30px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 30px;
}

/* Collection CSS */
.product-card {
    background-color: transparent;
    border: 1px solid transparent;
    will-change: transform, opacity;
}

.product-card:hover {
    border-color: var(--secondary-dark);
    background-color: #ffffff;
}

.img-container {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #f3f3f3;
    overflow: hidden;
}

.img-container img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    margin-left: -5%;
    margin-top: -5%;
}

.product-card:hover .img-container img {
    transform: scale(1.05);
}


.btn-premium {
    border: 1px solid var(--secondary-dark);
    color: var(--secondary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.btn-premium:hover {
    background-color: var(--secondary-dark);
    color: var(--primary-bg);
}

/* Fader section CSS */
@keyframes fade-slideshow {
    0% {
        opacity: 1;
        transform: scale(1.1);
    }

    10% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    43% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.animate-fade-slideshow {
    animation: fade-slideshow 20s infinite;
    transition-timing-function: ease-in-out;
}

.mix-blend-screen {
    mix-blend-mode: screen;
    opacity: 0.9;
}

/* Infinite scrolling brand logos section CSS */
@keyframes infinite-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.animate-infinite-scroll {
    animation: infinite-scroll 40s linear infinite;
    display: flex;
    width: max-content;
}

.animate-infinite-scroll:hover {
    animation-play-state: paused;
}

.grayscale {
    filter: grayscale(100%);
    opacity: 0.8;
}

.grayscale:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.02);
}