/* General Reset */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: 'Roboto', sans-serif;
   line-height: 1.6;
   color: #333;
   background-color: white;
}

/* Header Section */
header {
   background: linear-gradient(90deg, #cfad8a, #e67e22);
   padding: 10px 10px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   position: relative;
   border-bottom: 3px solid #e67e22;
}

.logo img {
   max-height: 40px;
}

.menu-toggle {
   display: none;
   background: none;
   border: none;
   cursor: pointer;
}

.menu-toggle img {
   width: 20px;
   height: 20px;
}

nav ul {
   list-style: none;
   display: flex;
   gap: 20px;
}

nav ul li {
   display: inline;
}

nav ul li a {
   text-decoration: none;
   font-weight: bold;
   color: #fff;
   transition: color 0.3s;
}

nav ul li a:hover {
   color: #fff;
}

.nav-links {
   display: flex;
}

.nav-links.show {
   display: flex;
   flex-direction: column;
   position: absolute;
   top: 100%;
   right: 0;
   background: rgba(221, 178, 128, 0.9);
   border-radius: 6px;
   width: auto;
   padding: 0;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
   z-index: 10;
   opacity: 1;
   pointer-events: auto;
   transform: translateY(0);
}

.nav-links li {
   margin: 1px;
}

.nav-links a {
   padding: 0px 10px;
   text-align: left;
   display: block;
}

.nav-links a:hover {
   color: brown;
}

.container{
   display: flex;
   justify-content: flex-start;
   margin: 50px;
   background-color: #ecd6c4;
   border-radius: 10px;
}

.descriptions{
   display:flex;
   flex-direction: column;
   width: 50rem;
   margin: 30px 50px 30px 50px;
}
.dor_type{
   display: inline-block;
   padding-left: 50px;
   font-weight: bolder;
}

.slide-wrapper{
   display: flex;
   height: 400px;
   width: 800px;

}

.images{
   margin: 20px 50px 20px 50px;
   display: flex;
   aspect-ratio: 16/9;
   overflow-x: auto;
   scroll-snap-type: x mandatory;
   scroll-behavior: smooth;
   border-radius: 20px;
   box-shadow: rgb(249, 247, 247) 0px 0px 60px 0px;
   
}
.images img{
   flex: 1 0 100%;
   scroll-snap-align: start;
   object-fit: cover;
 
}

.info{
   margin: 20px 50px 20px 50px;
   width: 700px;
}

.payment-details{
   position: relative;
   display: block;
   top: 160px;
   height: 100%;
}

.points{
   background-color: #968383;
   border-radius: 20px;
   padding : 30px;
   box-shadow: 10px 10px 10px #333;
}

.points:hover{
   transform: scale(1.1);
   transition: transform 0.3s ease-in-out;
}

.points ul{
   padding-left: 35px;
}

.rate{
   font-size: x-large;
   font-weight: bold;
   color: rgb(0, 0, 0);
}

.btn button{
   border:none;
   border-radius: 15px;
   padding: 10px;
   background-color: rgba(101, 39, 39, 0.607);
   color: #f3f3f3;
   cursor: pointer;
   box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
}
  
.btn button:hover{
   background-color: rgba(163, 90, 90, 0.626);
   transform: scale(1.1);
   font-weight: bold;
   transition: transform 0.3s ease-in-out;
}

footer {
   background: #343a40;
   color: #fff;
   text-align: center;
   padding: 28px; 
   font-size: 0.9rem;
   border-top: 3px solid #e67e22;
}

@media(max-width: 1225px){
   .container{
      display: flex;
      flex-direction: column;
      column-gap: 10px;
   }

   .descriptions{
      display:block;
      width: 100%;
      margin-left: 0px;
   }

   .slide-wrapper{
      display: block;
      width: 100%;
      height: 100%;
   }

   .info{
      display: block;
      width: 100%;
      margin: 0;
      padding-left: 20px;
      padding-right: 20px;
   }

   .payment-details{
      top: 0%;
   }
}

/* Responsive Design */
@media (max-width: 768px) {
   .menu-toggle {
       display: block;
   }

   .nav-links {
       display: none;
   }

   nav ul {
       flex-direction: column;
       gap: 10px;
   }

   .hero-content h2 {
       font-size: 2rem;
   }

   .hero-content p {
       font-size: 1rem;
   }

   .btn {
       padding: 8px 15px;
       font-size: 0.9rem;
   }

   .container{
      display: flex;
      flex-direction: column;
      column-gap: 10px;
   }

   .descriptions{
      display:block;
      width: 100%;
      margin-left: 0px;
   }

   .slide-wrapper{
      display: block;
      width: 100%;
      height: 100%;
   }

   .info{
      display: block;
      width: 100%;
      margin: 0;
      padding-left: 20px;
      padding-right: 20px;
   }

   .payment-details{
      top: 0%;
   }
   
}

@media (max-width: 480px) {
   .hero-content h2 {
       font-size: 1.8rem;
   }

   .hero-content p {
       font-size: 0.9rem;
   }

   .btn {
       padding: 6px 10px;
       font-size: 0.8rem;
   }

   .container{
      display: flex;
      flex-direction: column;
      column-gap: 10px;
   }

   .descriptions{
      display:block;
      width: 100%;
      margin-left: 0px;
   }

   .slide-wrapper{
      display: block;
      width: 100%;
      height: 100%;
   }

   .info{
      display: block;
      width: 100%;
      margin: 0;
      padding-left: 20px;
      padding-right: 20px;
   }
   
   .payment-details{
      top: 0%;
   }
   
}









/* * {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    border: border-box;
    padding: 0;
}

header {
    position: sticky;
    top: 0;
    z-index: 1;
    height: 10vh;
    background-color: white;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

/* header a{
    background-color: #df472c;
    margin-left: 15px;
} */
/* 
header .btn {

    /* display: inline-block; 
    background: #a20a0a;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 5px;
    height: 2vh;
    margin-left: 10px;
    width: 10vw;
} */
/*  
header h4 {
    margin: 10px;
}

header .logo {
    /* margin-left: auto; 
    margin-right: 10px;
    /* align-self: flex-end; 
    justify-self:flex-end;
}
 header.booking{
    margin: auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 80vw;
} 
 .hero{
    padding: 2rem;
    background-image: linear-gradient(white,#df652c);

 }
 .heroimg{
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    
 }
 .images{
    display: flex;
    aspect-ratio: 16/9;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
 }
 .hero img{
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
 }
 .images-nav{
    display: flex;
    column-gap: 1rem;
    left: 50%;
    bottom: 1.25rem;
    position: absolute;
    transform: translateX(-50%);
    z-index: 1;
 }
 .images-nav a{
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #fff;

 }
 .booking{
    background-color: #df652c;
    color: white;
 }
 .discription{
    height: 100vh;
    padding: 10px;
 }
 .discription a{
    display: flex;
    align-items: center;
 }
*/