@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f4f4f4;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #000;
    color: #fff;
}

.header .logo {
    font-size: 1.5em;
    font-weight: bold;
}

.header .nav ul {
    display: flex;
    list-style: none;
}

.header .nav ul li {
    margin: 0 15px;
}

.header .nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background-image: url('https://i.pinimg.com/originals/03/53/cd/0353cdf9b3b43ea8e16506cde3ec94ef.gif');
    background-size: cover;
    height: 60vh;
    color: #fff;
    background-color: #000000;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero .shop-btn {
    padding: 10px 20px;
    font-size: 1em;
    color: #000;
    background-color: #fff;
    border: none;
    cursor: pointer;
}

/* Products Section */
.products {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
}

.products h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.product-list {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    flex-wrap: wrap;
}

.product-item {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.product-item h3 {
    font-size: 1.2em;
    margin: 15px 0 10px;
}

.product-item p {
    font-size: 1.1em;
    color: #333;
}

.product-item button {
    padding: 10px 15px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.9em;
    margin-top: 10px;
    border-radius: 5px;
}

button:hover {
    padding: 12px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
    color: #fff;
}

.footer .social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}