/* ====================================
   RESET + GLOBAL
==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0px;
    padding: 0px;
    font-family: 'Raleway', sans-serif; /* remplace Montserrat */
    background-color: #e6f2ff; /* Changed to light gray-blue */
}

/* ====================================
   INTRO (ANIMATION GSAP)
==================================== */
#intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #e6f2ff; /* Changed to light gray-blue */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
}
.logo {
    display: block;
    margin: 0 auto;
    width: 40%;
    z-index: 2;
    position: relative;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}
.logo span {
    font-size: 14px;
    letter-spacing: 2px;
    color: #000000;
}
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#site-content {
    display: none;
    opacity: 0;
    transition: opacity 2s ease-out;
}

/* ====================================
   NAVIGATION & HEADER
==================================== */
nav {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 3px solid #4a90e2; /* Changed to blue */
    background-color: #4a90e2; /* Changed to gray-blue */
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: #ffffff; /* Changed to white */
    -webkit-text-stroke: 2px #000;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 35px;
}
nav h2 {
    color: #751414;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 44px;
    display: flex;
    align-items: center;
    height: 10px;
}
nav .onglets {
    margin-top: 3px;
    margin-left: auto;
}
nav .onglets a {
    text-decoration: none;
    color: #ffffff;
    margin-right: 10px;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 5px;
}
nav .instagram {
    position: absolute;
    top: 17px;
    right: 10px;
    width: 35px;
    height: 35px;
    z-index: 999;
}
nav .tiktok {
    position: absolute;
    top: 15px;
    right: 50px;
    width: 38px;
    z-index: 999;
}

/* ====================================
   BURGER MENU
==================================== */
.hamburger {
    cursor: pointer;
    width: 20px;
    height: 15px;
    margin: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
    position: relative;
    top: 11px;
}
.bar {
    height: 2px;
    background-color: #ffffff; /* Changed to white */
    border-radius: 3px;
    transition: 0.3s;
}
.menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background-color: #4a90e2; /* Updated to match nav */
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    padding: 20px;
    z-index: 2000;
}
.menu.active {
    right: 0;
}
.menu ul {
    list-style: none;
    padding: 0;
}
.menu li {
    margin-bottom: 15px;
}
.menu a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

/* ====================================
   HEADER (IMAGE)
==================================== */
header.background {
    margin: 30px 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(227, 225, 212);
    overflow: hidden;
    height: auto;
}
.splash-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    padding: 0;
    border-radius: 10px;
}
@media screen and (max-width: 600px) {
    .splash-image {
        max-width: 100%;
    }
}

/* Desktop menu */
@media screen and (min-width: 601px) {
    .hamburger {
        display: none;
    }
    .menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        box-shadow: none;
        right: auto;
        padding: 0;
        display: flex;
        justify-content: center;
        flex: 1;
    }
    .menu ul {
        display: flex;
        flex-direction: row;
        margin: 0;
        padding: 0;
    }
    .menu li {
        margin: 0 15px;
    }
    .menu a {
        color: #ffffff;
        font-size: 16px;
    }
}

/* ====================================
   SECTION – CHOIX DE LA PRESTATION
==================================== */
h3 {
    top: 40px;
    position: relative;
    z-index: 1001;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 1.8rem;
    color: #381a1a;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 5px;
    text-transform: uppercase;
}
.reservation {
    background-color: rgb(227 225 212);
}
.prestations {
    max-width: 800px;
    margin: 90px auto;
    padding: 0 20px;
}
.prestation {
    margin-bottom: 20px;
}
.button-container {
    margin-bottom: 10px;
}
.button-prestations {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    background-color: #ffffff;
    border: 2px solid #4a90e2; /* Changed to blue */
    border-radius: 12px; /* More rounded for modern look */
    color: #4a90e2; /* Changed to blue */
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Added shadow for depth */
}
.button-prestations:hover {
    background-color: #4a90e2; /* Changed to blue */
    color: #ffffff; /* White text on hover */
    transform: translateY(-2px); /* Slight lift for modern effect */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.dot {
    color: #000000;
    font-size: 24px;
    margin-right: 10px;
}
.arrow {
    color: #000000;
    font-size: 20px;
    transition: transform 0.3s ease;
}
.sub-prestations {
    display: none;
    margin-top: 10px;
    padding-left: 15px;
    border-left: 3px solid #5f5f5f;
}
.sub-btn,
.sub-btn-link {
    display: block;
    width: 100%;
    padding: 15px;
    margin: 5px 0;
    text-align: left;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.6s;
    text-decoration: none;
    color: inherit;
    font-family: inherit;
    font-size: 13px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.sub-btn:hover,
.sub-btn-link:hover {
    background-color: #e6f2ff; /* Light blue */
    border-color: #4a90e2;
    transform: scale(1.05);
}

/* ====================================
   SECTION – RÈGLES DU SALON
==================================== */
.container {
    color: #000;
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background-color: rgb(227 225 212);
    border-radius: 10px;
}
.title {
    text-align: center;
    font-size: 32px;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 25px;
    border-bottom: 2px solid #000000;
    padding-bottom: 10px;
}
.content p {
    line-height: 1.6;
    margin: 15px 0;
}
.bold {
    font-weight: bold;
}
.red {
    color: #ff3c3c;
    font-weight: bold;
}
.divider {
    border-top: 2px solid #000000;
    margin: 25px 0;
}
.bottom {
    margin-top: 30px;
    font-style: italic;
}

/* ====================================
   SECTION – LOGIN
==================================== */
.login-container {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    margin: auto;
    text-align: center;
}
.login-container h2 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 20px;
    font-family: 'Luckiest Guy', cursive;
}
.login-container input {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
}
.login-container button {
    width: 100%;
    padding: 12px;
    background-color: #2e2e2e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.login-container button:hover {
    background-color: #a3a2a2;
}
@media screen and (max-width: 600px) {
    .login-container {
        padding: 20px 15px;
    }
    .login-container h2 {
        font-size: 1.5rem;
    }
    .login-container input,
    .login-container button {
        font-size: 15px;
        padding: 10px;
    }
}

/* ====================================
   FOOTER
==================================== */
footer {
    margin-top: 40px;
    background-color: rgb(227, 225, 212);
    padding: 30px 20px;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
footer h1 {
    font-family: 'Fredoka', sans-serif;
    color: rgb(227, 225, 212);
    -webkit-text-stroke: 2px #000;
    margin: 0;
    text-align: center;
}
.footer-note {
    font-family: 'Playfair Display', serif;
    border-bottom: 1px solid rgb(0, 0, 0);
    padding-bottom: 5px;
    margin: 0;
    color: #000;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

/* ====================================
   GOOGLE CALENDAR PAGE ADMIN
==================================== */
.calendar-container {
position: relative;
padding-top: 75%; /* ratio 4:3 */
height: 0;
overflow: hidden;
}

.calendar-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
