/*
Theme Name: Victorien
Theme URI: https://idizbox.com
Author: iDizBox
Author URI: https://idizbox.com
Description: Thème Victorien - By iDizBox - 2025
Version: 1.00
Text Domain: idbxboostrap1
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

@font-face {
    font-family: 'Butler';
    src: url('fonts/Butler-Bold.eot');
    src: url('fonts/Butler-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/Butler-Bold.woff2') format('woff2'),
        url('fonts/Butler-Bold.woff') format('woff'),
        url('fonts/Butler-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --white: #FFFFFF;
    --text: #000000;
    --color-1 : #B66549;
    --color-bg : #FFFFFF;
}


html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

body {
    background-color: var(--color-bg);
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    position: relative;
    
}

.mobile_only {
    display: none;
}

:focus {
    outline: 0!important;
}

a, a:visited, a:focus {
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.mb_10 { margin-bottom: 10px; }
.mb_15 { margin-bottom: 15px; }
.mb_20 { margin-bottom: 20px; }
.mb_25 { margin-bottom: 25px; }
.mb_30 { margin-bottom: 30px; }
.mb_40 { margin-bottom: 40px; }
.mb_50 { margin-bottom: 50px; }
.mb_60 { margin-bottom: 60px; }
.mt_10 { margin-top: 10px; }
.mt_15 { margin-top: 15px; }
.mt_20 { margin-top: 20px; }
.mt_25 { margin-top: 25px; }
.mt_30 { margin-top: 30px; }
.mt_40 { margin-top: 40px; }
.mt_50 { margin-top: 50px; }
.mt_60 { margin-top: 60px; }

.pb_10 { padding-bottom: 10px; }
.pb_15 { padding-bottom: 15px; }
.pb_20 { padding-bottom: 20px; }
.pb_25 { padding-bottom: 25px; }
.pb_30 { padding-bottom: 30px; }
.pb_40 { padding-bottom: 40px; }
.pb_50 { padding-bottom: 50px; }
.pt_10 { padding-top: 10px; }
.pt_15 { padding-top: 15px; }
.pt_20 { padding-top: 20px; }
.pt_25 { padding-top: 25px; }
.pt_30 { padding-top: 30px; }
.pt_40 { padding-top: 40px; }
.pt_50 { padding-top: 50px; }

.pos_rel {
    position: relative;
}

h1, .h1 {
    font-size: 30px;
    font-weight: bold;
    font-family: 'Butler';
    line-height: normal;
    margin-bottom: 0;
}

h2, .h2 {
    font-size: 30px;
    font-weight: bold;
    font-family: 'Butler';
    line-height: normal;
    margin-bottom: 0;
}

.col_1 {
    color: var(--color-1);
}

.p_div p:last-of-type {
    margin-bottom: 0;
}

.btn, .btn:active, .btn:visited, .btn:focus {
    background-color: var(--color-1);
    color: var(--white);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 9px 30px;
    border-radius: 100px;
}

.btn:hover {
    background-color: #a74f31;
    color: #FFFFFF;
}

/************************************/
/************************************/
/*              OPE                 */
/************************************/
/************************************/

#main_container {
    cursor: grab;
}

#bg, #main_container {
    position: relative;
    width: fit-content;
}

/*
#bg {
    height: 100svh;
    position: relative;
    width: 100%;
    overflow: hidden;
}
*/

#bg img {
    height: 100svh;
/*    height: 100dvh;*/
    width: auto;
    pointer-events: none;
    user-select: none;
}

.hotspot {
    position: absolute;
    z-index: 1;
    user-select: none;
}

.hotspot img.glow {
        animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0% {
        filter: drop-shadow(0 0 0.05em rgba(0,0,0,0.6));
    }
  50% {
    filter: drop-shadow(0 0 0.3em rgba(0,0,0,0.8));
  }
  100% {
    filter: drop-shadow(0 0 0.05em rgba(0,0,0,0.6));
  }
}

#hotspot_3b.active, #hotspot_4b.active, #hotspot_11b.active, #hotspot_12b.active {
    animation: glowPulseHoverBig 1.5s ease-in-out infinite;
}

.hotspot img.glow:hover {
    animation: glowPulseHover 1.5s ease-in-out infinite;
}

