* {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    scroll-padding-top: 1rem;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;  
    box-sizing: border-box;
    
}

:root {
    --main-color: #d4af37;
    --text-color: #fff;
    --bg-color: #191919;
    --other-color: #777; 
}

body {
    color: var(--text-color);
    background-color: var(--bg-color);
}

section {
    padding: 4rem 0 0;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1068px;
    margin-left: auto;
    margin-right: auto;
    
}

header {
    width: 100%;
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    z-index: 100;
    /*
    background-color: var(--bg-color);
    */
    box-shadow: 1px 2px 10px var(--main-color);
    
}

.cart-counter{
    position: fixed;
    top: 20px;
    right: 20px;

    background: rgba(255,255,255,.15);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
   

    padding: 12px 20px;
    border-radius: 50px;

    z-index: 9999;
}

.cart-counter a{
    text-decoration: none;
    color: white;
    font-weight: 600;
}

header .shadow {
    background-color: var(--other-color);
        box-shadow: 2px 4px 4px var(--main-color);
        transition: 0.3s ease;
}


.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 35px;
 
}

#menu-icon {
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
    margin-right: 10px;
    transition: 0.3s ease;
    display: none;

}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--other-color);
    font-family: 'Megrim', sans-serif;
}

.logo span {
    color: var(--main-color);

}


.logo img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;    
    
}

.logo-img{
    width: 400px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.navbar {
    display: flex;
    column-gap: 1.5rem;
    @media (max-width: 768px) {
        display: none;
    }

}

.navbar a {
    color: var(--text-color);
    font-size: .7rem;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
}
.navbar a:hover,
.navbar a.active {
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
}

#search-icon {
    font-size: 20px;
    cursor: pointer;
    color: var(--other-color);
}

.search-box {
    position: absolute;
    top: 110%;
    right: 0;
    left: 0;
    box-shadow: 4px 4px 15px rgba(5,120,24,0.5);
    border: none;
    border-radius: 10px;
    clip-path: circle(0% at 10% 0%);
}
.search-box.active {
    clip-path: circle(200% at 100% 0%);
    transition: 1s;
}

.search-box input {
    width: 100%;
    padding: 20px;
    border: none; outline: none;
    background: transparent;
    font-size: 1rem;
}
/*
.home {
    max-width: 1300px;
    min-height: 1000px;
    margin:auto;
    width: 100%;
    display: flex;
    align-items: center;
    background: url(photos/IMG_0133.JPG);
    background-size: cover;
    background-repeat: no-repeat;

}

.home-text {
    padding-left: 100px;
    max-width: 500px;
    color: var(--text-color);
}

.home-text h1 {
    font-size: 2rem;
    line-height: 3rem;
}

.home-text span {
    color: var(--main-color);
    font-size: 3.5rem;
}

.home-text p {
    font-size: 1rem;
    font-weight: 600;
    margin: .5rem 0 1.2rem;
    color: var(--other-color);
    line-height: 1.1rem;
}

.btn {
    padding: 10px 22px;
    color: var(--bg-color);
    background-color: var(--main-color);
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 4px;
    font-size: 1rem;
    
}

.btn:hover {
    background-color: var(--other-color);
    transition: 0.3s ease;
    font-weight: 500;
}
 */

 /* MAIN SLIDER */
.lux-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* SLIDES */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.15); /* zoom effect */
    transition: opacity 2.5s ease-in-out, transform 5s ease;
    
}

/* ACTIVE SLIDE */
.slide.active {
    opacity: 1;
    transform: scale(1); /* zoom out smoothly */
    
}

/* IMAGES */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-top: 50px;
}

/* DARK LUXURY OVERLAY */
.lux-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.6)
    );
    z-index: 1;
}

/* TEXT CONTENT */
.content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
}

.content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.content h1 span {
    color: #d4af37;
}

.content p {
    font-size: 1.2rem;
    margin-top: 15px;
    line-height: 1.6;
    color: #ddd;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s ease;
}

.btn:hover {
    background: #fff;
    transform: translateY(-3px);
}

.heading {
    text-align: center;
}
.heading span {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 2rem;
    color: var(--main-color);
}

.heading h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--other-color);
    
}

.heading p {
    font-size: .8rem;
    font-weight: 600;
    color: var(--other-color);
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.products-container .box {
    flex: 1 1 10rem;
    position: relative;
    overflow: hidden;
    height: 350px;
    box-shadow: 1px 1px 10px var(--main-color);
    border-radius: .6rem;
}

.products-container .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;   
}

.products-container .box img:hover {
    transform: scale(1.1);
    transition: .5s;
}

.products-container .box h2 {
    position: absolute;
    bottom: 1rem;
    left: 0;
   font-weight: 600;
   font-size: .8rem;
   background: var(--main-color);
   padding: 8px;
}

.products-container .box h2:hover{
    background: var(--main-color);
    color: var(--bg-color);
    transition: .3s;

}

.products-container .box h3 {
    position: absolute;
    top: 1rem;
    right: 0;
   font-weight: 600;
   font-size: .6rem;
   background: rgba(13, 45, 10, 0.845);
   padding: 8px;
   color: var(--bg-color);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}


/* About section */

.about {
    margin-top: 4rem;
     position: relative;
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    box-shadow: 1px 1px 10px var(--main-color);
    border-radius: .6rem;

    display: flex;
    align-items: center;
    justify-content: flex-end; /* Push text to the right */

    padding: 0 8%;
}

/* Background Image */
.about-image {
    position: absolute;
    inset: 0;
    z-index: 1;

    display: flex;
    justify-content: center;
    align-items: center;
}
    

