/* ------------------------------ */
/* BASE */
/* ------------------------------ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0014, #1a0033, #000428);
    background-size: 300% 300%;
    animation: bgMove 12s ease infinite;
    color: #fff;
    line-height: 1.6;
}

@keyframes bgMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

a {
    color: #ff004c;
    text-decoration: none;
}

a:hover {
    text-shadow: 0 0 8px #ff004c;
}

/* ------------------------------ */
/* HEADER */
/* ------------------------------ */

header {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1100px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-zone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-zone img {
    height: 55px;
    border-radius: 6px;
    box-shadow: 0 0 12px #ff004c;
}

.logo-main {
    font-size: 1.6em;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px #ff004c, 0 0 20px #7a00ff;
}

.logo-sub {
    font-size: 0.9em;
    opacity: 0.8;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 18px;
}

nav a {
    font-weight: 600;
    font-size: 0.95em;
    transition: 0.2s;
}

nav a:hover {
    color: #7a00ff;
    text-shadow: 0 0 10px #7a00ff;
}

/* ------------------------------ */
/* SECTIONS */
/* ------------------------------ */

.section-dark {
    padding: 70px 20px;
}

.section-inner {
    max-width: 1100px;
    margin: auto;
}

.section-title {
    font-size: 2.4em;
    margin-bottom: 10px;
    text-shadow: 0 0 12px #ff004c, 0 0 25px #7a00ff;
}

.section-intro {
    opacity: 0.9;
    margin-bottom: 30px;
}

/* ------------------------------ */
/* AMBIANCES */
/* ------------------------------ */

.ambiance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.ambiance-item {
    background: rgba(255, 255, 255, 0.06);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 76, 0.3);
    box-shadow: 0 0 12px rgba(255, 0, 76, 0.4),
                0 0 20px rgba(122, 0, 255, 0.3);
    transition: 0.3s;
}

.ambiance-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 18px rgba(255, 0, 76, 0.7),
                0 0 30px rgba(122, 0, 255, 0.6);
}

.ambiance-item h3 {
    color: #ff004c;
    margin-bottom: 8px;
    text-shadow: 0 0 10px #ff004c;
}

/* ------------------------------ */
/* BOUTON FACEBOOK */
/* ------------------------------ */

.btn-facebook {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 22px;
    background: linear-gradient(90deg, #1877f2, #7a00ff);
    border-radius: 6px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 0 12px #1877f2, 0 0 20px #7a00ff;
    transition: 0.3s;
}

.btn-facebook:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #1877f2, 0 0 35px #7a00ff;
}

/* ------------------------------ */
/* TARIFS */
/* ------------------------------ */

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tarif-item {
    background: rgba(255, 255, 255, 0.06);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff004c;
    box-shadow: 0 0 12px rgba(255, 0, 76, 0.4),
                0 0 20px rgba(122, 0, 255, 0.3);
}

.tarif-item h3 {
    color: #ff004c;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #ff004c;
}

.tarif-price {
    margin-top: 15px;
    font-size: 1.8em;
    font-weight: bold;
    text-shadow: 0 0 12px #7a00ff;
}

/* ------------------------------ */
/* AVIS */
/* ------------------------------ */

.avis-message {
    font-size: 1.4em;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 12px #ff004c, 0 0 20px #7a00ff;
}

/* ------------------------------ */
/* GALERIE */
/* ------------------------------ */

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.galerie-item {
    height: 180px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    text-shadow: 0 0 10px #7a00ff;
}

/* ------------------------------ */
/* FOOTER */
/* ------------------------------ */

footer {
    text-align: center;
    padding: 25px;
    opacity: 0.7;
    margin-top: 40px;
    font-size: 0.9em;
}
.galerie-item img {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

