:root {
  --color1: #ce7d5d;
  --color2: #a3543d;
  --color3: #d49a89;
  --color4: #f7d1da;
  --color5: #d6ddd8;
  --color6: #557571;
  --color7: #ddb8a6;
  --color8: #f8f6f5;
  
  --colorh2: 163, 84, 61;
  --colorh8: 248, 246, 245;
}

html {
  background-color: var(--color2);
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
/*   font-family: 'Montserrat Alternates', sans-serif; */
/*   font-family: 'Bodoni Moda', sans-serif; */
  
  font-size: 16px;
/*   font-weight: light; */
  background-color: var(--color8);
  color: #424242;
}

h1 {
  font-size: 4em;
  font-family:  'Great Vibes', sans-serif;
/*   font-family: 'Montserrat', sans-serif; */
}

h2, h3 {
  color: var(--color1);
/*   text-transform: uppercase; */
/*   font-family: 'Montserrat', sans-serif; */
/*   font-family: 'Montserrat Alternates', sans-serif; */
  
}

h2 {
  text-align: center;
  font-size: 42px;
  text-transform: uppercase;
  margin-top: 96px;
  margin-bottom: 32px;
}

@media screen and (max-device-width: 1024px) {
  h2 {
    font-size: 32px;
  }
}

p, h3 {
  max-width: 70vw;
  margin: 10px auto;
  padding: 10px;
}

p {
  line-height: 32px;
}

quote {
  display: block;
  border-left: 2px solid var(--color1);
  padding-left: 32px;
  color: var(--color1);
  font-size: 42px;
  font-style: italic;
  line-height: 1.5em;
}
/* 
button {
  background-color: white;
  border: none;
  padding: 8px;
  color: var(--color2);
  box-shadow: 0 0 3px rgba(var(--colorh2), 0.7);
  transition: all 100ms;
}

button:hover {
  box-shadow: 0 0 4px rgba(var(--colorh2), 1);  
}

button:active {
  box-shadow: 0 0 1px rgba(var(--colorh2), 0.9);  
}
 */


button, .button {
  position: relative;
  background-color: transparent;
  border: 1px solid var(--color2);
  padding: 12px;
  color: var(--color2);
/*   box-shadow: 15px -15px 0 var(--color4); */
  transition: all 100ms;
}

button:before, .button:before {
  content: ' ';
  width: 100%;
  height: 100%;
  background-color: var(--color3);
  position: absolute;
  top: -8px;
  left: 8px;
  z-index: -1;
  transition: all 300ms;
  opacity: 0.7;
}

button:hover:before, .button:hover:before {
/*   box-shadow: 0 0 0 var(--color4); */
  top: 0;
  left: 0; 
}

button:active:before, .button:active:before {
/*   box-shadow: 0 0 0 var(--color3); */
  opacity: 1;
}

/* custom section */

.big-image {
  height: calc(90vh - 120px);
  max-height: 800px;
  position: relative;
  display: flex;
  padding: 60px;
  background-color: var(--color2);
}

.big-image .content {
  position: absolute;
  
  flex: 1;
  
  display: block;
  background-color: rgb(var(--colorh8), 0.8);
  color: var(--color2);
  text-shadow: 0 0 black;
  flex-direction: column;
  justify-content: flex-end;
  
  bottom: 30px;
  z-index: 1;
  left: 30px;
  
  padding: 40px;

  width: 400px;
  max-width: calc(50vw);
  max-height: calc(90vh - 200px);
}

.big-image > .content h1 {
  font-family: serif;
  font-weight: 100;
}

.big-image > .content .date {
  font-size: 1.4em;
  letter-spacing: 0.4em;
}

.big-image .image {
  flex: 2;
  text-align: center;
  position: relative;
  background-color: #cfb487;
  background-image: url("https://cdn.glitch.global/727c51c9-8d00-411b-b239-bf0cec0e8611/MadhuriFranois-13-05-23270sur523%20(1).jpg?v=1688585258830");
/*   aspect-ratio: 2048/1357; */
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: center;
}

