/*  import google fonts */
@import url('https://fonts.googleapis.com/css?family=Darker Grotesque');




:root{
    --white: #fff;
    --blue: #2F4097;
    --dark-blue: #121227;
    --yellow: #ff9900;
    --milky-white: #dde7f1;
}




*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Darker Grotesque';
}
html{
    scroll-behavior: smooth;
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* all similar content styling codes */
section{
    padding: 100px 0;
}
.max-width{
    max-width: 1500px;
    padding: 0 80px;
    margin: auto;
}
.about, .services, .skills, .teams, .contact, footer{
    font-family: 'lato', sans-serif;
}
.about .about-content,
.services .serv-content,
.skills .skills-content,
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
section .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'lato', sans-serif;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: rgb(47, 64, 151);
    transform: translateX(-50%);
}
section .title::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: rgb(47, 64, 151);
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}

/* navbar styling */
.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 15px 0;
    background: #ffffff;
    font-family: 'Darker Grotesque';
    transition: all 0.3s ease;
}
.navbar.sticky{
    padding: 20px 0;
    background: rgb(255, 255, 255);
}
.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo img{
    color: #fff;
   
    font-weight: 600;
}
.navbar .logo a span{
    color: crimson;
    transition: all 0.3s ease;
}
.navbar.sticky .logo a span{
    color: #fff;
}
.navbar .menu li{
    list-style: none;
    display: inline-block;
}
.navbar .menu li a{
    display: block;
    color: #292929;
    font-size: 14px;
    padding: 0 10px;
    font-weight: 500;
    margin-left: 20px;
    transition: color 0.3s ease;
    font-family: 'Darker Grotesque';
 
}
.navbar .menu li a:hover{
    color: white;
    background-color: #D3AE00;
    padding: 15px;
    transition: 1s;
}
.navbar.sticky .menu li a:hover{
    color: #ffffff;
}





.dropdown {
    display: inline-block;
    position: relative;
    
  }
  .dropdown-options {
    display: none;
    position: absolute;
    overflow: auto;
    background-color: white;
    color: #2F4097;
    text-align: center;
    align-items: center;
    min-width: 100px;
    height: 120px;
    padding: 20px;
    line-height: 38px;  left: 30px;
    top: 25px;
    font-size: 12px;
    
  }
  
  .dropdown:hover .dropdown-options {
    display: block;
    padding: 3px;

  }

  .dropdown:hover .dropdown-options a{
    color: #D3AE00;
  }

  .dropdown:hover .dropdown-options a:hover {
   background-color: #D3AE00;
   transition: 3s;
   color: #ffffff;
   width: fit-content;
  padding: 3px;
  }



