 *{
            margin:0;
            padding:0;
            box-sizing: border-box;
            font-family:'Times New Roman', Times, serif;
            text-decoration: wavy;


 }
 
        a{
            text-decoration: none;
        }
        footer a{
            text-decoration: none;
        }
        nav{
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border: 1px solid black;
            border-radius: 10px;
            margin:10px;
        }
        nav:hover{
            box-shadow: 0 0 5px rgb(107, 95, 95);
            border:none
        }
        .nav-item{
            display: flex;
            gap: 20px;
            font-size: 20px;

        }
        section{
            text-align: center;
        }
        li{
            list-style: none;
            height: 25px;
            text-align: center;
        }
        .book-now{
            padding:10px;
            border-radius: 10px;
            
        }
        .book-now:hover{
            background: linear-gradient(blue,rgb(26, 26, 199),rgb(212, 83, 83));
            color:white;
            transition: calc();
            transform: matrix();
        }
        ul a{
            color: white;
        }
        .footer-parent{
            display:flex;
            justify-content: space-around;
            margin-top:30px ;
            flex-wrap: wrap;
            gap:15px
        }
        footer{
            background-color: rgb(17, 17, 41);
            color:white;
            padding:10px;
        }
        .nav-link {
    font-size: 18px;
    margin-right: 10px;
}

.nav-link:hover {
    color: #0077ff !important;
}

.btn-primary {
    background-color: #0077ff;
    border: none;
    padding: 10px 18px;
    font-weight: 600;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #005fcc;
}
 .photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
  }

  .photo-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.3s ease;
  }

  .photo-card:hover img {
    opacity: 0.3;
  }

  .price-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    opacity: 0;
    transition: 0.3s ease;
    font-size: 20px;
    font-weight: bold;
  }

  .photo-card:hover .price-overlay {
    opacity: 1;
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.facilities-grid {
     display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.facility-card {
     background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 25px;
    padding: 30px 20px 20px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
}
.facility-card:hover{
    transform: translateY(-10px);
    box-shadow: #333 0 10px 20px;
}

.facility-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: inline-block;
    background: rgba(255,255,255,0.3);
    padding: 15px;
    border-radius: 50%;
}

.facility-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ff3c00;
}
.facility-card p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}
.food-name{
    height: 250px;
    width:250px;
    border-radius:250px
}
.whatsapp-float {
    position: fixed;
    bottom: 30px;     /* Distance from bottom */
    left: 20px;      /* Distance from right */
    z-index: 9999;    /* Always on top */
}

.whatsapp-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}
.food-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.food-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.food-section h1 {
    font-weight: 700;
}

.food-section h5 {
    color: #ff6600;
    font-weight: 600;
}

/* Media Query for smaller screens (e.g., mobile) */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5em;
    }
}
@media (max-width: 576px) {
    .facility-card {
        padding: 25px 15px;
    }
    .facility-card .icon {
        font-size: 35px;
        padding: 12px;
    }
}
@media (max-width: 576px) {
    .row.g-4 {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 10px;
    }
    .row.g-4 .col-6 {
        flex: 0 0 auto;
        width: 70%;
    }
}