* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background-color: #fff;
color: #111;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 40px;
background: #000;
color: #fff;
}
.logo {
font-size: 24px;
font-weight: bold;
}
.nav-links {
list-style: none;
display: flex;
gap: 25px;
}
.nav-links a {
color: #fff;
text-decoration: none;
font-size: 16px;
}
.hero {
text-align: center;
padding: 120px 20px;
background: url('hero-image.jpg') center/cover no-repeat;
color: #fff;
}
.hero h1 {
font-size: 48px;
margin-bottom: 20px;
letter-spacing: 2px;
}
.btn {
background: transparent;
color: #fff;
border: 2px solid #fff;
padding: 10px 20px;
text-decoration: none;
font-weight: bold;
transition: 0.3s;
}
.btn:hover {
background: #fff;
color: #000;
}
.products {
padding: 60px 40px;
text-align: center;
}
.product-grid {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 30px;
margin-top: 30px;
}
.product img {
width: 250px;
height: auto;
border: 1px solid #ccc;
}
footer {
background: #000;
color: #fff;
text-align: center;
padding: 20px;
margin-top: 60px;
}