/* Slideshow Images */
.about-image img {
    width: 65%;
    max-width: 450px;
    height: 75%;
    object-fit: cover;

    border-radius: 1.2rem;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.2);

    /* Luxury Shadow */
    box-shadow:
        0 15px 35px rgba(0,0,0,0.35),
        0 0 25px rgba(255,255,255,0.15),
        0 0 35px rgba(212,175,55,0.2);

    padding: 8px;

    animation: luxuryFloat 5s ease-in-out infinite;
}

@keyframes luxuryFloat {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Dark Overlay */
.about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

/* Text Content */
.about-text {
      position: relative;
    z-index: 3;

    max-width: 500px;

    padding: 2rem;

    text-align: right; /* Align text to the right */

    color: #fff;

    background: rgba(255,255,255,0.08);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 1rem;
}

.about-text h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--main-color);
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}

.about-text p {
    font-size: 1.2rem;
    margin: .5rem 0 1.4rem;
    line-height: 1rem;
    color: var(--text-color);
    margin-top: 4rem;
    font-style: italic;
}

/* Button */
.about-text .btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--main-color);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.about-text .btn:hover {
    background: #fff;
    transform: translateY(-3px);
}

/* Slideshow Images */
.about-image .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity 2.5s ease-in-out,
        transform 8s ease;

    transform: scale(1.08);
}


/* Active Slide */
.about-image .slide.active {
    opacity: 1;
    transform: scale(1);
}

/* contact section */

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: cover;

    border-radius: 1rem;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, 0.25);

    /* Luxury Shadow */
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(255, 255, 255, 0.15),
        0 0 25px rgba(212, 175, 55, 0.2);

    padding: 8px;

    transition: all 0.4s ease;
    box-shadow: 1px 1px 10px var(--main-color);
     animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

.contact-image img:hover {
   transform: scale(1.03) translateY(-5px);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(212, 175, 55, 0.35);
}

.social-icons{
    display:flex;
    gap:15px;
    margin:25px 0;
}

.social-icons a{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff;
    color:var(--main-color);
    font-size:1.3rem;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:var(--main-color);
    color:#fff;
    transform:translateY(-5px);
}

.contact-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-text p {
    max-width: 500px;
    margin: 15px auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}

.contact-text .btn {
    margin-top: 10px;
}

.contact-text h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

/* Floating WhatsApp */
.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:2rem;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,.3);
    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.1);}
    100%{transform:scale(1);}
}

/* BACKGROUND SECTION */
.reviews {
    padding: 6rem 8%;
    text-align: center;
    background: linear-gradient(135deg, var(--main-color), #1a1a1a);
    color: #fff;
}

/* HEADING */
.heading span {
    color: var(--main-color);
    letter-spacing: 2px;
}

.heading h2 {
    font-size: 2.8rem;
    margin: 10px 0;
}

/* CAROUSEL */
.carousel {
    overflow: hidden;
    max-width: 900px;
    margin: 3rem auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.9s ease;
}

/* GLASS CARD */
.review-card.glass {
    min-width: 100%;
    padding: 2.5rem;
    margin: 0 10px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);

    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);

    border-radius: 20px;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5),
        inset 0 0 20px rgba(255,255,255,0.05);

    transform: perspective(1000px) rotateY(0deg);
    transition: 0.6s ease;
}

/* 3D HOVER EFFECT */
.review-card.glass:hover {
    transform: perspective(1000px) rotateY(8deg) translateY(-10px);
    box-shadow:
        0 20px 60px var(--main-color),
        inset 0 0 25px var(--main-color);
}

/* IMAGE */
.review-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid #466d1d;
    object-fit: cover;
    margin-bottom: 15px;
}

/* STARS */
.stars {
    color: gold;
    margin-bottom: 10px;
}

/* TEXT */
.review-card p {
    font-style: italic;
    color: #ddd;
    line-height: 1.6;
}

/* VERIFIED BADGE */
.customer-name {
    margin-top: 12px;
}

.verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #4db8ff;
    background: rgba(77,184,255,0.12);
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid rgba(77,184,255,0.3);
}

/* Footer */

.footer {
         background: var(--bg-color);
         color: var(--text-color);
         border-top-left-radius: 2rem;
            border-top-right-radius: 2rem;
            margin-top: 2rem;
}

.footer .container {
    display: flex;
   justify-content: space-between;
    gap: 1rem;
}

.footer-container .footer-box {
    display: flex;
    flex-direction: column;
}

.footer-container .logo {
    margin-bottom: 1rem;
}

.footer-container .logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}

.sci {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;

}

.footer-box h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: .5rem;
}

.footer-box a,
.footer-box p {
    color: var(--other-color);
    margin-bottom: 5px;
}

.footer-box a:hover,
.footer-box p:hover {
    color: var(--main-color);
    transition: 0.3s ease;
    text-decoration: underline;
    cursor: pointer;
}

/* Copyright */
.copyright {
    text-align: center;
    padding: 15px 0;
    background: var(--text-color);
    color: var(--bg-color);
    font-size: 0.9rem;
}


/* small screen */

@media (max-width: 1000px) {
    .container {
        margin-left: 1rem;
        margin-right: 1rem;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .nav .navbar {
        display: none;
    }
    #menu-icon {
        display: block;
    }

    .home {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .home-text {
        padding: 0;
        max-width: 100%;
    }
    .home-image {
        margin-top: 2rem;
    }

    .about {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .about-text {
        padding: 1rem;
        max-width: 100%;
    }
    .about-image {
        margin-top: 2rem;
    }
    .services {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .service-box {
        margin-bottom: 2rem;
    }

    .contact {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .contact-image {
        margin-top: 2rem;
    }
    .contact-text {
        padding: 1rem;
        max-width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    .reviews {
        padding: 4rem 2rem;
    }
    .carousel {
        max-width: 100%;
    }
    .review-card {
        min-width: 100%;
    }

    

}


