:root{
  --tan: #e9c194;
  --blue: #016fb9;
  --light-blue: #b4e1ff;
  --gray: #797d81;

  --melon-hex: #eeaeae;
  --melon-rgb: 238, 174, 174;
  --melon: rgba(var(--melon-rgb));
  --melon-15: rgba(var(--melon-rgb), .15);
  
  --wine-hex: #6d2e46;
  --wine-rgb: 109, 46, 70;
  --wine: rgba(var(--wine-rgb));
  --wine-75: rgba(var(--wine-rgb), .75);
  --wine-15: rgba(var(--wine-rgb), .15);

  --black-hex: #191919;
  --black-rgb: 25, 25, 25;
  --black: rgba(var(--black-rgb));
  --black-90: rgba(var(--black-rgb), .9);
  --black-50: rgba(var(--black-rgb), .5);

  --white-hex: #faebd7;
  --white-rgb: 250, 235, 215;
  --white: antiquewhite;
  --white-15: rgba(var(--white-rgb), .15);

  --rounded-td: 10px;
}

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

#backtotop {
  position: fixed;
  right: -4px;
  bottom: 5vh;
  z-index: 10;
  opacity: .6;
}

#backtotop svg {
  fill: currentColor;
  display: block;
  margin: 0px auto;
}

body {
  margin: 0;
  /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.carousel-indicators {
  margin-bottom: 0;
}

.carousel-item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.centered {
  width: fit-content;
  margin: 0px auto;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}

#events td, #events th {
  vertical-align: middle;
  font-size: small;
}

#events td:first-child, #events th:first-child {
  border-top-left-radius: var(--rounded-td);
  border-bottom-left-radius: var(--rounded-td);
  padding-left: 16px;
}

#events tbody td:last-child, #events th:last-child {
  border-top-right-radius: var(--rounded-td);
  border-bottom-right-radius: var(--rounded-td);
  padding-right: 16px;
}

.flag {
  height: 17px;
  width: 25.5px;
  display: inline-block;
  background-size: cover;
  background-position: center;
  transform: translateX(calc(-1.5rem * .5));
}

.flagsContainer {
  text-align: right;
  padding: calc(1.5rem * .5);
}

.focusedLink {
  color: currentColor;
  text-decoration: none;
}

footer {
  background-color: var(--black);
  color: var(--white);
  padding: 12px;
  text-align: right;
  position: relative;
  z-index: 1;
}

footer .row>*:nth-child(even) {
  text-align: left;
  border-left: 1px solid var(--white);
  height: max-content;
}

.foto {
  border-top-left-radius: calc(var(--rounded-td) * 4);
  border-bottom-right-radius: calc(var(--rounded-td) * 4);

  /* border: 4px solid var(--white); */
  outline: 4px solid var(--white);
  outline-offset: -24px;
}

h3 {
  margin: 16px 0px;
}

header {
  height: 100vh;
  height: 100dvh;
  background-image: url(./rc_images/foto4.jpg);
  background-position: 55% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--black);
  color: var(--white);
  width: 100%;
  overflow-x: hidden;

  /* box-shadow: 0 0 1rem .5rem var(--wine); */
  position: relative;
  z-index: 1;
}

header a, #offcanvasMenu a {
  text-decoration: none !important;
  color: inherit !important;
}

#home, .offcanvas.text-bg-dark {
  background-color: var(--black-50) !important;
  color: var(--white) !important;
}

#home {
  position: relative;
  border-radius: 4px;
  transform: translateY(20px);
  padding: 0px;
}

.homeContent {
  position: absolute;
  bottom: 20px;
  /* font-size: calc(10px + 3vmin); */
  font-size: xx-large;
  width: 100%;
  font-weight: 500;
  text-shadow: 
    2px 2px 5px var(--black), -2px -2px 5px var(--black),
    2px -2px 5px var(--black), -2px 2px 5px var(--black), 
    0 0 25px var(--light-blue);
  left: 50%;
  transform: translateX(-50%);
}

.homeContent a {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 4px;
  /* border-bottom: 2px solid var(--white); */
}

