@import url("https://fonts.googleapis.com/css2?family=Play:wght@400;700&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=Rajdhani:wght@300;400;500;600;700&family=Space+Grotesk:wght@300..700&display=swap");

* {
    font-family: "poppins", "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.hero-section {
    background: linear-gradient(to top, #000000e5, #fdfbfb00), var(--hero-bg-url);
    background-size: cover;
    height: 100vh;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 400;
    max-width: 500px;
}

.hero-content h1 strong {
    font-weight: 600;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
    margin-left: 30px;
}

.circle-btn {
    background-color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.circle-btn::before {
    content: "";
    position: absolute;
    left: -70px;
    width: 50px;
    height: 1.5px;
    background-color: white;
}

.circle-btn i {
    color: rgb(0, 0, 0);
    font-size: 20px;
}

.cta-text {
    font-size: 1rem;
    font-weight: 400;
    color: white;
}

@media (max-width: 768px) {
    .hero-content {
        margin: 0 20px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

/* about */
.about-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
}

.about_1_card {
    height: 440px;
    width: 100%;
    object-fit: cover;
}

.about_2_card {
    height: 360px;
    width: 100%;
    object-fit: cover;
}

.about_1_card img,
.about_2_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 90%);
    pointer-events: none;
    z-index: 1;
}

.about-card .overlay-text {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    z-index: 2;
}

.section-title {
    color: #000;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.5;
}

.section-subtitle {
    color: #c4c4c4;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.5;
}

.desc-text {
    color: #666;
    font-size: 15px;
    font-weight: 400;
}

.btn-dark-rounded {
    background-color: #000;
    color: #fff;
    border-radius: 25px;
    padding: 10px 20px;
    border: none;
}

/* mandala-art */
.custom-carousel-wrapper {
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

.custom-carousel {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease-in-out;
}

.custom-carousel .item {
    border-radius: 20px;
    overflow: hidden;
}

.custom-carousel img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    object-position: center;
}

.item-50 {
    flex: 0 0 50%;
}

.item-30 {
    flex: 0 0 30%;
}

@media (max-width: 992px) {
    .item-50 {
        flex: 0 0 60%;
    }

    .item-30 {
        flex: 0 0 40%;
    }

    .custom-carousel img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .item-50 {
        flex: 0 0 50%;
    }

    .item-30 {
        flex: 0 0 30%;
    }

    .custom-carousel img {
        height: 150px;
    }
}

.custom-carousel .item:first-child img {
    object-fit: cover;
    transition: transform 0.3s ease;
    height: 300px;
    border-radius: 20px;
}

.custom-carousel .item:first-child {
    overflow: hidden;
    position: relative;
}

.custom-carousel .item:first-child img {
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 20px;
}

.play-btn-personalized {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    background: rgba(216, 209, 198, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: black;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.play-btn-personalized:hover {
    background: rgba(255, 255, 255, 1);
}

@media (max-width: 992px) {
    .custom-carousel .item:first-child img {
        height: 220px;
    }

    .play-btn-personalized {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Mobile screens */
@media (max-width: 576px) {
    .custom-carousel .item:first-child img {
        height: 150px;
    }

    .play-btn-personalized {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* category */

#slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-scroll {
    display: flex;
    transition: transform 1s linear;
    will-change: transform;
    justify-content: flex-start;
}

.carousel-card {
    position: relative;
    flex: 0 0 auto;
    margin: 20px;
    overflow: hidden;
    border-radius: 30px;
    width: 220px;
    height: 300px;
}

.carousel-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: 2;
}

.carousel-card:hover .overlay {
    opacity: 1;
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* Play Button Overlay */
.play-btn-category {
    width: 60px;
    height: 60px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.play-btn-category:hover {
    background: #f1f1f1;
}

/* Odd/Even Margin */
.carousel-card:nth-child(odd) {
    margin-top: 30px;
}

.carousel-card:nth-child(even) {
    margin-top: 0;
}

.carousel-card:nth-child(1) {
    margin-top: 100px;
}

.carousel-card:nth-child(3) {
    margin-top: 110px;
}

.carousel-card:nth-child(5) {
    margin-top: 100px;
}

.carousel-card:nth-child(6) {
    margin-top: 150px;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-card img {
        max-width: 250px;
    }

    .carousel-scroll {
        display: flex;
        transition: transform 1s linear;
        will-change: transform;
        justify-content: flex-start;
    }
}

/* arrival section */

.arrival-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.arrival-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    border-radius: 30px;
}

.arrival-card {
    overflow: hidden;
    flex: 0 0 calc(33.333% - 18px);
    border-radius: 30px;
    width: 100%;
    text-align: left;
}

.arrival-card .image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 30px;
}

.arrival-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 30px;
    overflow-x: hidden;
    object-position: center;
}

.arrival-card h6,
p {
    text-align: left;
}

.arrival-btn {
    background: #000;
    color: #fff;
    border-radius: 30px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.arrival-h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    width: 65%;
}

@media (max-width: 992px) {
    .arrival-card {
        flex: 0 0 calc(50% - 18px);
    }

    .arrival-h2 {
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.5;
        width: 80%;
    }
}

@media (max-width: 576px) {
    .arrival-card {
        flex: 0 0 100%;
    }

    .arrival-h2 {
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.5;
        width: 70%;
    }
}

/* event */
.event-img2 {
    border-radius: 30px;
}

.event-img2 img {
    overflow: hidden;
    border-radius: 30px;
    border: 15px solid #f0f0f0;
    max-height: 250px;
    width: 700px;
    object-fit: cover;
    object-position: center center;
}

.d-md-flex button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-card {
    border-radius: 20px;
    overflow: auto;
    width: 240px;
    height: 300px;
    margin: 0 10px;
    flex-shrink: 0;
    scroll-snap-align: start;
    position: relative;
    display: inline-block;
}

.carousel-card img {
    width: 240px;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* event */
.card-wrapper {
    background-color: #fff;
    border: none;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card-title {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.card-divider {
    border-top: 1px solid #eee;
    margin: 10px 0;
}

.card-text {
    color: #7a7a7a;
    font-size: 16px;
    line-height: 1.6;
}

.btn-read-more {
    background: #000;
    color: #fff;
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* transition: all 0.3s ease; */
    white-space: nowrap;
}

.btn-read-more i {
    margin-left: 0.5rem;
    font-size: 1em;
}

/* .btn-read-more:hover {
    background-color: #111;
    color: #fff;
    border-radius: 3rem;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
} */

@media (max-width: 768px) {
    .btn-read-more {
        font-size: 0.85rem;
        padding: 0.4rem 0.9rem;
    }
}

@media (max-width: 480px) {
    .btn-read-more {
        font-size: 0.8rem;
        padding: 0.3rem 0.7rem;
        border-radius: 1.5rem;
    }
}

.card-date {
    font-size: 14px;
    color: #666;
}

.card-wrapper {
    position: relative;
}

/* collection */
.carousel-outer {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-wrapper {
    display: flex;
    gap: 10%;
    transition: transform 0.6s ease-in-out;
}

.carousel-img {
    flex: 0 0 calc(33.33% - 30px);
    border: 5px solid rgb(53, 52, 52);
    object-fit: cover;
    object-position: center;
    max-width: 300px;
    height: 448px;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform: scale(0.8);
}

.carousel-img.active {
    transform: scale(1);
    opacity: 1;
    z-index: 5;
}

.carousel-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    width: 100%;
}

#collectionPrev,
#collectionNext {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

#collectionPrev {
    left: calc(32.33% - 30px);
}

#collectionNext {
    left: calc(69.66% - 30px);
}

@media (max-width: 1024px) {
    .carousel-img {
        flex: 0 0 calc(50% - 20px);
    }

    #collectionPrev {
        left: 10%;
    }

    #collectionNext {
        right: 10%;
    }

    #collectionPrev,
    #collectionNext {
        position: static;
        top: 60%;
        transform: translateY(-50%);
        z-index: 10;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        justify-content: center;
        gap: 0;
    }

    .carousel-img {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    #collectionPrev,
    #collectionNext {
        position: static;
        transform: none;
        margin: 10px 5px;
    }

    .carousel-controls {
        display: flex;
        justify-content: center;
        margin-top: 10px;
        gap: 15px;
    }
}

.collection-wrapper {
    position: relative;
    display: inline-block;
}

.collection-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.1);
    z-index: 1;
    white-space: nowrap;
    text-align: center;
}

