

:root {
  --white: #ffffff;
  --bg-primary: #000000;
  --grey: rgb(255, 255, 255, 0.1); /* or any shade you prefer */
}


*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-size: 22px;
}
body::-webkit-scrollbar {
  display: none;
}

body, html {
    background-color: var(--bg-primary);
    color: var(--white);
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroll-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    width: 100%
}

#Page{
    width: 100%;
}


.scroll-container > *{
    margin: 0.5rem;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1;
    width: 100%;
    height: fit-content;
    background-color: rgb(0,0,0, 0.45);
    padding: 0.25rem;
		/*border-bottom: 1px solid rgb(255,255,255);*/
    /*/box-shadow: 1px -4px 37px 19px rgba(255,255,255,0.05);
    -webkit-box-shadow: 1px -4px 37px 19px rgba(255,255,255,0.05);
    -moz-box-shadow: 1px -4px 37px 19px rgba(255,255,255,0.05);*/

    a > img {
	height: 3rem;
    }
}

.nav-list {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    width: 50%;
}
.nav-list > li, .nav-list > li > a {
    text-decoration: none;
    list-style: none;
    /*margin-inline: 1rem;*/
    transition: 0.5s;
    color: var(--white);
}

	    
.nav-list > a.active, .nav-list > li > a.active {
    text-decoration: underline;
    text-underline-offset: 4px; 
}
.nav-hover:hover {
    cursor: pointer;  
    transform: scale(0.86);
    transition: 0.5s;
}
	    
.nav-title{
    margin-inline: 0.5rem; 
    color: var(--white);
    list-style: none;
    text-decoration: none;
}

/* HAMBURGER BUTTON (hidden on PC) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-right: 1rem;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

    .hamburger {
        display: flex; /* show hamburger */
    }

    .nav-list {
        display: none; /* hide menu by default */
        flex-direction: column;
        position: absolute;
        top: 4rem;
        right: 0;
        background: rgba(0,0,0,0.85);
        width: 200px;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-list.show {
        display: flex; /* show when toggled */
    }
}



.first-section{
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 4rem);
    width: 100%;
    align-items: center;
    text-align: center;
    position: relative;
    .cursive{
	    height: 15rem;
	    /*width: 90%;	*/
	    margin: 0;
    }
    p, h1 {
      font-size: 16px;
      padding-inline: 2rem;
    }

}



.shadow {
    box-shadow: 1px -2px 26px 19px rgba(255,255,255,0.03);
    -webkit-box-shadow: 1px -2px 26px 19px rgba(255,255,255,0.03);
    -moz-box-shadow: 1px -2px 26px 19px rgba(255,255,255,0.03);
}


/*======================================================================
 *
 *
 *
 *
 * CARASOL CSS SECTION*/
/*
 *
 *
 *
 *
 *
 *=====================================================================
 */


body {
  min-height: 100dvh;
  min-width: 100dvw;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Satoshi", sans-serif;
  font-size: var(--lx-text-01);
  font-weight: 500;
  color: #ffffe6;
}

.carousel-container {
  width: 90%;
  margin: auto;
  position:relative;
  display: flex;
  flex-direction: column;
  gap: var(--lx-gap);

  .carousel {
    aspect-ratio: 16/9;
    width: 100%;
    position: relative;
    overflow: hidden;

    .item {
      opacity: 0;
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      display: none;
      transition: opacity 0.5s ease-in-out;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
	margin:0;
      }

      .caption {
        width: 100%;
        padding: var(--lx-space-01);
        position: absolute;
        bottom: 0;
        text-transform: uppercase;
        text-align: center;
        font-size: 12px;
        background-color: rgba(0, 0, 0, 0.5);
      }

      &.active {
        opacity: 1;
        display: block;
      }
    }
  }

  .btn {
    padding: 1em 0.75em;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    outline: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    color: #10100e;
    background-color: #ffffe6;
    transition: transform 0.2s ease-in-out;

    &:active,
    &:focus {
      transform: translateY(-50%) scale(0.9);
    }

    &:hover {
      transform: translateY(-50%) scale(0.96);
    }
  }

  .prev {
    border-radius: 0 1.5rem 1.5rem 0;
  }

  .next {
    border-radius: 1.5rem 0 0 1.5rem ;
    right: 0%;
  }
 
  .dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    .dot {
      cursor: pointer;
      height: 10px;
      width: 10px;
      background-color: #242421;
      transition: background-color 0.2s ease;

      &.active,
      &:hover {
        background-color: #ffffe6;
      }
    }
  }
}

main {
    box-shadow: 1px -2px 26px 19px rgba(255,255,255,0.03);
    -webkit-box-shadow: 1px -2px 26px 19px rgba(255,255,255,0.03);
    -moz-box-shadow: 1px -2px 26px 19px rgba(255,255,255,0.03);
}




strong{
    color: red;
}


.map-wrapper {
    margin: 2rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
}