.homeContent a:hover {
  color: var(--light-blue) !important;
  /* border-color: var(--light-blue); */
}

.homeContent .row div:first-child, .homeContent .row div:last-child {
  position: relative;
  flex-grow: 1;
}

.homeContent .row div:first-child {
  text-align: right;
}

.homeContent .row div:nth-child(2) {
  width: auto;
}

.homeContent .row div:last-child {
  text-align: left;
}

.homeContent .row div:first-child::after, .homeContent .row div:last-child::before {
  content: '•';
  position: absolute;
}

.homeContent .row div:first-child::after {
  right: -6px;
}

.homeContent .row div:last-child::before {
  left: -6px;
}

.homeContent svg {
  filter: drop-shadow(2px 2px 2px var(--black-50)) 
    drop-shadow(-2px -2px 2px var(--black-50)) 
    drop-shadow(2px -2px 2px var(--black-50)) 
    drop-shadow(-2px 2px 2px var(--black-50)) 
    drop-shadow(0 0 25px var(--light-blue));
  margin-bottom: 12px;
}

.locationSVG {
  fill: currentColor;
  transform: translateY(-1px);
}

.logo {
  display: inline-block;
  font-weight: 500;
  padding: 4px 10px;
  width: fit-content;
  text-align: center;
}

.logo span {
  display: block;
}

.logo .name {
  font-size: xx-large !important;
  transform: translateY(6px);
  text-wrap: nowrap;
}

.logo .title {
  font-size: large !important;
  transform: translateY(-6px);
  text-wrap: nowrap;
}

.logo .title::after, .logo .title::before {
  content: '────────'; /* │ ┤ ╡ ╢ ╖ ╕ ╣ ║ ╗ ╝ ╜ ╛ ┐ └ ┴ ┬ ├ ─ ┼ ╞ ╟ ╚ ╔ ╩ ╦ ╠ ═ ╬ ╧ ╨ ╤ ╥ ╙ ╘ ╒ ╓ ╫ ╪ ┘ ┌ */
  position: relative;
}

.logo .title::after {
  right: 2px;
}

.logo .title::before {
  left: 2px;
}

main {
  text-align: left;  
  color: var(--white);
  position: relative;
}

main * {
  z-index: 1;
}

main a, .focusedLink span {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-underline-position: under;
}

main a:hover {
  text-shadow: 0px 0px 5px var(--white);
}

main>.container {
  padding-top: 30px;
  padding-bottom: 60px;
  min-height: 65vh;
}

main h3, .homeContent, .logo {
  font-family: 'Cinzel Decorative';
}

#mediaPlayer {
  display: block; 
  width: 100%;
  margin: 0px auto 3px auto;
  border-radius: var(--bs-border-radius);
}

.mediaBtn {
  margin-top: 24px;
  border: 2px solid var(--black) !important;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.mediaBtn:hover {
  border-color: var(--light-blue) !important;
}

.mediaBtn svg {
  max-width: 68px;
  max-height: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#menuToggler {
  padding: 6px;
  transform: translate(calc(1.5rem * .25), calc(1.5rem * .5));
  position: relative;
  z-index: 1;
  line-height: 1;
  border-radius: 6px;
}

#menuToggler span {
  display: inline-block;
  height: 1.5em;
  width: 1.5em;
  background-image: url('data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 30 30\'%3e%3cpath stroke=\'rgba%28255, 255, 255, 0.55%29\' stroke-linecap=\'round\' stroke-miterlimit=\'10\' stroke-width=\'2\' d=\'M4 7h22M4 15h22M4 23h22\'/%3e%3c/svg%3e');
}

#menuToggler[aria-expanded="true"] span {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgba%28255, 255, 255, 0.55%29'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

.navbar-nav {
  width: 100%;
}

.navbar-horizontal a.dropdown-item-text:hover {
  color: var(--light-blue) !important;
}

.navbar-horizontal a.nav-link {
  padding: 4px 12px;
  border-radius: 6px;
}

.navbar-horizontal a.nav-link:hover {
  background-color: var(--white-15);
}

.navbar-horizontal .nav-item {
  flex-grow: 1;
}

