@import url('britney.css');

/* Custom Bootstrap Colors */
:root {
    --bs-primary: #ff69b4;
    --bs-primary-hover: #ff1493;
    --bs-secondary: #ff9100;
    --bs-background : ;
    --bs-success: #1abc9c;
    --bs-info: #3498db;
    --bs-warning: #f1c40f;
    --bs-danger: #e74c3c;
    --bs-light: #ecf0f1;
    --bs-dark: #2c3e50;
}

body {
    background-image: url("../includes/img/bg-image.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Override Bootstrap classes with custom colors */
.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-secondary {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.btn-success {
    background-color: var(--bs-success);
    border-color: var(--bs-success);
}

.btn-info {
    background-color: var(--bs-info);
    border-color: var(--bs-info);
}

.btn-warning {
    background-color: var(--bs-warning);
    border-color: var(--bs-warning);
}

.btn-danger {
    background-color: var(--bs-danger);
    border-color: var(--bs-danger);
}

.btn-light {
    background-color: var(--bs-light);
    border-color: var(--bs-light);
}

.btn-dark {
    background-color: var(--bs-dark);
    border-color: var(--bs-dark);
}

/* .navbar-light .navbar-nav .nav-link {
     color: #f1c40f; Yellow
} */

h2 {
    font-family: 'Britney-Regular', sans-serif;
    font-size: 2.5rem;
    color: var(--bs-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.219); /* Adding shadow for better readability */
    /* -webkit-text-stroke: 1px black; Adding black outline */
    font-variation-settings: 300;
}

p {
    font-family: 'lora', Arial, sans-serif;
    font-size: 16px;
}

h3 {
    font-family: 'Georgia', serif;
    font-size: 24px;
}

h4 {
    font-family: 'Libre Baskerville', sans-serif;
    font-size: 20px;
    color: var(--bs-secondary);
}

.navbar-nav {
    display: flex;
    justify-content: center;
    gap: 30px; /* Adjust the gap value as needed */
    width: 85%;
}

#btn-carou a {
    background-color: var(--bs-secondary); 
    border-radius: 25px;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

#btn-carou a:hover {
    transform: scale(1.1);
    background-color: var(--bs-primary-hover);
}

#btn-atelier a {
    background-color: var(--bs-primary); /* Reversed color */
    border-radius: 25px;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

#btn-atelier a:hover {
    transform: scale(1.1);
    background-color: var(--bs-primary-hover); /* Reversed hover color */
}

.img-about {
    max-width: 80%;
}

.presentation .img-about {
    max-width: 100%;
    height: auto;
    max-height: 300px;
}

.presentation .col-md-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 44px;
}
.presentation .col-md-8 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.insta .card-img-top {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.insta .card {
    position: relative;
    overflow: hidden;
}

.insta .card:hover .card-img-top {
    filter: brightness(50%);
}

.insta .card:hover .zoom-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.overlay img {
    max-width: 90%;
    max-height: 90%;
    border: 5px solid #fff;
    border-radius: 10px;
}

.zoom-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, opacity 0.3s ease;
    opacity: 0;
}

.insta .card:hover .zoom-btn {
    opacity: 1;
}

.zoom-btn i {
    font-size: 2rem;
    color: #000;
}

.zoom-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

#btn-insta {
    margin-bottom: 50px;
}

#btn-insta a {
    background-color: var(--bs-primary);
    border-radius: 25px;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

#btn-insta a:hover {
    transform: scale(1.1);
    background-color: var(--bs-primary-hover);
}

#tarif-ep {
    margin-top: 35px;
}

.prix-p {
    margin-top: 54px;
}

.bijoux-text {
    padding-top: 34px;
}

.note h4 {
    margin-bottom: 19px;
}

@media (max-width: 768px) {

    body {
        background-image: url("../includes/img/bg-mobile.jpg");
        background-size: 100% 100%; /* Couvre toute la largeur et la hauteur */
        background-repeat: repeat;
        background-attachment: scroll; /* Fix pour iOS */
        background-position: center;
        width: 100vw;
        height: 100vh;
        margin: 0;
        padding: 0;
    }

    .presentation .col-md-4 {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .presentation {
        display: flex;
        flex-direction: column-reverse;
    }

    .services .col-md-4 {
        margin-bottom: 20px;
    }

    .prix-p {
        margin-top: 25px;
    }

    .note .col-md-4 {
        margin-bottom: 20px;
    }
}