.big-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.big-image .button-center {
  position: absolute;
  bottom: 100px;
  left: calc(50% - 161px);
}

.big-image .button-center > * {
  cursor: pointer;
  background-color: rgba(255,255,255,.7);
}

.big-image .button-center a {
  text-decoration: none;
  font-size: 12px;
}

/* Header for mobile */
 @media screen and (max-device-width: 1024px) {
  .big-image {
    padding: 20px;
  }

  .big-image .content {
    padding: 20px;
  }

   .big-image > .content h1 {
    font-size: 2em;
  }

  .big-image:nth-child(2) .content h2 {
    font-size: 1.2em;
    margin: 0;
  }

  .big-image:nth-child(2) .content p {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.big-image:nth-child(1) {
  background-color: none; 
  padding: 0;
  height: 100vh;
  max-height: initial;
}


.big-image:nth-child(2) {
  background-color: var(--color8); 
}

.big-image:nth-child(2) .content {
  background-color: rgba(var(--colorh2), 0.95);
  color: var(--color8);
  left: initial;
  right: 30px;
  width: 500px;
  overflow-y: auto;
}

.big-image:nth-child(2) .content a,
.big-image:nth-child(2) .content a:hover,
.big-image:nth-child(2) .content a:visited {
  color: var(--color8);
}

.big-image:nth-child(2) .content h2 {
  color: var(--color8);
  font-size: 2em;
}

/* marquisat image */
.big-image:nth-child(2) > .image {
  background-image: url("https://cdn.glitch.global/727c51c9-8d00-411b-b239-bf0cec0e8611/MadhuriFranois-13-05-23143sur523.jpg?v=1688584557858");
/*   background-image: url("https://cdn.glitch.global/727c51c9-8d00-411b-b239-bf0cec0e8611/20220420_160013.jpeg?v=1657270905789"); */
}


/* photo mariage */
.big-image:nth-child(3) > .image {
  background-image: url("https://cdn.glitch.global/727c51c9-8d00-411b-b239-bf0cec0e8611/MadhuriFranois-13-05-23143sur523.jpg?v=1688584557858");
}

img.thankyou {
  display: block;
  width: calc(100% - 40px);
  margin: auto;  
}

/* Header for mobile */
@media screen and (max-device-width: 1024px) {
  width: calc(100% - 120px);
}


.big-image > .image.leave {
  background-image: url("https://cdn.glitch.global/727c51c9-8d00-411b-b239-bf0cec0e8611/MadhuriFranois09-06-202247sur68.jpg?v=1657792650377");
}


.big-image.login {
    height: calc(100vh - 120px);
}

.big-image.login > .image {
  display: flex;
  background-image: url("https://cdn.glitch.global/727c51c9-8d00-411b-b239-bf0cec0e8611/MadhuriFranois09-06-202233sur68.jpeg?v=1657796424691");
}

.big-image.login .content {
  position: initial;
  margin: 30px auto;
}

.big-image.login .content label {
  position: relative;
  display: flex;
  justify-content: space-around;
  margin: 8px 0;
}

.big-image.login .content label._code:before,
.big-image.login .content label._code:after {
  content: ' ';
  display: block;
  position: absolute;

  z-index: -1;
  width: 46px;
  height: 64px;

  background-color: var(--color2);
  border: 1px solid var(--color2);
  border-radius: 16px;
}

.big-image.login .content label._code {
  width: 288px;
  margin: 0 auto;
}
.big-image.login .content label._code:before {
  top: 2px;
  left: 12px;
  box-shadow: 64px 0 1px var(--color2);
}

.big-image.login .content label._code:after {
  top: 2px;
  right: 35px; /* 12px TODO adj*/
  box-shadow: -64px 0 1px var(--color2);
}

.big-image.login .content input[type=text] {
  font-size: 60px;
  width: 64px;
  text-align: center;
  color: var(--color8);
  border-radius: 8px;
  border: none;
  box-shadow: 0 0 1px 1px var(--color2);
  text-transform: uppercase;
  background-color: var(--color2);
  border: 1px solid var(--color2);
  border-radius: 16px;

}

@media screen and (max-device-width: 1024px) {
  .big-image.login {
    height: calc(100vh - 40px);
  }
  .big-image.login .content h1 {
    font-size: 32px;
  }

  .big-image.login .content input[type=text] {
    font-size: 32px;
    margin-top: 6px;
    padding: 0 18px;
  }

  .big-image.login .content label.code {
    width: 212px;
  }

  .big-image.login .content label.code:before,
  .big-image.login .content label.code:after {
    width: 32px;
    height: 42px;
    border-radius: 12px;
  }

  .big-image.login .content label.code:before {
    box-shadow: 45px 0 1px var(--color2);
  }

  .big-image.login .content label.code:after {
    box-shadow: -45px 0 1px var(--color2);
    right: 31px;
  }
}


.carousel {
  display: flex;
  overflow-x: auto;
}

@media screen and (min-device-width: 1280px) {
  .carousel {
    justify-content: space-evenly;
  }
}

.item {
  margin: 0 20px;
  width: 400px;
  flex-shrink: 0;
  overflow: hidden;  
}


.schedule {
  margin-top: 90px;
}

/* .schedule h2 {
  margin-left: 0;
  text-align: center;
  font-size: xxx-large;
  text-transform: uppercase;
}
 */
.schedule .item {
  display: flex;
  flex-direction: column;
  width: 264px;
  text-align: center;
  
}

.schedule .item > div:not(.number) {
  color: var(--color2);
  margin: 4px 0;
}

.schedule .item .image {
  position: relative;

  height: 500px;
  
  border-radius: 150px;

  overflow: hidden;
  background-size: cover;
  background-position-x: center;
  background-color: var(--color1);
}

.schedule .item .number .image:before {
  position: absolute;

  bottom: -10px;
  right: 0;
  
  color: var(--color8);
/*   content: "01"; */
  font-size: 6em;
}

.schedule .item .number {
  position: relative;
}

.schedule .item .number:before {
  position: absolute;
  bottom: -10px;
  right: 0;
  color: var(--color1);
/*   content: "01"; */
  font-size: 6em;
}

.schedule .item div.hour {
  letter-spacing: 0.4em;
  margin: 32px 0;
}


.schedule .item .number.n1 .image:before, .schedule .item .number.n1:before { content: "01"; }
.schedule .item .number.n2 .image:before, .schedule .item .number.n2:before { content: "02"; }
.schedule .item .number.n3 .image:before, .schedule .item .number.n3:before { content: "03"; }
.schedule .item .number.n4 .image:before, .schedule .item .number.n4:before { content: "04"; }


.schedule .item .number.n1 .image { background-image: url("https://cdn.glitch.global/727c51c9-8d00-411b-b239-bf0cec0e8611/MadhuriFranois09-06-202254sur68.jpg?v=1657792504422"); }
.schedule .item .number.n2 .image { background-image: url("https://cdn.glitch.global/727c51c9-8d00-411b-b239-bf0cec0e8611/prog-02.jpg?v=1657270476302"); }
.schedule .item .number.n3 .image { background-image: url("https://cdn.glitch.global/727c51c9-8d00-411b-b239-bf0cec0e8611/Screenshot_20220430-233506_2.jpg?v=1657271222106"); }
.schedule .item .number.n4 .image { background-image: url("https://cdn.glitch.global/727c51c9-8d00-411b-b239-bf0cec0e8611/MadhuriFranois-e-session-09-06-2227sur90.jpg?v=1657271371474"); background-position-x: -75px; }

.hosts {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 16px;

  /* to fix button:before hidden issue */
  position: relative;
  z-index: 1;
}

.host {
  flex: 1;
  min-width: 512px;
  overflow: hidden;
  
  border-radius: 4px;
  box-shadow: 0 0 0 1px var(--color5);
  
  line-height: 24px;
}

@media screen and (max-device-width: 512px) {
  .hosts {
    margin: 0 8px;
  }
  
  .host {
    min-width: calc(100vw - 66px);
  }
}

.host.selected {
  order: -1;
}

.host .card {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #cfb487;
  background-size: cover;
}

.host .card h3 {
  position: absolute;
  bottom: 4px;
  font-size: 24px;
  color: white;
  text-shadow: 0px 0px 2px black;
  margin-left: 20px;
}

.host .icons {
  display: flex;
  gap: 4px;
  padding: 4px;
}

.host .icon {
  position: relative;
  border: 1px solid var(--color7);
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
}

.host .icon .tooltip {
  display: none;
  position: absolute;
  border: 1px solid var(--color7);
  border-radius: 5px;
  padding: 5px;
  background-color: white;
  white-space: nowrap;
}

.host .icon:hover .tooltip { display: block; bottom: 50px; }

.host .icon svg {
  fill: var(--color2);
  width: 16px;
  height: 16px;
}

.host .icons form {
  flex: 1;
  display: flex;
  flex-direction: row-reverse;
}

.host .info {
  margin: 10px;
}

.host .rooms {
  display: flex;
  flex-direction: column;
}

.host .rooms .room {
  display: flex;
/*   border-bottom: 2px solid rgba(var(--colorh2), 0.5); */
  margin-bottom: 16px;
  padding: 12px;
}

.host .rooms .room .description {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 8px;
}

.host .rooms .room .description .name-and-price {
  display: flex;
  flex-direction: column;
}

.host .rooms .room .description .name-and-price h3 {
  margin: 0;
  padding: 0;
}


.split {
  display: flex;
  max-height: 90vh;
}

.split > * {
  flex: 1;
}


img.image {
  max-width: 100vw;
  margin: 10px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px 2px var(--color7);
}

img.icon-pp {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  vertical-align: bottom;
}

.box {
  display: flex;
/*   border: 1px solid var(--color7); */
  box-shadow: 0 0 5px var(--color7);
  border-radius: 10px;
  margin: 30px auto 60px;
  max-width: 70vw;
  height: 300px;
  overflow: hidden;
}

.box .image {
  flex: 1;
  background-size: cover;
  border: none;
}

.box .content {
  flex: 3;
  margin: 50px;
}

@media screen and (max-device-width: 1024px) {
  .box {
    flex-direction: column;
    height: 90vh;
  }

  .box .content {
    flex: 1;
  }
}


.transports {
  display: flex;
  flex-direction: row;

  max-width: 70vw;
  margin: 0 auto;
}

.transports p {
  flex: 1;
}

.transports .map {
  width: 500px;
  max-width: 70vw;
  height: 400px;
}

.transports .map iframe {
  border: none;
}

@media screen and (max-device-width: 1024px) {
  .transports {
    flex-direction: column;
  }
}


.our-history {
  display: flex;
  flex-direction: row;

  max-width: 70vw;
  margin: 32px auto;
}

.our-history .content {
  flex: 1;
}

.our-history .image {
  width: 500px;
  max-width: 70vw;
  background-image: url("https://cdn.glitch.global/727c51c9-8d00-411b-b239-bf0cec0e8611/MadhuriFranois-e-session-09-06-2261sur90.jpeg?v=1657791930647");
  background-size: cover;
  background-position: bottom;
}

@media screen and (max-device-width: 1024px) {
  .our-history {
    flex-direction: column;
  }
}


.center {
  text-align: center;
}

.camelia {
  background-image: url('https://cdn.glitch.global/727c51c9-8d00-411b-b239-bf0cec0e8611/MadhuriFranois-e-session-09-06-2261sur90.jpg?v=1657226538914');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}


.module-inside {
  /* This will make it stack on top of the ::before */
  position: relative;
}

.callout {
  border: 1px solid var(--color2);
  border-radius: 4px;
  margin: 16px auto;
  padding: 16px;
  max-width: 900px;
}

@media screen and (max-device-width: 1024px) {
  .callout {
    max-width: calc(100vw - 64px);
  }
}



/* style from notion annotations */
.bold { font-weight: bold; }
.italic { font-style: italic; }


/* photoswipe */
.pswp__img {
 object-fit: scale-down; 
}