.navbar-horizontal .collapse {
  border-top: 1px solid var(--white-15);
  padding-top: 8px;
}

.navbar .dropdown-menu {
  color: inherit;
}

.navbar-horizontal .dropdown-menu {
  background-color: var(--black-50);
  transform: translate(0px, 5px);
  width: max-content;
}

.navbar:not(.navbar-horizontal) {
  font-size: larger;
}

.navbar:not(.navbar-horizontal) .dropdown-menu {
  text-align: center;
  border-color: var(--white-15);
}

#offcanvasMenu {
  height: 82vh;
  height: 82dvh;
  border-top: 1px solid var(--white-15);
}

p {
  text-align: justify;
  margin-bottom: 24px;
}

#pricing td {
  text-align: center;
  vertical-align: middle;
}

#pricing tfoot {
  font-size: small;
}

.spinner-border {
  display: block;
  margin: 0px auto;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
  background-color: var(--white-15) !important;
  /*changed from --melon-15*/
}

td, th {
  background-color: transparent !important;
  color: inherit !important;
  border-color: var(--white);
}

.time {
  display: block;
  font-size: small;
}

.tulipBG {
  /* background-image: url(./rc_images/tulip.svg); */
  background-image: url(./rc_images/Flying-butterflies.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: auto 100%;
}

@keyframes move-twink-back {
  from {
    mask-position: 0 0;
    -webkit-mask-position: 0 0;
  }
  to {
    mask-position: -10000px 5000px;
    -webkit-mask-position: -10000px 5000px;
  }
}

@keyframes move-clouds-back {
  from {background-position: 0 0;}
  to {background-position: 10000px 0;}
}

@keyframes animate-clouds {
  0% {
    background-position: 0px;
  }
  100% {
    background-position: 5440px;
  }
}

.stars, .twinkling, .clouds {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.stars {
  background: transparent url(./rc_images/stars.png) repeat top center;
}

.twinkling {
  animation: move-twink-back 200s linear infinite;
  
  -webkit-mask: url(data:image/svg+xml;base64,PCEtLSBzYW1wbGUgcmVjdGFuZ2xlIC0tPgo8c3ZnIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogICAgPGRlZnM+CiAgICAgICAgPGZpbHRlciBpZD0iZjEiPgogICAgICAgICAgICA8ZmVHYXVzc2lhbkJsdXIgaW49IlNvdXJjZUdyYXBoaWMiIHN0ZERldmlhdGlvbj0iMyIgLz4KICAgICAgICA8L2ZpbHRlcj4KICAgIDwvZGVmcz4KICAgIDxtYXNrIGlkPSJzdmdtYXNrMSI+CiAgICAgICAgPHJlY3Qgd2lkdGg9IjEwMCIgaGVpZ2h0PSIxMDAiIGZpbGw9ImJsYWNrIi8+CiAgICAgICAgPGNpcmNsZSBjeD0iMzAiIGN5PSI0NSIgcj0iMjAiIGZpbGw9IndoaXRlIiBmaWx0ZXI9InVybCgjZjEpIi8+CiAgICAgICAgPGNpcmNsZSBjeD0iNzAiIGN5PSIzMCIgcj0iMjAiIGZpbGw9IndoaXRlIiBmaWx0ZXI9InVybCgjZjEpIi8+CiAgICAgICAgPGNpcmNsZSBjeD0iNjUiIGN5PSI3MCIgcj0iMTYiIGZpbGw9IndoaXRlIiBmaWx0ZXI9InVybCgjZjEpIi8+CiAgICA8L21hc2s+CiAgICA8cmVjdCB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgZmlsbD0iYmxhY2siIG1hc2s9InVybCgjc3ZnbWFzazEpIi8+Cjwvc3ZnPg==) repeat top center;
  mask: url(data:image/svg+xml;base64,PCEtLSBzYW1wbGUgcmVjdGFuZ2xlIC0tPgo8c3ZnIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogICAgPGRlZnM+CiAgICAgICAgPGZpbHRlciBpZD0iZjEiPgogICAgICAgICAgICA8ZmVHYXVzc2lhbkJsdXIgaW49IlNvdXJjZUdyYXBoaWMiIHN0ZERldmlhdGlvbj0iMyIgLz4KICAgICAgICA8L2ZpbHRlcj4KICAgIDwvZGVmcz4KICAgIDxtYXNrIGlkPSJzdmdtYXNrMSI+CiAgICAgICAgPHJlY3Qgd2lkdGg9IjEwMCIgaGVpZ2h0PSIxMDAiIGZpbGw9ImJsYWNrIi8+CiAgICAgICAgPGNpcmNsZSBjeD0iMzAiIGN5PSI0NSIgcj0iMjAiIGZpbGw9IndoaXRlIiBmaWx0ZXI9InVybCgjZjEpIi8+CiAgICAgICAgPGNpcmNsZSBjeD0iNzAiIGN5PSIzMCIgcj0iMjAiIGZpbGw9IndoaXRlIiBmaWx0ZXI9InVybCgjZjEpIi8+CiAgICAgICAgPGNpcmNsZSBjeD0iNjUiIGN5PSI3MCIgcj0iMTYiIGZpbGw9IndoaXRlIiBmaWx0ZXI9InVybCgjZjEpIi8+CiAgICA8L21hc2s+CiAgICA8cmVjdCB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgZmlsbD0iYmxhY2siIG1hc2s9InVybCgjc3ZnbWFzazEpIi8+Cjwvc3ZnPg==) repeat top center; 
}

.twinkling, main {
  background: var(--tan);
  background: radial-gradient(circle, var(--tan) 25%, var(--melon) 100%);

  background: linear-gradient(0deg, rgba(255,173,172,1) 0%, rgba(254,158,161,1) 15%, rgba(240,132,155,1) 30%, rgba(161,95,156,1) 45%, rgba(113,83,145,1) 60%, rgba(56,62,123,1) 75%, rgba(54,60,120,1) 100%);

  background: rgba(32,35,70,1);
  background: linear-gradient(0deg, rgba(254,158,161,1) 0%, rgba(240,132,155,1) 5%, rgba(161,95,156,1) 15%, rgba(113,83,145,1) 25%, rgba(56,62,123,1) 60%, rgba(32,35,70,1) 100%);
}

.clouds {
  position: fixed;
  height: 100vh;
  height: 100dvh;
  background: transparent url(./rc_images/cloud.png) repeat-x;
  background-size: cover;
  opacity: .15;
  animation: animate-clouds 120s linear infinite;
  /* animation: move-clouds-back 200s linear infinite; */
}

@media screen and (max-width: 767px) {
  footer .row>*:nth-child(even):not(:last-child) {
    margin-bottom: 12px;
  }

  #home {
    transform: none;
  }

  .homeContent {
    font-size: x-large;
  }
  
  .homeContent .row div:first-child {
    text-align: center;
  }

  .homeContent .row div:nth-child(2) {
    text-align: right;
    width: 50%;
  }
  
  .homeContent .row div:first-child::after {
    content: none;
  }

  .tulipBG {
    background-image: url(./rc_images/Flying-butterflies-50.svg);
    background-size: 100% auto;
  }
}

@media screen and (max-width: 575px) {  
  .carousel-control-prev {
    left: 16px;
  }
  
  .carousel-control-next {
    right: 16px;
  }

  .flagsContainer {
    padding-top: 0;
    padding-bottom: 0;
  }

  #home {
    height: 18vh;
    height: 18dvh;
  }

  .homeContent .row div:nth-child(2) {
    text-align: center;
    width: 100%;
  }
  
  .homeContent .row div:last-child {
    text-align: center;
  }
  
  .homeContent .row div:last-child::before {
    content: none;
  }

  .logo {
    transform: translateX(calc(1.5rem * .25));
  }

  .navbar-horizontal {
    position: static;
  }

  .navbar-horizontal .collapse {
    border-top: none;
    padding-top: 0px;
  }

  .navbar .dropdown-menu {
    background-color: transparent;
    transform: none;
  }

  #pricing thead, #pricing tbody td:first-child {
    font-size: small;
  }
}

/* 
.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
*/