@keyframes glowPulseHover {
  0% {
    filter: drop-shadow(0 0 0.2em rgba(0,0,0,0.8));
  }
  50% {
    filter: drop-shadow(0 0 0.8em rgba(0,0,0,1));
  }
  100% {
    filter: drop-shadow(0 0 0.2em rgba(0,0,0,0.8));
  }
}

@keyframes glowPulseHoverBig {
  0% {
        box-shadow: 1px 1px 10px 2px rgba(0, 0, 0, 0.8);
  }
  50% {
        box-shadow: 1px 1px 21px 2px rgba(0, 0, 0, 1);
  }
  100% {
        box-shadow: 1px 1px 10px 2px rgba(0, 0, 0, 0.75);
  }
}

#hotspot_3b {
    width: 13%;
    aspect-ratio: 4 / 5.1;
    rotate: 41deg;
    left: 46.5%;
    z-index: 101;
    top: 2%;
    z-index: 99;
}

#hotspot_3b {
    width: 12%;
    aspect-ratio: 4 / 5.1;
    rotate: 41deg;
    left: 45.5%;
    top: 2.9%;
    z-index: 99;
}

#hotspot_11b {
    width: 13.1%;
    aspect-ratio: 4 / 5;
    rotate: 10deg;
    right: 6.6%;
    z-index: 99;
    top: 42.5%;
}

#hotspot_12b {
    width: 12.5%;
    aspect-ratio: 4 / 5.3;
    rotate: 34deg;
    left: 56%;
    z-index: 99;
    top: 25.5%;
}

#hotspot_1 {
    bottom: 6.8%;
    left: 26.1%;
    width: 19.9%;
    z-index: 100;
}

#hotspot_2 {
    bottom: 6.2%;
    left: 6.1%;
    width: 18.5%;
    z-index: 100;
}

/*
#hotspot_3 {
    bottom: 6.2%;
    left: 6.1%;
    width: 18.5%;
    z-index: 100;
}

#hotspot_4 {
    bottom: 6.2%;
    left: 6.1%;
    width: 18.5%;
    z-index: 100;
}
*/

#hotspot_5 {
    top: 28.2%;
    left: 7.1%;
    width: 18.5%;
    z-index: 100;
}

#hotspot_6 {
    top: 24.2%;
    left: 30.3%;
    width: 19%;
    z-index: 100;
}

#hotspot_7 {
    top: 52.2%;
    left: 51.2%;
    width: 17.5%;
    z-index: 100;
}

#hotspot_8 {
    top: 9.2%;
    left: 21.1%;
    width: 16.5%;
    z-index: 100;
}

#hotspot_9 {
    bottom: 3.7%;
    right: 14.1%;
    width: 16.5%;
    z-index: 100;
}

#hotspot_10 {
    top: 4.5%;
    right: 8.1%;
    width: 16.9%;
    z-index: 100;
}

#hotspot_3_4_11_12 {
    top: 0;
    right: 0;
    width: 58.5%;
    z-index: 100;
    pointer-events: none;
}

#stylo {
    bottom: 0;
    left: 0;
    width: 24.5%;
    z-index: 100;
    pointer-events: none;
}

#bateau {
    top: 10%;
    right: 24.5%;
    width: 13.5%;
    z-index: 100;
    pointer-events: none;
}

#coquillage_1 {
    bottom: 33%;
    right: 30.1%;
    width: 5%;
    z-index: 100;
    pointer-events: none;
}

#coquillage_2 {
    top: 6%;
    left: 21%;
    width: 5%;
    z-index: 100;
    pointer-events: none;
}

#hotspot_3 {
    width: 14%;
    aspect-ratio: 4 / 5;
    rotate: 39deg;
    left: 46%;
    z-index: 101;
    top: 0;
}

#hotspot_11 {
    width: 13%;
    aspect-ratio: 4 / 5;
    rotate: 10deg;
    right: 6.5%;
    z-index: 102;
    top: 43%;
}

#hotspot_12 {
    width: 13%;
    aspect-ratio: 4 / 5.5;
    rotate: 34deg;
    left: 56%;
    z-index: 102;
    top: 25%;
}

#hotspot_4 {
    width: 13%;
    aspect-ratio: 4 / 5.2;
    rotate: 21deg;
    right: 18.3%;
    z-index: 101;
    top: 32%;
}

.hotspot a {
    display: block;
    width: 100%;
    height: 100%;
}

footer {
    position: absolute;
    bottom: 0;
    font-size: 8px;
    right: 30px;
}

