@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

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

body {
    background-color: #f5f5f5;
    min-height: 100vh;
    padding: 20px;
   
}


.carousel-item {
    height: 500px;
}

.ban1 {
    width: 100%;
    height: 100%;
}

/* First Slide */
.first {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
}

.first img {
    position: absolute;
    top: 10px;
    right: 0;
    height: 650px;
    filter: drop-shadow(10px 10px 30px rgba(0, 0, 0, 0.3));
}

.first .content {
    max-width: 600px;
    color: #fff;
    z-index: 2;
}

.first h1 {
    font-family: "Michroma", sans-serif;
    font-weight: 700;
    font-size: 74px;
    line-height: 1.2;
}

.first .year {
    color: #ff4a57;
}

.first .shopNow {
    background: #ff4a57;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    transition: 0.3s ease;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.first .shopNow:hover {
    background: #e63e4d;
    transform: translateY(-3px);
}

.first a {
    text-decoration: none;
    color: #fff;
}

.first p {
    font-size: 22px;
    opacity: 0.9;
    margin-bottom: 20px;
    width: 80%;
}










/* Second Slide Container */
.second {
    background: linear-gradient(135deg, #f0f2f5, #e6e9f0);
    height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image Styling */
.second img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Link Styling */
.second a {
    display: inline-block;
    text-decoration: none;
}





/* Third Slide */
.third {
    background-color: #ddf9fc;
}

.product-image {
    position: relative;
}

.circle-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: #A3D8E6;
    border-radius: 50%;
    z-index: 1;
}

.product-image img {
    position: relative;
    z-index: 2;
    width: 80%;
    max-width: 400px;
}

.product-details {
    font-family: "Roboto", sans-serif;
}

.product-details h1 {
    font-size: 28px;
    font-weight: bold;
}

.product-details h2 {
    font-size: 18px;
    color: #666;
}

.price {
    font-size: 24px;
    font-weight: bold;
}

.fa-star {
    color: rgb(255, 255, 0);
}

.add-to-bag {
    background-color: #000;
    color: #fff;
}

.favourite {
    background-color: #fff;
    border: 1px solid #ccc;
}

.favourite:hover {
    background-color: #f0f0f0;
}

/* Carousel Indicators */
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #b3c7d6; /* Soft blue-gray */
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: #2c3e50; /* Midnight blue */
}