body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('33burgherstreet.jpg');
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    overflow-x: hidden; /* Empêche le défilement horizontal */
}
  /* Popup majorité */
        #age-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            color: white;
            z-index: 1000;
        }
        #age-popup button {
            margin: 10px;
            padding: 10px 20px;
            font-size: 18px;
            cursor: pointer;
            border: none;
            border-radius: 8px;
            background-color: #ff0055;
            color: white;
        }
        #age-popup button:hover {
            background-color: #cc0044;
        }
        /* Modal porc policier */
        .modal {
            display: none;
            position: fixed;
            top: 20%;
            left: 50%;
            transform: translate(-50%, -20%);
            background-color: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 0 10px rgba(0,0,0,0.8);
            z-index: 2000;
        }
        .modal img {
            max-width: 100%;
            border-radius: 8px;
        }
.logo-container {
    text-align: center;
    margin-top: 10px;
}

.logo {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1em;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav li {
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em;
    max-width: 100%;
    box-sizing: border-box;
}

section {
    background-color: #f7f7f7;
    padding: 1em;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
    word-wrap: break-word;
    text-align: center;
}

button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9999;
}

.modal img {
    width: 90%;
    max-width: 600px;
    height: auto;
    margin: 20px auto;
    display: block;
}

.modal p {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
    header {
        padding: 0.5em;
    }

    nav ul {
        flex-direction: column;
        padding: 0;
    }

    nav li {
        margin-right: 0;
        margin-bottom: 10px;
    }

    main {
        padding: 1em;
    }

    section {
        margin-bottom: 10px;
    }

    h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.5em;
    }

    nav ul {
        flex-direction: column;
    }

    nav li {
        margin-right: 0;
    }

    button {
        font-size: 16px;
        padding: 8px 16px;
    }

    .modal img {
        width: 80%;
    }

    h1 {
        font-size: 24px;
    }
}
/* Styles du compteur */
.visit-counter{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(255,0,85,0.12), rgba(0,153,255,0.06));
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(2,6,23,0.45);
  color: #ffffff;
  backdrop-filter: blur(6px);
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* icône */
.visit-counter .vc-icon{
  font-size: 22px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg,#ff4d7e,#ff7ba6);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(255,77,126,0.18);
}

/* corps texte */
.visit-counter .vc-body{
  text-align: left;
  line-height: 1;
}

/* nombre */
.visit-counter .vc-number{
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.6px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

/* label */
.visit-counter .vc-label{
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}