.modal-backdrop {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;  /* Changé de 100% à 100vw */
    height: 100vh;  /* Changé de 100% à 100vh */
    z-index: 1040;
}

.modal {
    position: fixed !important;  /* Changé d'absolute à fixed */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;  /* Changé d'auto à 100vw */
/*    height: 100vh;*/
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1050;
    display: none;  /* Ajouté pour Bootstrap */
}

.modal.show {
    display: block !important;  /* Ajouté pour Bootstrap */
}

.modal-dialog {
/*    margin: 1.75rem auto;*/
    max-width: 500px;  /* Ajouté pour contrôler la largeur */
}

.modal-content {
    border: 0;
    border-radius: 0;
    background-image: url(img/paper_1.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.btn-close {
    position: absolute;
    right: 15px;
}

.modal_title {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
}

.modal_text {
    margin-bottom: 30px;
}

.modal_quote {
    text-align: center;
    font-style: italic;
}

.btn-close {
    position: absolute;
    right: 15px;
    width: 15px;
    height: 15px;
    background-size: 15px;
}

body.modal-open {
  overflow: hidden !important;
  padding-right: 0 !important;
}

.modal, .modal-backdrop {
  will-change: opacity, transform;
}

#intro {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease;
}

#intro.hide_me {
  opacity: 0;
}

#intro.done {
  visibility: hidden;
  pointer-events: none;
}

svg .svg-elem-1 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s;
}

svg.active .svg-elem-1 {
  fill: rgb(29, 29, 27);
}

svg .svg-elem-2 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s;
}

svg.active .svg-elem-2 {
  fill: rgb(29, 29, 27);
}

svg .svg-elem-3 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s;
}

svg.active .svg-elem-3 {
  fill: rgb(29, 29, 27);
}

svg .svg-elem-4 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6000000000000001s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6000000000000001s;
}

svg.active .svg-elem-4 {
  fill: rgb(29, 29, 27);
}

svg .svg-elem-5 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s;
}

svg.active .svg-elem-5 {
  fill: rgb(29, 29, 27);
}

svg .svg-elem-6 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}

svg.active .svg-elem-6 {
  fill: rgb(29, 29, 27);
}

svg .svg-elem-7 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9000000000000001s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9000000000000001s;
}

svg.active .svg-elem-7 {
  fill: rgb(29, 29, 27);
}

svg .svg-elem-8 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
}

svg.active .svg-elem-8 {
  fill: rgb(29, 29, 27);
}

svg .svg-elem-9 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}

svg.active .svg-elem-9 {
  fill: rgb(29, 29, 27);
}

svg .svg-elem-10 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
}

svg.active .svg-elem-10 {
  fill: rgb(29, 29, 27);
}

svg .svg-elem-11 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
}

svg.active .svg-elem-11 {
  fill: rgb(29, 29, 27);
}

svg .svg-elem-12 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s;
}

svg.active .svg-elem-12 {
  fill: rgb(29, 29, 27);
}

svg .svg-elem-13 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5000000000000002s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5000000000000002s;
}

svg.active .svg-elem-13 {
  fill: rgb(29, 29, 27);
}

svg .svg-elem-14 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
}

svg.active .svg-elem-14 {
  fill: rgb(29, 29, 27);
}

svg .svg-elem-15 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s;
}

svg.active .svg-elem-15 {
  fill: rgb(29, 29, 27);
}

#scroll {
    position: fixed;
    background-color: #000000;
    z-index: 200;
    right: 15px;
    top: 50%;
    transform: translate(0px, -50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    border: 2px solid #FFFFFF;
    animation: wiggle 1.5s infinite ease-in-out;
    opacity: 0;
    pointer-events: none;
    display: flex;
    transition: opacity 0.4s ease;
}

#scroll.light_me {
  opacity: 0.5;
}

#scroll.visible {
  opacity: 1;
}

@keyframes wiggle {
  0% { transform: translateX(0); }
  50% { transform: translateX(-8px); }
  100% { transform: translateX(0); }
}

/************************************/
/************************************/
/*          MEDIA QUERIES           */
/************************************/
/************************************/

@media (min-aspect-ratio: 16 / 9) {
    #bg img {
        width: 100vw;
        height: auto;
    }
    
    html, body {
        overflow-y: auto;
    }
}

@media (min-width: 1270px) and (max-width: 1350px) {

    
}

@media (min-width: 993px) and (max-width: 1269px) {
    
    
}

@media (max-width: 992px) {
    

    
}