@media (min-width: 1200px) {
    .collection-bg-text {
        font-size: 15rem;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .collection-bg-text {
        font-size: 10rem;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .collection-bg-text {
        font-size: 8rem;
    }
}

@media (max-width: 767px) and (min-width: 576px) {
    .collection-bg-text {
        font-size: 6rem;
    }
}

@media (max-width: 575px) and (min-width: 300px) {
    .collection-bg-text {
        font-size: 4.3rem;
        top: 40%;
    }
}

.collection-wrapper img{
    width: 600px;
    height: 400px;
    object-fit: cover;
    z-index: 2;
    position: relative;
}

.sofa-img {
    width:100%;
    height: 100%;
    z-index: 2;
    position: relative;
}


/* blog */
.card-custom1,
.card-custom2 {
    width: 500px;
    height: auto;
    border: none;
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.2s;
    background-color: #f0f0f0;
}

.card-custom1 img,
.card-custom2 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.card-custom1:hover,
.card-custom2:hover {
    transform: scale(1.01);
}

.card-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-explore-more {
    background: #000;
    color: #fff;
    border-radius: 30px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* gallery */
.gallery-section {
    text-align: center;
    background-color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-section h2 {
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 20px;
}

.gallery-preview {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 450px;
    margin: 0 auto 10%;
    transition: opacity 0.5s ease;
}

.gallery-preview a {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 450px;
    margin: 0 auto 10%;
    transition: opacity 0.5s ease;
}

.gallery-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18vw;
    font-weight: 900;
    color: rgba(10, 9, 9, 0.08);
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
}

/* 📱 Tablets */
@media (max-width: 768px) {
    .gallery-bg-text {
        font-size: 16vw;
    }
}

@media (max-width: 480px) {
    .gallery-bg-text {
        font-size: 23vw;
    }

    .preview-img {
        max-width: 200px;
        max-height: 250px;
    }
}


.preview-img {
    position: absolute;
    width: 100%;
    max-width: 300px;
    height: auto;
    max-height: 400px;
    object-position: top center;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    transform-origin: center center;
    justify-content: center;
    align-items: center;
}

@media (max-width: 575px) {
    .preview-img {
        max-width: 250px;
        max-height: 300px;
    }
}

.preview-img.img-1 {
    z-index: 4;
    transform: rotate(0deg);
}

.preview-img.img-2 {
    z-index: 3;
    transform: rotate(-5deg) translate(-3%, 3%);
    opacity: 0.2;
}

.preview-img.img-3 {
    z-index: 2;
    transform: rotate(5deg) translate(3%, -3%);
    opacity: 0.2;
}

.preview-img.img-4 {
    z-index: 1;
    transform: rotate(-7deg) translate(-5%, 4%);
    opacity: 0.2;
}

.gallery-preview:hover .preview-img.img-1 {
    transform: scale(1.05);
}

#fullGallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    justify-content: center;
    align-items: center;
}

#fullGallery.active {
    position: relative;
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    justify-content: center;
    align-items: center;
}

.gallary-images img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 480px) {
    .gallery-preview {
        width: 300px;
        height: 350px;
    }

    .preview-img.img-2 {
        transform: rotate(-3deg) translate(-2%, 2%);
    }

    .preview-img.img-3 {
        transform: rotate(3deg) translate(2%, -2%);
    }

    .preview-img.img-4 {
        transform: rotate(-4deg) translate(-3%, 3%);
    }
}

@media (max-width: 575px) {
    .preview-img {
        max-width: 250px;
        max-height: 300px;
    }
}


/* =============================================================================== */

/* typing effect */
@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* cursor blinking */
@keyframes cursor {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: black;
    }
}