/* RESET */
*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins',sans-serif;
    background:#111111;
    color:white;
}

/* Navigation */
nav{
    display: flex;
    justify-content: space-between;
    align-items:center;
    padding:20px 8%;
    background: rgba(0, 0,0 ,.95 );
    backdrop-filter:blur(10px);
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    font-family:'Playfair Display',serif;
    font-size:32px;
    color: #d4af37;
    letter-spacing:3px;
    transition: 3s;
    cursor:pointer;
}

.logo:hover{
    color:#d4af37;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    color:white;
    text-decoration: none;
    font-weight:500;
    transition:3s;
}

.nav-links a:hover{
    color:#d4af37
}

#cart-count{
    background:#D4af37;
    color:black;
    padding:2px 8px;
    border-radius:50%;
    margin-left:5px;
    font-size:12 px;
}

.nav ul{
    gap:35px;
}

.navbar{
    box-shadow: 0 5px 20px rgba(0, 0, 0,.3);
}

.nav ul li a{
    position:relative;
    transition:3s;
}

.nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background: #d4af37;
    transition:3s;
}

.nav ul li a:hover{
    width:100%;
}

/* Hero */

.hero{
    height: 100vh;

    background:
    linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
    url("../images/Banner.jpg");

    background-size: cover;
    background-position: center;

    display:flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content{
    max-width: 800px;
}

.hero h1{
    font-family: 'Playfair Display', serif;
    font-size:70px;
    color:white;
    margin-bottom: 20px;
}

.hero p{
    font-size:22px;
    color:#ddd;
    line-height:1.8;
    margin-bottom: 40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.hero-tag{
    color:#d4af37;
    font-size: 14px;
    font-weight:bold;
    letter-spacing: 5px;
    text-transform: uppercase;
    display:block;
    margin-bottom:20px;
}

/* Buttons */

.btn{
    text-decoration: none;
    padding:15px 35px;
    border-radius: 40px;
    font-weight:bold;
    transition:2s;
}

.btn-primary{
    background:#d4af37;
    color:black;
}

.btn-primary:hover{
    background:white
}

.btn-secondary{
    border:2px solid #d4af37;
    color:#d4af37;
}

.btn-secondary:hover{
    background:#d4af37;
    color:black;
}

/* ABOUT */

.about{
    padding:100px 8%;
    background:#111;
}

.about-container{
    display:flex;
    align-items:center;
    gap:60px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:10px;
}

.about-content{
    flex:1;
}

.about-tag{
    color:#d4af37;
    font-size:14px;
    letter-spacing:4px;
    font-weight:bold;
}

.about h2{
    font-family:'Playfair Display', serif;
    color:white;
    font-size:50px;
    margin:20px 0;
}

.about p{
    color:#ccc;
    font-size:18px;
    line-height:1.8;
    margin-bottom:20px;
}


/* Services */

.services{
    padding:100px 8%;
    background:#000;
    text-align:center;
}

.section-title span{
    color:#d4af37;
    font-size:14px;
    letter-spacing:5px;
    font-weight:bold;
}

.section-title h2{
    color:white;
    font-family:'Playfair Display', serif;
    font-size:50ox;
    margin:20px 0;
}

.section-title p{
    color:#ccc;
    font-size:18px;
    max-width:700px;
    margin:auto;
    line-height:1.7;
}

.services-container{
    display:flex;
    justify-content: center;
    gap:30px;
    margin-top:60px;
    flex-wrap:wrap;
}

.service-card{
    background:#111;
    border:1px solid #333;
    padding:40px 30px;
    width:300;
    transition:4s;
}

.service-card h3{
    color:#d4af37;
    font-family: 'Playfair Display', serif;
    font-size:28px;
    margin-bottom:20px;
}

.service-card p{
    color:#ccc;
    line-height:1.7;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
}

/* ===============Featured Collections============== */

.featured{
    background:#111;
    padding:100px 8%;
}

.featured-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit,mimax(280px,1fr));
    gap:30px;
    margin-top:60px;
}

.featured-button{
    text-align:center;
    margin-top:50px;
}


/* ====================WHY CHOOSE US =====================*/

.why-choose{
    padding:100px 8%;
    background:#111;
}

.why-container{
    display:grid;
    grid-template-columns: repeat(auto-fit,mimax(250px,1fr));
    gap:30px;
    margin-top:60px;
}

.why-card{
    background:#1a1a1a;
    padding:40px 30px;
    text-align:center;
    border:1px solid #333;
    border-radius:10px;
    transition:3s;
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
}

.why-icon{
    font-size:45px;
    margin-bottom:20px;
}

.why-card h3{
    color:#d4af37;
    font-family:'Playfair Display', serif;
    margin-bottom:20px;
}

.why-card p{
    color:#ccc;
    line-height: 1.8;
}


/* ================ TESTIMONIALS =================*/

.testimonials{
    padding:100px 8%;
    background:#000;
}

.testimonial-container{
    display:grid;
    grid-template-columns: repeat(auto-fit,mimax(320px,1fr));
    gap:30px;
    margin-top:60px;
}

