/* Barre de navigation */
:root {
    --green-color:#028090;
}
/*body {*/
/*    font-family: "Spinnaker", Sans-serif;*/
/*}*/

.p-1 {
    padding:0.1em;
}
.p-2 {
    padding:0.2em;
}
.p-3 {
    padding:0.3em;
}
.p-4 {
    padding:0.4em;
}
.p-5 {
    padding:0.5em;
}

.bg-lightgray {
    background-color: lightgray;
}

.bg-var-green {
    background-color: var(--green-color);
}

h1, h2, h3, h4, h5, h6 {
    color:var(--green-color);
    position: relative;
}

h2 {
    margin-bottom:1em;
}

h2:after {
    content:'';
    position: absolute;
    display: block;
    width: 25%;
    height: 3px;
    background-color:var(--green-color);
    top:100%;
    margin-top:0.25em;
    left:calc(calc(100% - 25%) / 2);
}

.text-center {
    text-align: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    /*background: #000;*/
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 200;
    position: fixed;
    width: 100%;
    /*background: linear-gradient(135deg, #000000 0%, #34495e 120%);*/
    background: #000000;
    user-select: none;
}

/* Logo */
.navbar .logo {
    margin-top:-1rem;
    margin-bottom:-3rem;
    font-size: 0;
    position: relative;
}

.navbar .logo:after {
    content:'';
    display: block;
    position: absolute;
    width:80px;
    height:80px;
    border-radius: 40px;
    background: #000;
    top:0;
    margin-top:0;
    z-index:0;
    margin-left:-2px;
}
.navbar .logo img{
    position: relative;
    z-index: 1;
    filter: invert(1);
    height: 80px;
    width:auto;
}

/* Menu Desktop */
.menu {
    display: flex;
    gap: 20px;
    margin-top: 0.8em;
}

.menu a {
    text-decoration: none;
    color:white;
    /*font-weight: bold;*/
    font-size: 1.2em;
}

.menu a:hover {
    opacity: 0.75;
}

/* Bouton Burger (Mobile) */
.burger {
    display: none;
    font-size: 3.5rem;
    cursor: pointer;
    line-height: 1em;
    color:white;
}

.m-0 {
    margin: 0 !important;
}

.body-wrapper {
    padding-top:1px;
    padding-bottom:1px;
}

.chalet-presentation {
    padding:0 25%;
    box-sizing: border-box;
    padding-top:1em;
}

/* Menu Mobile */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        /*background: rgba(0,0,0,0.5);*/
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 10px;
        margin-top:0;
        background: #000000;

    }

    .menu.show {
        display: flex;
        padding-top: 30px;
        /*background:#34495e;*/
    }

    .burger {
        display: block;
    }

    .chalet-presentation {
        padding:0 5%;
    }
}

/* Centralized copyright style for background images */
.copyrighted::after {
    position: absolute;
    bottom: 10px;
    right: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 3px 8px;
    border-radius: 4px;
    font-style: italic;
}