/* menu btn styling */
.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}
.scroll-up-btn{
    position: fixed;
    height: 45px;
    width: 42px;
    background: #D3AE00;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 20px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}
.scroll-up-btn:hover{
    filter: brightness(90%);
}




    h2{
    font-family: 'Darker Grotesque';
    }


    .foot-content {
    float: left;
    width: 50%;
    padding: 0 10px;
    }

    /* Remove extra left and right margins, due to padding */
    .foot {margin: 0 -5px;}

    /* Clear floats after the columns */
    .foot:after {
    content: "";
    display: table;
    clear: both;
    }
    .foot-content .card {
    padding: 50px;
    text-align: left;
    font-weight: bolder;
    line-height: 50px;
    }
    /* Responsive columns */
    @media screen and (max-width: 600px) {
    .foot-content {
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }
    }


    .add{
        width: 100%;
        background: #D3AE00;
        font-size: 20px;
        gap: 10px;
        text-align: center;
        position: relative;
        top: 75px;
        color: #ffffff;
        padding: 20px;
        display: grid;
        grid-template-columns: auto auto auto;
    }

    .tab {
    display: grid;
    grid-template-columns: auto auto auto;
    border: 1px solid #f9f9f9;
    background-color: #f9f9f9;
    text-align: center;
    gap: 100px;
    padding: 20px;
    }
    
    /* Style the buttons inside the tab */
    .tab button {
    background-color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 16px 64px;
    transition: 0.3s;
    font-size: 17px;
    }
    
    /* Change background color of buttons on hover */
    .tab button:hover {
    background-color: #ddd;
    }
    
    /* Create an active/current tablink class */
    .tab button.active {
    background-color: #D3AE00;
    color: #fff;
    }
    
    /* Style the tab content */
    .tabcontent {
        display: block;
        padding: 20px;
        border-top: none;
    }

    .tabcontent .hotel {
        display: grid;
        grid-template-columns: 350px 350px auto auto;
        gap: 20px;
        align-items: center;
    }

    .box {
        display: flex;
        align-items: center;
        gap: 10px;
        background: white;
        padding: 15px;
        border: 1px solid #efefef;
        border-radius: 8px;
    }

    .box input,
    .box select {
        
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    background-color: #fff;
  }
    

   .box input[type="text"]::-webkit-calendar-picker-indicator {
    display: none; /* Hide native icon */
  }

    .promo {
        color: #6e4d2b;
        cursor: pointer;
    }

    @media (max-width: 991px) {
        .max-width{
            padding: 0 50px;
        }
    }
    @media (max-width: 947px){
        .menu-btn{
            display: block;
            z-index: 999;
            color: #D3AE00;
        }
        .menu-btn i.active:before{
            content: "\f00d";
        }
        .navbar .menu{
            position: fixed;
            height: 100vh;
            width: 100%;
            left: -100%;
            top: 0;
            background: white;
            color: #2F4097;
            text-align: center;
            padding-top: 80px;
            transition: all 0.3s ease;
        }
        .navbar .menu.active{
            left: 0;
        }
        .navbar .menu li{
            display: block;
        }
        .navbar .menu li a{
            display: inline-block;
            margin: 20px 0;
            font-size: 15px;
            color: #2F4097;
        }
    }



    .cardo {
        width: 100%;
        margin: auto;
        background: white;
        border: 1px solid #ddd;
        height: auto;
      }
  
      .top-section {
        display: flex;
        padding: 20px;
      }
  
      .left-section {
        flex: 2;
        display: flex;
        gap: 20px;
      }
  
      .room-details {
        flex: 1;
      }
  
      .room-details h2 {
        font-size: 20px;
        margin: 0;
      }
  
      .price-per-night {
        font-size: 14px;
        color: #333;
        margin-top: 4px;
      }
  
      .room-description {
        font-size: 14px;
        color: #555;
        margin: 15px 0;
      }
  
      .icons {
        display: flex;
        gap: 20px;
        font-size: 14px;
        color: #333;
      }
  
      .icons div {
        display: flex;
        align-items: center;
        gap: 5px;
      }
  
      .room-image {
        width: 12vw;
        height: 18vh;
      }
  
      .room-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
      }
  
      .right-section {
        flex: 1;
        padding-left: 30px;
        border-left: 1px solid #eee;
      }
  
      .right-section h3 {
        font-size: 16px;
        margin: 0 0 20px;
      }
  
      .right-section p {
        font-size: 14px;
        margin: 10px 0;
        color: #333;
      }
  
      .bottom-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #eee;
        padding: 20px;
        flex-wrap: wrap;
      }
  
      .price-info {
        font-size: 20px;
        font-weight: bold;
      }
  
      .price-info span {
        font-size: 14px;
        font-weight: normal;
        margin-left: 10px;
        color: #666;
      }
  
      .action-group {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 10px;
      }
  
      .pay-later {
        color: green;
        font-size: 14px;
      }
  
      .book-button {
        background: #f4c900;
        color: #000;
        font-weight: bold;
        padding: 10px 20px;
        border: none;
        border-radius: 3px;
        cursor: pointer;
      }
  
      .book-button:hover {
        background: #e0b800;
      }
  
      @media (max-width: 768px) {
        .top-section {
          flex-direction: column;
        }
  
        .right-section {
          padding-left: 0;
          border-left: none;
          margin-top: 20px;
        }
  
        .bottom-section {
          flex-direction: column;
          align-items: flex-start;
          gap: 10px;
        }
      }



      .skincare-wrapper {
        display: flex;
        gap: 40px;
        font-family: 'Roboto', sans-serif;
      }
    
      .skincare-wrapper .left-panel {
        width: 240px;
        background: #caa800;
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
    
      .skincare-wrapper .left-panel button {
        background: #f8f8f8;
        border: none;
        padding: 12px 16px;
        font-size: 15px;
        text-align: left;
        cursor: pointer;
        font-weight: 500;
      }
    
      .skincare-wrapper .right-panel {
        flex: 1;
      }
    
      .skincare-wrapper .right-panel h2 {
        font-size: 22px;
        margin-bottom: 10px;
      }
    
      .skincare-wrapper .right-panel p {
        font-size: 14px;
        color: #444;
        margin-bottom: 30px;
        max-width: 500px;
      }
    
      .skincare-wrapper .service-card {
        margin-bottom: 40px;
        border: 1px solid #ddd;
        background: white;
      }
    
      .skincare-wrapper .service-image {
        height: 140px;
        background-size: cover;
        background-position: center;
        position: relative;
      }
    
      .skincare-wrapper .image-placeholder {
        background: repeating-conic-gradient(#ccc 0% 25%, transparent 0% 50%) 50% / 40px 40px;
      }
    
      .skincare-wrapper .service-image .title,
      .skincare-wrapper .service-image .price1,
      .skincare-wrapper .service-image .price {
        position: absolute;
        bottom: 10px;
        font-size: 14px;
        font-weight: bold;
        color: white;
      }
    
      .skincare-wrapper .service-image .title {
        left: 10px;
      }
    
      .skincare-wrapper .service-image .price {
        right: 10px;
      }

      .skincare-wrapper .service-image .price1 {
        left: 10px;
      }
    
      .skincare-wrapper .service-title-bar {
        padding: 12px 20px;
        display: flex;
        justify-content: space-between;
        background: #f5f5f5;
        font-size: 14px;
        font-weight: bold;
      }
    
      .skincare-wrapper .options {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 20px;
      }
    
      .skincare-wrapper .option {
        padding: 10px;
        text-align: center;
        border: 1px solid #ccc;
        background: white;
        font-weight: 500;
        cursor: pointer;
      }
    
      .skincare-wrapper .option.gray {
        background: #bbb;
        color: white;
      }
    
      .skincare-wrapper .book-button {
        background: #caa800;
        color: white;
        font-weight: bold;
        text-align: center;
        padding: 14px;
        font-size: 14px;
        cursor: pointer;
      }
    
      .skincare-wrapper .book-button:hover {
        background: #b79600;
      }


      @media (max-width: 991px) {
  .add {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
    font-size: 18px;
  }

  .tab {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .tab button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }

  .tabcontent .hotel {
    grid-template-columns: 1fr;
  }

  .cardo .top-section {
    flex-direction: column;
  }

  .room-image {
    width: 100%;
    height: 200px;
  }

  .right-section {
    padding-left: 0;
    border-left: none;
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .room-details h2 {
    font-size: 18px;
  }

  .room-description, .price-per-night, .icons {
    font-size: 13px;
  }

  .tab button {
    padding: 10px;
    font-size: 15px;
  }
}