.testimonial-card{
    background:#111;
    border:1px solid #333;
    border-radius:12px;
    padding:35px;
    transition:3s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color:#D4af37;
}

.stars{
    color:#D4af37;
    font-size:20px;
    margin-bottom:20px;
}

.testimonial-text{
    color:#ddd;
    line-height:1.8;
    font-style:italic;
    margin-bottom:30px;
}

.client-info{
    display:flex;
    align-items:center;
    gap: 15px;
}

.client-info img{
    width:60px;
    height: 60px;
    border-radius: 50%;
    object-fit:cover;
}

.client-info h3{
    color:white;
    margin-bottom:5px;
}

.client-info span{
    color:#d4af37;
    font-size:14px;
}


/* ================== NEWSLETTER ==================== */

.newsletter{
    padding:100px 8%;
    background:linear-gradient(
        rgba(0,0,0,.8),
        rgba(0,0,0,.8)
    ),
    url("../images/download.jpg");
    background-size:cover;
    background-position: center;
    text-align:center;
}

.newsletter-content{
    max-width:700px;
    margin:auto;
}

.newsletter span{
    color:#d4af37;
    letter-spacing:5px;
    font-size: 14px;
    font-weight:bold;
}

.newsletter h2{
    color:white;
    font-family:'Playfair Display', serif;
    font-size:50px;
    margin:20 0;
}

.newsletter p{
    color:#ddd;
    line-height:1.8;
    margin-bottom:40px;
}

.newsletter-form{
    display:flex;
    justify-content: center;
    gap:15px;
    flex-wrap:wrap;
}

.newsletter-form input{
    width:350px;
    max-width:100%;
    padding:15px 20px;
    border:none;
    border-radius:40px;
    outline:none;
    font-size:16px;
}

.newsletter-form button{
    cursor:pointer;
}


/* =========FOOTER============*/

.footer{
    background:#0a0a0a;
    padding:80px 8% 20px;
}

.footer-container{
    display:grid;
    grid-template: repeat(auto-fit,mimax(220px,1fr));
    gap:40px;
}

.footer-column h2,
.footer-column h3{
    color:#D4af37;
    margin-bottom:20px;
    font-family:'Playfair Display', serif;
}

.footer-column p{
    color:#bbb;
    line-height:1.8;
}

.footer-column ul{
    list-style: none;
}

.footer-column ul li{
    margin-bottom: 12px;
}

.footer-column ul li a{
    color:#bbb;
    text-decoration: none;
    transition:3s;
}

.footer-column ul li a:hover{
    color:#d4af37;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid #333;
    margin-top:50px;
    padding-top:20px;
}

.footer-bottom p{
    color:#888;
}

.social-icons{
    margin-top: 20px;
}

.social-icons a{
    color:#bbb;
    text-decoration:none;
    margin-right: 15px;
    transition:1s;
}

.social-icons a:hover{
    color:#d4af37;
}


/* =========== Scroll Animation==============*/
.hidden{
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

/* ===========Back To Top =========== */

#backToTop{
    position:fixed;
    bottom:30px;
    right:30px;
    width:55px;
    height:55px;
    border:none;
    background:#D4af37;
    color:#000;
    font-size:24px;
    font-weight:bold;
    cursor:pointer;
    display:none;
    transition:3s;
    z-index:999;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
}

#backToTop:hover{
    background:#fff;
    transform:translateY(-5px);
}

/* ========== Shop ========= */

.shop-hero{
    padding:120px 8% 80px;
    background:#111;
    text-align:center;
}

.shop-hero h1{
    color:white;
    font-size:55px;
    font-family:'Playfair Display', serif;
}

.shop-hero p{
    color:#ccc;
    max-width:700px;
    margin:20px auto 0;
    line-height:1.8;
}

.shop-page{
    display:grid;
    grid-template-columns: 250px 1fr;
    gap:40px;
    padding:80px 8%;
    background:#000;
}

.shop-sidebar{
    background:#111;
    padding:30px;
    border-radius:10px;
}

.shop-sidebar h3{
    color:#d4af37;
    margin-bottom:20px;
}

.shop-sidebar ul{
    list-style:none;
}

.shop-sidebar li{
    color:#ccc;
    padding:15px 0;
    cursor:pointer;
    transition:3s;
}

.shop-sidebar li:hover{
    color:#d4af37;
}

.products-area{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(280px, 1fr));
    padding: 40px;
    gap:30px;
}

.product-info{
    padding:20px 0;
}

.product-card{
    background:black;
    padding: 20px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 50px 20px rgba(0,0,0,0.1);
    transition:0.3s;
}

.product-card:hover{
        transform:translateY(-10px);
}

.product-card img{
    width: 100%;
    height: 300px;
    object-fit:cover;
}

.product-card h3{
    margin-top: 20px 0 10px;
    margin-bottom:10px;
}

.price{
    font-size:20px;
    font-weight:bold;
    margin-bottom:20px;
    color:#d4af37;
}

.product-card .btn{
    display:inline-block;
    margin-top:10px;
}
/* ======== Product Details ====================*/
.product-details{
    display:flex;
    gap:50px;
    padding:60px;
    align-items:center;
}

