@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;
}

.aboutContainerDectop{
    margin-top: 100px;
    display: flex;
    justify-content: center;
    justify-items: space-between;

}
 
.aboutItems{
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    width: 90%;
    justify-content: space-around;
}

.aboutItems img{
    width: 380px;
    height: 260px;
    border-radius: 5px;
    box-shadow: var(--boxColor) 2px 3px 10px;
}

.aboutItems p{
    font-family: "Dancing Script", "Poppins", sans-serif;
    width: 380px;
    height: 260px;
    padding: 10px;
    font-size: 20px;
    border-radius: 5px;
    box-shadow: var(--boxColor) 2px 3px 10px;
}

.mobilaboutcontainer{
display: none;
}

.aboutItems p span a{
    color: var(--main-Color);
    text-decoration: none;

}

.aboutItems p span a:hover{
    color: var(--second-Color);
}
.aboutMobile{
    box-shadow: var(--boxColor) 3px 3px 10px;
    border-radius:5px;
    background: url("mobilemainpic.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 100px;
    width: 500px;
    min-height: 300px;
}

.aboutMobile p{
    padding: 20px;
    font-weight: 900;
    color: white;
    font-family: "Dancing Script", "Poppins", sans-serif;
    font-size: 21px;  
}

.aboutMobile p span a{
    text-decoration:none;
    color: rgb(255, 207, 65);
    font-weight: 1000;
}
.aboutMobile p span a:hover{
    color: rgb(224, 165, 4);
}
.sliderConatiner{
    margin-top: 100px;
}

.container .custom-container .custom-row .intro-section p span{
    margin: 10px;
}

.container .custom-container .custom-row .intro-section p span{
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #dbb434;
}

.slider-wrapper {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
}

.slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: var(--boxColor) 3px 3px 10px;
    border-radius: 0.5rem;
}

.slider img {
    flex: 0 0 auto; /* Ensure images don't shrink or stretch */
    width: 100%; /* Take the full width of the container */
    height: auto; /* Maintain aspect ratio */
    scroll-snap-align: start;
    object-fit: cover; /* Ensure images cover their container */
    border-radius: inherit; /* Apply border radius to the images */
}

/* Add fallback for Safari and older browsers */
@supports not (aspect-ratio: 16/9) {
    .slider {
        height: 270px; /* Fallback height for 16:9 ratio */
    }
    .slider img {
        height: 100%; /* Ensure images fill the fallback height */
    }
}



.slider-nav{
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.slider-nav a{
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.75;
    transition: opacity ease 250ms;
}

.slider-nav a:hover{
    opacity: 1;
}

.container{
    
    margin: 20px;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
}

.phone-number{
    color:white;
}

.intro-section{
    box-shadow:var(--boxColor) -1px 5px 10px ;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.intro-section img{
    width :80%;
    border-radius: 5px;
    box-shadow: rgb(105, 104, 104) 1px 1px 6px 1px;
}
.custom-row img{
    width: 200px;
    height: 200px;
    margin-top: 30px;
}

.form-section h1{
    font-family: "Dancing Script", "Poppins", sans-serif;
    text-transform: capitalize;
    font-weight: 1000;
    font-size: 25px;
}

    /* Container Styling */
    .custom-row {
        box-shadow:var(--boxColor) -1px 5px 10px ;
        display: flex;
        flex-wrap: wrap;
        margin-top: 100px;
        padding-top: 100px;
      background-color: #4c4b4b;
      color: #eaeaea;
      border-radius: 12px;
      padding: 25px;
      max-width: 850px;
      margin: auto;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }
    .custom-row {
        box-shadow:var(--boxColor) 1px 5px 10px ;
      display: flex;
      flex-wrap: wrap;
      border: 1px solid #555;
      border-radius: 12px;
    }

    /* Left Panel Styling */
    .intro-section {
      background-color: #333;
      color: #fff;
      padding: 40px;
      border-radius: 12px 12px;
      flex: 1;
    }
    .intro-heading {
      font-size: 2rem;
      font-weight: bold;
    }
    .intro-text {
      font-size: 1.1rem;
      font-weight: 300;
      text-transform:initial;
    }

    /* Right Panel (Form) Styling */
    .form-section {
        background-color: #4c4b4b;
      padding: 35px;
      border-radius: 12px 12px;
      flex: 1;
    }
    .form-title {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: #f0f0f0;
      text-transform: capitalize;
      font-size: 20px;
    }

    /* Form Controls */
    .form-label {
      font-weight: 600;
      color: #d1d1d1;
      text-transform: capitalize;
      font-size: 20px;
    }
    .custom-input,
    .custom-textarea {
      background-color: #444;
      border: 1px solid #666;
      color: #ffffff;
      border-radius: 8px;
      padding: 10px;
      width: 100%;
      margin-bottom: 15px;
      font-size: 1rem;
    }
    .custom-input::placeholder,
    .custom-textarea::placeholder {
      color: #bbb;
    }

    /* Button Styling */
    .submit-btn {
      background-color: rgb(188, 168, 14);
      color: #fff;
      border: none;
      padding: 12px 25px;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .submit-btn:hover {
      background-color: rgb(142, 126, 8);
    }

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);
}