body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #2f2e2e;
  color: #333;
  overflow-x: hidden;
}

.navbar{
    padding: 10px;
    width: 100%;
    height: 12vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid gray;
    box-shadow: 2px 2px 10px rgb(84, 62, 40);
    /* background:rgb(224, 116, 39); */
}

.navbar nav{
    width: 100%;
    display: flex;
    justify-content:space-around;
    align-items: center;
}

.logo{
    width: 48px;
    /* height: 30px; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


.logo img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li{
    list-style: none;
    margin: 8px;
}

ul li a{

    text-decoration: none;
    color: wheat;
    font-family: Arial, Helvetica, sans-serif;
    font-size:90%;
    font-weight: bold;
}

ul li::after{
    content: '';
    position: relative;
    height: 3px;
    width: 0%;
    bottom: -4px;
    background: red;
    display: block;
    transition: 0.5s;
}

 ul li:hover::after{
    width: 100%;
}

ul li a:hover{
    color: orangered;
}

nav .fa{
    display: none;
}

.headerr{
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    animation-iteration-count:infinite;
    animation-play-state:running;
    animation-timing-function:ease-in-out; 
}

.header{
    position: relative;
}

/* responsive==================================================== */

@media(max-width:600px){
    .navbar nav{
        padding: 0px 25px 0px 70px;
        display: flex;
        justify-content: space-between;
    }

    .header{
        overflow: hidden;               
    }
    
    .nav-links ul li{
        display: block;
    }

    .nav-links ul li a{
        color:burlywood;
        font-weight: bold;
        font-family: Georgia, 'Times New Roman', Times, serif;
    }

    .nav-links{
        position: absolute;
        height: 80vh;
        width: 200px;
        top: 0%;
        right: -200px;
        text-align:left;
        z-index: 2;
        background-color:rgb(79, 79, 74);
        transition: 0.2s;
    }


    nav .fa{
        display: block;
        margin: 10px;
        color:rgb(223, 188, 138);
        font-size: 33px;
        font-weight: bolder;
        cursor: pointer;
    }
    nav .fa:hover{
        transform: scale(1.1);
        color: red;
    }

    .nav-links ul{
        padding: 32px;
        display: flex;
        flex-direction: column;
    }

    .nav-links ul li::after{
        content: '';
        position: relative;
        height: 3px;
        width: 0%;
        bottom: -4px;
        background: red;
        display: block;
        transition: 0.5s;
    }
    
    .nav-links ul li:hover::after{
        width: 100%;
    }
    
    .nav-links ul li a:hover{
        color: orangered;
    }

    .header .info{
        max-width: 62%;
        left: 5%;
        position: absolute;
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-direction: column;
    }

    .header .info p{
        font-size: medium;
    }
}



/* fillter------------------------------------------------------- */

.filter-section {
    color: burlywood;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  background: #2f2e2e;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
select {
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  color: burlywood;
  background-color:#2f2e2e;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}
.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding-bottom: 20px;
  overflow: hidden;
  transition: transform 0.3s;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.service-card h3 {
  margin: 15px 0 5px;
}
.service-card p {
  color: #666;
  padding: 0 15px;
}
.service-card span {
  color: #00b09b;
  font-weight: bold;
}
.btn-book {
  margin-top: 10px;
  background: #00b09b;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.btn-book:hover {
  background: #019684;
}
.features-section {
  background: #f1f1f1;
  padding: 50px 20px;
  text-align: center;
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.feature-box {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 260px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.gallery-section {
  padding: 40px 20px;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.gallery-img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

.footer {
  background: #eee;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* respomsive============================= */
@media (max-width:600px) {
    html,body{
        overflow-x: hidden;
    }
    /* .box */
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0 20px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p,
.footer-section ul {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li i {
    margin-right: 10px;
    color: #fff;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons li{
    list-style: none;
}

.social-icons a {
    color: #ccc;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}


/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    /* background-color: #25D366; */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-button img {
    width: 40px;
    height: 40px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}
