@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Playwrite+AU+QLD:wght@100..400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

:root {

    --main-Color: #068980;
    --second-Color:#106d858e; 
    --boxColor:rgb(28, 28, 28);
}

/* Full-page loading screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* or any background color you want */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  /* Spinner animation */
  .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top: 5px solid #dbb434; /* Change color as desired */
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  /* Keyframes for spin animation */
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  #loading-screen {
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
  }
  
  #loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
  }

  
body{
    background:rgb(226, 219, 219);
    font-family: "Dancing Script", "Poppins", sans-serif;
}

html{
    scroll-behavior: smooth;
}


nav,
.nav-links{
    display:flex;
}

nav{
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(19, 18, 18, 0.5);
    backdrop-filter:blur(10px);
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    height: 50px;
}

#desktop-nav{
    box-shadow: var(--boxColor) 1px 2px 8px;
}

.nav-links{
    gap: 2rem;
    list-style: none;
    font-size: 1.2rem;
    font-weight: 900;
    font-family: "Dancing Script", "Poppins", sans-serif;
}

a{
    text-transform: capitalize;
    color: rgb(19, 19, 19);
    text-decoration: none;
    text-decoration-color: white;
    transition: all 0.2s ease-in-out;
}

.nav-links a{
color: rgb(219, 195, 14);
}

a:hover{
    color: rgb(241, 231, 150);
    text-decoration: underline;
    text-underline-offset:10px;
    text-decoration-color: rgb(241, 231, 150);
}

.logo{
    font-size: 2rem;
    color: rgb(219, 195, 14);
    text-transform: uppercase;
    font-family: "Dancing Script", "Poppins", sans-serif;
    font-weight: 700;
}

#hamburger-nav{
    display: none;
}

.hamburger-menu{
    position: relative;
    display: inline-block;
}

.hamburger-icon{
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
}

.hamburger-icon span{
    width: 100%;
    height: 2px;
    background-color:  rgb(219, 195, 14);
    transition: all 0.3 ease-in-out;
}

.menu-links{
    z-index: 1000;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 20px;
    background-color: argba(255, 255, 255, 0.1);
    box-shadow:var(--boxColor) -1px 5px 10px ;
    width: fit-content;
    background-color: rgba(19, 18, 18, 0.5);
    backdrop-filter:blur(10px);
    border-radius: 5px;
    max-height: 0;
    overflow: hidden;
    transition:all 0.3 ease-in-out;
}

.menu-links a{
    font-family: "Dancing Script", "Poppins", sans-serif;
    font-weight: 700;
    text-wrap: nowrap;
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 1.5rem;
    color: rgb(219, 195, 14);
    text-decoration: none;
    transition: all 0.3 ease-in-out;
}

.menu-links a:hover{
    color: rgb(240, 230, 154);
}

.menu-links li{
    list-style: none;
}

.menu-links.open{
    max-height: 300px;
    transition: max-height 0.4s ease-in-out;
}

.hamburger-icon.open span:first-child{
    transform: rotate(45deg) translate(10px, 5px);
}

.hamburger-icon.open span:nth-child(2){
    opacity: 0;
}
.hamburger-icon.open span:last-child{
    transform: rotate(-45deg) translate(10px, -5px);
}

.hamburger-icon span:first-child{
transform: none;
}

.hamburger-icon span:first-child{
   opacity: 1;
}

.hamburger-icon span:first-child{
    transform: none;
}

.menuContainer{
    margin-top: 90px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    width: 90%;

}
.menuContainer img{

    border-radius: 5px;
    margin: 30px 0 0 12%;
    box-shadow:var(--boxColor) -1px 5px 10px;
    transition: all 0.2s ease-in-out;
}

.menuContainer img:hover{
    box-shadow:var(--boxColor) -1px 5px 20px;
}

hr{
    margin-top: 20px;
    border:solid 1px rgb(188, 168, 14);
    color: var(--second-Color);
    box-shadow: var(--second-Color) 1px 1px 6px 1px;
}

.footer{
    background-color: var(--nav-Color);
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

.footer .texts p{
    text-transform: capitalize;
    color:var(--footer-text-color);
}

.footer .icons
{
    margin-top: 20px;
    display: flex;
    align-items: space-between;
    flex-direction: column;
}

.footer .icons .insta::after{
    position: absolute;
    bottom: 6px;
    content: 'instagram';
    color: var(--footer-text-color);
    text-transform: capitalize;
}

.footer .icons .trip::after{
    position:absolute;
    bottom:6px;
    content: 'tripadvisor';
    color: var(--footer-text-color);
    text-transform: capitalize;
}

.footer .icons .loc::after
{
    position: absolute;
    bottom: 6px;
    content: 'location';
    color: var(--footer-text-color);
    text-transform: capitalize;
}

.footer .icons .insta,
.footer .icons .trip,
.footer .icons .loc
{
    position: relative;
}

.footer .icons a img
{
    width:25px;
    height: 25px;
    border-radius: 50px;
    margin-top: 5px;
    margin-right: 5px;
}
.iconsOfSidebar a img{
    text-align: center;
    width:25px;
    height: 25px;
}

.iconsOfSidebar{
    display: flex;
    justify-content: space-between;

}

.footerNav{
    background-color: var(--nav-Color);
}
.footerNav ul
{
    display: flex;
    justify-content: space-evenly;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer .texts .maker a
{
    text-transform: uppercase;
    font-family: "Dancing Script", "Poppins", sans-serif;
    color: rgb(219, 195, 14);
}

.footer .texts .maker a:hover{
    color: rgb(236, 220, 98);
}

.footerNav ul li a{
    color: rgb(142, 126, 8);
    font-family: Arial, Helvetica, sans-serif;
    text-transform:capitalize;
    text-transform: uppercase;
    font-family: "Dancing Script", "Poppins", sans-serif;
}

.footerNav ul li a:hover
{
    color: rgb(236, 220, 98);
}

.footer .texts{
    margin-top: 40px;
}

.footer, .footerNav{
    background-color: rgb(71, 69, 69);
}
.copy-icon{
    font-size: 20px;
    pointer-events: none;
    color: rgb(219, 195, 14);
}

@media screen and (max-width: 978px){
    #desktop-nav{
        display: none;
    }
    #hamburger-nav{
        display: flex;
        box-shadow: var(--boxColor) 1px 2px 8px;
    }
    .nav-links{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    nav{
        position: fixed;
        top: 0;
    }

    .footerNav ul{
        flex-direction: column;
        align-items: center;
        padding-top: 10px;
    }
    
    .footerNav ul li{
        margin-top: 10px;
    }
}


@media (max-width:756px){
    .footer .icons .insta::after,
    .footer .icons .trip::after,
    .footer .icons .loc::after{
        display: none;
    }

    .hideOnMobile{
        display: none;
    }

    .footer .icons .insta::after,
    .footer .icons .trip::after,
    .footer .icons .loc::after{
        display: none;
    }
}    


