html {
    background-color: black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header {

    background-color: #ed5e05f5;
    height: 600px;
}

nav {
    text-align: right;
    background-color: #ed5e05f5;
    padding: 30px;
}

nav ul li a {
    color: black;
    padding: 10px;
    text-decoration: none;

}

nav ul li a:hover {
    color: azure;
    text-decoration: none;

}


ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

li {
    margin: 0 30px;
    list-style: none;
    display: inline-block;
    color: black;
    padding: 10px;
}

li:hover {
    color: azure;
    background-color: black;
    padding: 10px;
    border-radius: 10px;
    border-bottom: 5px solid azure;
}

.header-info {
    display: inline-flex;
}

.intro {
    margin: 50px;
}

#heading h1 {
    display: inline-block;
}

#heading h1::after {
    content: "";
    display: block;
    width: 50%;
    background-color: azure;
    margin: 0 0 0 auto;
}

header div #header-img {
    width: 450px;
    margin-right: 20px;
    margin-top: 60px;
    border-radius: 30% 70% 40% 60% / 58% 47% 53% 42%;

}

header div #logo {
    width: 100px;
    float: left;
    padding: 5px;
    margin-left: 100px;
}

#header-intro {
    width: 800px;
}


.intro {}

.btn {
    padding: 0.6em 1em;
    border: 4px solid black;
    transition: ease-in-out 0.3s;
    background-color: transparent;
    color: #fa725a;
    font-weight: bolder;
    margin: 10px;
}

.btn:hover {
    transform: scale(1.2) rotate(10deg);
    background-color: azure;
    color: black;
}

.btn a {
    text-decoration: none;
    color: black;
}

/* --------- define the animation fot the into (floating) ---- */

.float {
    animation-name: ani-float;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes ani-float {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 15px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

.sec-heading {
    color: #ed5e05f5;
    text-align: center;
}

.details {
    color: #ed5e05f5;
    text-align: center;
    width: 800px;
    margin: auto;
}

main {
    height: 800px;
}

.reviews {
    height: 1000px;
}

.about {
    height: 300px;
}

footer {
    height: 200px;
    background-color: #ed5e05f5;
}

/* -----------------------------------------Menu cards ------------------------------- */


.wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 6% auto 0;
}

.single-card {
    position: relative;
    width: 280px;
    height: 400px;
    margin: 15px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease;
    /* overflow: hidden; */
    background: #ed5e05f5;
    border-radius: 15px;
    transition: all 0.8s ease-in-out;
}

.single-card:hover {
    transform: translateY(-10px);
}

.img-area {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.img-area:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 174, 255, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.single-card:hover .overlay {
    opacity: 1;
}

.add-to-cart,
.view-details {
    background-color: #fff;
    color: #333;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-bottom: 10px;
}

.add-to-cart:hover,
.view-details:hover {
    background-color: black;
    color: #fff;
    border: none;
}

.info {
    padding: 10px;
    text-align: center;
    color: #ddd;
}

.info h3 {
    margin: 15px 0 10px;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
}

.info .price {
    margin: 0;
    font-size: 30px;
    font-weight: bold;
    color: black
}


/* ----------------Testimonial--------------------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, mixmx(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.testimonial-container {
    background-color: #ed5e05f5;
    border-radius: 12PX;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ------------------- Testimonial (reviews avatar)-------------- */
.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333333;
}

/* ---------------------------------------------footer ------------------------------ */
.container {
    text-align: center;
    padding: 20px;
    text-decoration: none;
}

.container p a {
    color: black;
    padding: 20px;
    text-decoration: none;

}

.container p a:hover {
    background-color: black;
    color: azure;
    padding: 15px;
    border-radius: 5px;

}

/* 
header .header-info .intro .btn:hover {}

header .header-info .intro .btn:active {}

header .header-info .intro .btn:focus {}

header .header-info .intro a {}

header .header-info .intro a:hover {}

header .header-info .intro a:active {}

header .header-info .intro a:focus {}

header div {}
 */