/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body */
body {
    background-color: black;
    color: white;
    overflow-x: hidden;
}



/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: fixed;
    width: 100%;
    background: #032740;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: lightskyblue;
}

.availability {
    font-size: 12px;
    color: white;
}

.menu-icon {
    font-size: 18px;
    cursor: pointer;
    background: rgb(95, 174, 224);
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Side Navigation Menu */
nav {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: right 0.3s ease-in-out;
}

nav.active {
    right: 0;
}

nav .close-btn {
    align-self: flex-end;
    margin: 20px;
    cursor: pointer;
    font-size: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    margin: 20px 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
    font-weight: 700;
}

nav ul li a:hover {
    color: lightskyblue;
}



/* Services Section */

h2{
    font-size: 50px;
    text-align: center;

}


p{
    font-size: 12px;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
}

.services .items{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0rem;
    padding-bottom: 4rem;
   
}

 
.services .items .items{
    padding: 2rem 0rem;
    border-bottom: 1px solid #444;
    padding-right: 4rem;
    transition: all 10s;
    align-items: center;

}

.services .items .items .title{
    font-size: 25px;
    font-weight: 700;
    color: #eee;
    padding: 1rem 0rem;
    font-family: 'Times New Roman', Times, serif;
}


.services .items .items .desc{
    height: 0px;
    padding: 1rem 0rem;
    overflow: hidden;
    transition: all 3s;
}

.services .items .items:hover .desc{
    height: 180px;

}

.services .items .items .desc p{
     font-size: 15px;
     font-weight: 400;
     color: #eee;
     letter-spacing: 1 px;
     padding: 0.7rem 0rem;
}


li{
    text-align: left;
    font-size: 14px;
}


.services .items .items .btns{
    padding: 2rem 0rem;
    display: flex;
    gap: 2rem;

}

.services .items .items .btns .btn-more{
    padding: 1rem 2.4rem;
    background-color: transparent;
    color: #fff;
    border-radius: 1.5rem;
    border: 1px solid #666;
    cursor: pointer;

}

.services .items .items .btns .btn-more:hover{
    color: #000;
    background-color: #ccc;

}


.services .items .items .btns .see-more{
    padding: 1rem 2.4rem;
    background-color: transparent;
    color: #fff;
    border-radius: 1.5rem;
    border: 1px solid #666;
    cursor: pointer;

}

.services .items .items .btns .see-more:hover{
    color: #000;
    background-color: #ccc;

}



/*Recent Section*/
h1{
    text-align: center;
    font-size: 40px;
}

.menu-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.menu-item {
    background: #222;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    max-width: 200px;
    box-shadow: 0 4px 8px rgb(42, 148, 213);
    transition: transform 0.3s ease-in-out;
}

.menu-item:hover {
    transform: scale(1.05);
}

.menu-item img {
    width: 100%;
    border-radius: 10px;
}

.menu-item h3 {
    font-size: 18px;
    margin-top: 10px;
}



.add-to-cart {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: rgb(14, 94, 128);
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

.add-to-cart:hover {
    background: hsl(191, 100%, 50%);
}
