/* Font mariage */
body {
    font-family: 'Great Vibes', cursive;
    margin: 0;
    padding: 0;
}

/* Effet fondu entre les slides */
.carousel-item {
    transition: opacity 1s ease-in-out;
}

/* Amélioration du texte */
h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
}

.footer {
    font-size: 14px;
}

/* Taille fixe du carrousel pleine hauteur */
.carousel-container,
.carousel-inner,
.carousel-item,
.carousel-inner img {
    height: 100vh; /* 100% hauteur écran */
    width: 100%;
}

.carousel-inner img {
    object-fit: cover; /* Remplit tout sans déformer */
}

/* Overlay statique avec fond semi-transparent */
.overlay-static {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* haut / milieu / bas */
    background-color: rgba(0,0,0,0.3); /* noir transparent */
    color: white;
    z-index: 10;
    padding: 20px;
    box-sizing: border-box;
}

/* Logo en haut */
.overlay-top {
    display: flex;
    justify-content: center;
    /* padding-top: 100px; */
}
.logo {
    max-width: 150px;
    margin-top: 10px;
}

/* Texte au milieu */
.overlay-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-title {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* Bouton en bas */
.overlay-bottom {
    display: flex;
    justify-content: center;
}
.invitation-btn {
    font-size: 1.2rem;
    padding: 10px 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* Ajustements mobile */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    .logo {
        max-width: 100px;
    }
    .invitation-btn {
        font-size: 1rem;
        padding: 8px 20px;
    }
}
/* Navbar totalement transparente */
.transparent-navbar {
    background-color: transparent !important;
    box-shadow: none;
    border: none;
}

/* Les liens et le texte restent visibles sur les images */
.transparent-navbar .nav-link,
.transparent-navbar .navbar-brand {
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

/* Survol */
.transparent-navbar .nav-link:hover {
    color: #f8f9fa !important;
    text-decoration: underline;
}

/* Bouton d'invitation
.invitation-btn {
    background-color: #ff4081;
    border: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.invitation-btn:hover {
    background-color: #e91e63;
}