/* booking html css*/

* {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    padding: 0;
}

/* Header Section */
header {
    background: linear-gradient(90deg, #cfad8a, #e67e22);
    padding: 15px 20px;
    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: 30px;
    object-fit: contain;
}

.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;
}

.hero {
    height: 250px; /* Adjusted height for mobile */
    display: flex;
    justify-content:stretch;
    align-items: flex-end;
    background-image: url("images/banner2.png");
    background-size: cover; /* Ensures the background image covers the area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents repeating the image */
}

.hero img {
    width: 100%; /* Ensures image width is 100% */
    height: auto; /* Adjusts height automatically to maintain aspect ratio */
    object-fit: cover; /* Makes the image cover the area without distortion */
}

.heromsg {
    background-color: white;
    color: black;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    width: 80%;
    margin-bottom: 25px;
}

.heromsg a {
    color: #007185;
}

.box {
    height: auto; /* Adjusted for mobile */
    width: 23%;
    background-color: rgb(189, 141, 95);
    padding: 20px 0px 15px;
    margin-top: 15px;
    transition: transform 0.3s ease-in-out;
    color: white;
    border-radius: 15px;
}

.details{
    display: flex;
    justify-content: space-between;
}

.female6{
    color: white;
    text-decoration: none;
}

.btn{
    border:none;
    border-radius: 15px;
    padding: 10px;
    background-color: rgba(224, 121, 25, 0.607);
    color: #f3f3f3;
    cursor: pointer;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
}

.btn:hover{
    background-color: rgba(115, 192, 108, 0.607);
    transform: scale(1.1);
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}



.shop {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: #ecd6c4;
}

.box-img {
    height: 300px;
    width: 100%; /* Set a fixed height */
    background-size: cover; /* Ensures the image covers the container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents repeating the image */
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0px 0px 30px rgb(249, 247, 247)
}

/* Adjust .box-img if you have an img tag inside */
.box-img img {
    width: 100%; /* Ensures image width is 100% */
    height: 100%; /* Ensures image height is 100% of the parent container */
    object-fit: cover; /* Makes the image cover the box without distortion */
}

.box-img:hover{
    cursor:pointer;
    filter: brightness(50%);
}

.box-content {
    margin-left: 1rem;
    margin-right: 1rem;
}

.box-content a .female6 {
    color: #0a8398;
    cursor: pointer;
}

footer {
    margin-top: 15px;
}

.foot-panel1 {
    cursor: pointer;
    text-align: center;
    padding: 15px;
    background-color: #37475a;
    color: white;
    transition: background-color 0.3s ease;
}

.foot-panel1:hover {
    background-color: #52647a;;
}


.foot-panel2 {
    background-color: #222f3d;
    color: white;
    height: 200px;
}


.getknow{
    display: block;
    text-align: center;
    padding: 20px;
}

.foot-panel3 {
    background-color: #222f3d;
    color: white;
    border-top: 0.5px solid white;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.foot-panel3 img{
    height: 60px;
}

.contactInfo{
    display: flex;
    justify-content: space-evenly;
    padding: 0 20px;
}

.foot-panel4 {
    background-color: #0f1111;
    color: white;
    height: 80px;
}

.pages {
    font-size: 0.7rem;
    text-align: center;
    padding-top: 25px;
}

.copyright {
    font-size: 0.7rem;
    text-align: center;
    padding-top: 5px;
}

.box {
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
    margin: 20px 15px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
}

.box:hover {
    transform: scale(1.06);
}

.nav-search h4 {
    margin-right: 10px;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .box {
        width: 30%; /* Adjust box size for medium screens */
    }
}

@media (max-width: 768px) {
    .menu-toggle{
        display: block;
    }
    .nav-links{
        display: none;
    }
    nav ul{
        flex-direction: column;
        gap: 10px;
    }
    .box {
        width: 45%; /* Adjust box size for tablet screens */
    }

    .nav-search {
        width: 100%; /* Full-width search bar on tablet */
        margin-top: 10px;
    }

    .hero {
        height: 200px; /* Reduce hero section height on tablet */
    }

    .shop {
        justify-content: space-around;
    }

    .details {
        flex-direction: column; /* Stack buttons on smaller screens */
    }

    .btn {
        width: 100%; /* Full-width button on smaller screens */
    }

    footer {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .box {
        width: 100%; /* Full-width boxes on small screens */
    }

    nav {
        flex-direction: column; /* Stack navigation links on small screens */
    }

    .nav-search {
        width: 100%; /* Full-width search bar on small screens */
    }

    .hero {
        height: 150px; /* Further reduce hero section height on small screens */
    }

    .heromsg {
        font-size: 0.75rem; /* Adjust font size for mobile */
    }

    .foot-panel2{
        height: 300px;
    }

    .contactInfo{
        height: 100%;
        width: 100%;
        display: block;
    }
    .contactInfo div{
        margin-bottom: 10px;
    }
    .btn{
        margin-top: 10px;
    }

    footer {
        padding: 5px;
    }
}