* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Box shadow added */
}



.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    color: black;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

.underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: black;
    width: 0;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-item:hover .underline {
    width: 100%;
}

.nav-item:hover .nav-link {
    color: peru;
}

.nav-item:hover~.underline {
    width: 0;
    left: 0;
}

/* brand */
.brands-section {
    padding: 20px;
    text-align: center;
}

.brands-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.brands-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.brand-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    transition: transform 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-10px);
}

.brand-card img {
    width: 100%;
    height: auto;
    display: block;
}

.brand-name {
    padding: 15px;
    font-size: 1.5em;
    color: #333;
    text-transform: uppercase;
}

/* Lavie En Rose */


.heading2 h2 {
    text-align: center;
    margin-top: 3%;
    padding-bottom: 3%;
}

.slider-container {
    position: relative;
    width: 90%;
    height: 50vh;
    overflow: hidden;
    margin: 0 auto;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.card2 {
    flex: 0 0 33.33%;
    max-width: 32%;
    padding: 10px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
    text-align: center;
    transition: transform 0.3s;
}

.card2:hover {
    transform: scale(1.05);
}

.card2 img {
    width: 100%;
    height: 50vh;
    border-radius: 8px 8px 0 0;
}



/* heading */
.heading h3 {
    text-align: center;
    margin-top: 2%;
    opacity: 0;
    transform: translateY(-50px);
    animation: fadeSlideIn 2s ease-out forwards;
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* shop */


.product-section {
    text-align: center;
    padding: 20px;
}

h2 {
    margin-bottom: 20px;
}



.category-indicator {
    margin-bottom: 20px;
}

.category-btn {
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    cursor: pointer;
}

.category-btn.active {
    background-color: #000;
    color: #fff;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
}




.product-card img {
    width: 100%;
}

.product-info {
    padding: 10px;
}

.product-info h3 {
    font-size: 20px;
}

.product-grid {


    gap: 10px;
}

.product-card {
    width: 24%;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    /* Smooth transitions */
}

.product-card:hover {
    transform: translateY(-10px);
    /* Slight lift on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    /* Darker shadow on hover */
}

.card {
    border: none;
    border-radius: 8px;
    /* Rounded corners */
    overflow: hidden;
    /* Ensures content stays within rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Shadow effect */
}

.card-img-top {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.card-img-top:hover {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

.card-body {
    padding: 15px;
    background-color: #fff;
    /* Background for content */
    text-align: left;
}

.card-title {
    font-size: 15px;
    margin: 10px 0;
    color: #555;
}

.card-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.card-title a:hover {
    color: #ff4081;
    /* Text color on hover */
}

.badge.bg-primary {
    background-color: #007bff;
    color: #fff;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 20px;
}

.btn.bold-btn {
    font-size: 15px;
    font-weight: bold;
    background-color: #ff4081;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    border: none;
    transition: background-color 0.3s;
}

.btn.bold-btn:hover {
    background-color: #e0006f;
    /* Slightly darker on hover */
}


/* screen */
.screen {
    background-image: url(Screenshot\ 2024-08-21\ 030147.png);
    height: 39vh;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-top: 5%;
}


/* bank */
.head h2 {
    text-align: center;
    margin-top: 2%;
}

.bank {
    background-image: url(Screenshot\ 2024-08-21\ 031614.png);
    height: 22vh;
    background-repeat: no-repeat;
    background-size: 100%;

}

/* insta */
.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3%;
}

a.photoLink {
    position: relative;
    overflow: hidden;
    margin: 10px;
    min-width: 220px;
    max-width: 310px;
    width: 100%;
    background: #000000;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    border-radius: .5rem;
}

div.item * {
    box-sizing: border-box;
    transition: all .2s ease-in-out;
    height: 100px;
    width: 100px;
}

div.item {
    vertical-align: top;
    height: 210px;
    width: 100%;
}

div.item i {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    font-size: 34px;
    color: #000000;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #ffffff;
    transform: translate(-50%, -50%) scale(0);
    transition: transform .5s 0 ease;
}

div.item a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
}

div.item:hover i {
    transform: translate(-50%, -50%) scale(1);
    transition: transform .3s .1s cubic-bezier(.37, 1.05, .5, 1.21);
}

div.color {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .3s ease;
}

div.color.instagram {
    background-color: #C13584;
    /* Instagram color */
}

div.color:hover {
    opacity: 1 !important;
}

#item1 {
    background: url("insta1.jpeg") center center no-repeat;
    background-size: cover;
}

#item2 {
    background: url("i2.jpeg") center center no-repeat;
    background-size: cover;
}

#item3 {
    background: url("i3.jpeg") center center no-repeat;
    background-size: cover;
}

#item4 {
    background: url("i4.jpeg") center center no-repeat;
    background-size: cover;
}

#item5 {
    background: url("i5.jpeg") center center no-repeat;
    background-size: cover;
}

.container {
    animation: 1.5s up;
}

@keyframes up {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    a.photoLink {
        max-width: 90%;
    }
}


/* celeb */
.gallery-container {
    text-align: center;
    margin-top: 4%;
  }

  .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-item {
    position: relative;
    margin: 15px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-in-out;
  }

  .gallery-item img {
    width: 100%;
    height: 50vh;
    transition: transform 0.3s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.1);
  }

  .caption {
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
  }

  .gallery-item:hover .caption {
    opacity: 1;
    transform: translateY(0);
  }

  .gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
  }

/* footer */


.footer {
    margin-top: 5%;
    background-color: #282828;
    color: #ddd;
    padding: 40px 0;
    font-size: 14px;
    transition: background-color 0.5s ease;
}

.footer:hover {
    background-color: #333;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1 1 20%;
    /* Responsive Flexbox */
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-heading::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

.footer-heading:hover::after {
    width: 100%;
}

.footer-section address {
    font-style: normal;
    line-height: 1.8;
    color: #ccc;
}

.footer-section address a {
    text-decoration: none;
    color: white;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #ddd;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
    padding-left: 10px;
}

.social-media {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.social-media a {
    width: 24px;
    height: 24px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-media a:hover {
    transform: scale(1.2);
}

.social-media img {
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-section {
        flex: 1 1 100%;
        min-width: 100%;
        margin-bottom: 20px;
    }

    .footer-heading {
        text-align: center;
    }

    .footer-section ul {
        text-align: center;
    }
}