body {
    font-family: Verdana, Tahoma, sans-serif;
    margin: 15px;
    padding: 0;
    background-color: #221515;
    padding: 6px;
    border: 1px solid #F7E1BC;
    padding-bottom: 5%;
}

header {
    position: fixed;
    background-color: #F7E1BC;
    padding: 1rem ;
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    box-shadow: 2px 3px 10px #000000;
    width: 95%;
}
.logo {
    font-family: 'Dancing Script' , cursive;
    font-size: 2.5rem;
    margin: 0; 
    color: #2f1b1b;
    text-shadow: 0px 1px 1px #54372B;
    margin-left: 1%;
}

.logo:hover {
    cursor: pointer;
}
.logo a{
    color: #2f1b1b;
}
p1 {
    font-size: 2.5rem;
    margin: 0; 
    color: #2f1b1b;
    text-shadow: 0px 1px 1px #54372B;
    margin-left: 1%;

}


nav {
    flex-grow: 1; 
    

}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end; 
    margin-right: 50px;

}

nav li {
    display: inline-block;
    margin: 0 1rem;
}
nav a {
    text-decoration: none;
    color: #54372B;
    font-size: 15px;
    transition: width 2s, height 4s;
}

nav a:hover {
    color: #000000;
}


h1 {
    color:#fff0d5;
    text-align: center;
    font-size: 37px;
    margin-top: 10%;

}
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 90%;
    max-width: 1200px;

}

.card {
    background: #E5D3B3;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    max-width: 100px;
    margin-bottom: 15px;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: 14px;
    color: black;
    margin-bottom: 10px;
}

.card-description {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 16px;
    font-weight: bold;
}

.add-button {
    padding: 8px 15px;
    font-size: 14px;
    background-color: #ddd;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-button:hover {
    background-color: #bbb;
}