.product-details img{
    width:400px;
    height:500px;
    object-fit:cover;
}

.product-details h1{
    font-size:40px;
}

.product-details button{
    padding:15px 30px;
    background:black;
    color:white;
    border:none;
    cursor:pointer;
}

/* ========== Cart ============*/
.cart-page{
    padding:80px 8%;
    background:#000;
}

.cart-page h1{
    text-align:center;
    font-size:45px;
    margin-bottom: 50px;
}

.cart-item{
    display:flex;
    gap:30px;
    background:#111;
    padding:20px;
    margin-bottom:20px;
    border-radius:15px;
}

.cart-item img{
    width:150px;
    height:150px;
    object-fit:cover;
}

.cart-item h3{
    color:#d4af37;
}

.cart-summary{
    margin-top:40px;
    text-align:center;
}

.cart-summary h2{
    margin-bottom:20px;
}

/* ======== Checkout ============ */

.checkout-page{
    display:grid;
    grid-template-columns:1fr 400px;
    gap:40px;
    padding:80px 8%;
    background:#000;
}

.checkout-form,
.order-summary{
    background:#111;
    padding:30px;
    border-radius:15px;
}

.checkout-form h2,
.order-summary h2{
    color:#d4af37;
    margin-bottom:25px;
}

.checkout-form input,
.checkout-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:none;
    border-radius:8px;
    font-size:16px;
}

.checkout-form textarea{
    height:120px;
    resize:none;
}

.checkout-item{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
    border-bottom:1px solid #333;
    padding-bottom:10px;
}

.order-summary h3{
    margin-top:30px;
    color:#d4af37;
}

/* ============ Order Success =============== */

.success-page{

    min-height:80vh;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#000;

    padding:50px;

}

.success-card{

    background:#111;

    padding:50px;

    border-radius:20px;

    text-align:center;

    width:600px;

    max-width:100%;

}

.success-icon{

    font-size:80px;

    margin-bottom:20px;

}

.success-card h1{

    color:#d4af37;

    margin-bottom:20px;

}

.success-card p{

    color:#ccc;

    margin-bottom:15px;

}

.success-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;

}

/* ============ Appointments===============*/

.booking{

    display:grid;

    grid-template-columns:1fr 1fr;

    min-height:100vh;

    background:#f7f7f7;

}

.booking-image{

    overflow:hidden;

}

.booking-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.booking-form-container{

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:60px;

    background:white;

}

.booking-form-container h1{

    font-size:40px;

    margin-bottom:10px;

}

.booking-form-container p{

    color:#666;

    margin-bottom:35px;

}

#bookingForm{

    display:grid;

    gap:18px;

}

#bookingForm input,
#bookingForm select,
#bookingForm textarea{

    padding:16px;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:16px;

}

#bookingForm textarea{

    resize:vertical;

}

@media(max-width:900px){

    .booking{

        grid-template-columns:1fr;

    }

    .booking-image{

        height:350px;

    }

    .booking-form-container{

        padding:30px;

    }

}


/*====== CONTACT ========== */
.contact{

    max-width:1100px;

    margin:60px auto;

    padding:20px;

}

.contact h1{

    text-align:center;

    margin-bottom:10px;

}

.contact p{

    text-align:center;

    color:#666;

    margin-bottom:40px;

}

.contact-info{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

    margin-bottom:40px;

}

.info-card{

    background:#111;

    color:#fff;

    padding:25px;

    border-radius:10px;

    text-align:center;

}

#contactForm{

    display:grid;

    gap:20px;

}

#contactForm input,
#contactForm textarea{

    padding:15px;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:16px;

}

#contactForm textarea{

    resize:vertical;

}


/* ============ REVIEWS ========== */

.reviews-page{

    max-width:700px;

    margin:60px auto;

    padding:20px;

}

.reviews-page h1{

    text-align:center;

    margin-bottom:10px;

}

.reviews-page p{

    text-align:center;

    color:#666;

    margin-bottom:30px;

}

#reviewForm{

    display:grid;

    gap:20px;

}

#reviewForm input,
#reviewForm select,
#reviewForm textarea{

    padding:15px;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:16px;

}


.customer-reviews{

    padding:80px 10%;

    background:#000;

    text-align:center;

}

.customer-reviews h2{
    color:#f8f8f8;
    background:#111;
    margin-bottom:40px;

}

#approvedReviews{

    background:#000;
    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

}

.review-card{

    background:#fff;

    padding:25px;

    border-radius:12px;

    box-shadow:0 5px 15px rgba(0,0,0,.1);

}

.review-card h3{

    margin-bottom:10px;

}

.review-card small{

    display:block;

    margin-top:15px;

    color:#777;

}









@media(max-width:768px){
    .about-container{
        flex-direction: column;
    }

    .about h2{
        font-size:35px;
    }

    .newsletter h2{
        font-size: 35px;
    }

    .newsletter-form{
        flex-direction:column;
        align-items:center;
    }

    .newsletter-form input{
        width:100%;
    }
}

