@import "bootstrap.min.css";

body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #fff;
    background-image: url('https://avignon-tourisme.com/app/uploads/avignon/2024/04/AT_07491_BD.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-title {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0 20px;
    width: 100%;
    z-index: 2;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }
}

.navbar {
    padding: 0.5rem 1rem;
    width: 100%;
    z-index: 3;
}

.navbar-nav {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.navbar-nav li a {
    color: #e2003b !important;
    font-size: 16px;
    transition: all 0.3s ease;
}

.navbar-nav li a:hover {
    background-color: #e2003b;
    color: #fff !important;
    box-shadow: 0 4px 5px rgba(226, 0, 59, 0.3);
    border-radius: 15px;
    padding: 0.5rem 1rem;
}

.navbar-brand img {
    max-width: 110px;
    height: auto;
}

@media (max-width: 576px) {
    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 576px) {
    .navbar-nav {
        flex-direction: row;
    }

    .nav-item {
        padding-left: 20px;
    }
}
