/* 🌟 Styles généraux */
body {
    background: url('../images/wedding-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Georgia', serif!important;
    color: #4b5335!important;
}

.text-primary, h1, h2, h3, h4, h5, h6 {
    color: #4b5335!important;  /* Noir */

}

/* 🖼 Overlay pour améliorer la lisibilité */
.overlay {
   background: rgba(255, 255, 255, 0.85);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 📦 Conteneur principal */
.container {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 50px;
    color:#4b5335;
}

/* 💻 Styles spécifiques à l'administration */
.admin-page .overlay {
    display: block;
}

/* 📦 Conteneur de l'admin */
.admin-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: auto;
}

/* 🏢 Tableau admin */
.table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

/* 📂 Modale Bootstrap */
.modal-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-header {
    background: #4b5335;
    color: white;
    border-radius: 10px 10px 0 0;
}

.modal-body {
    text-align: center;
}

/* 🎨 Boutons */
.btn-primary {
    background: #4b5335;
    border: none;
}

.btn-primary:hover {
    background: #333b22;
}

.btn-danger {
    background: #a94442;
    border: none;
}

.btn-danger:hover {
    background: #922b21;
}

/* 🖼 Correction du problème des popins Bootstrap */
.modal {
    z-index: 1050;
}
.modal-backdrop {
    z-index: 1040;
}
