body {
margin: 0;
font-family: 'Poppins', sans-serif;
background-color: #0e0e0e;
color: #f9f9f9;
}
.hero {
background: url('hero-cognac-black-millennial.jpg') no-repeat center center/cover;
height: 90vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
}
.overlay {
background-color: rgba(0, 0, 0, 0.7);
padding: 2rem;
border-radius: 12px;
max-width: 90%;
}
.brand-name {
font-size: 3rem;
color: #e4c07d;
font-weight: 700;
}
.tagline {
color: #d3d3d3;
font-size: 1.2rem;
margin-top: 0.5rem;
}
.intro {
padding: 2rem 1.5rem;
text-align: center;
color: #c0c0c0;
font-size: 1.1rem;
}
.products {
padding: 4rem 2rem;
text-align: center;
}
.products h2 {
font-size: 2rem;
color: #e4c07d;
margin-bottom: 1rem;
}
.filters button {
background: none;
border: 1px solid #e4c07d;
color: #e4c07d;
padding: 0.5rem 1rem;
margin: 0.25rem;
border-radius: 6px;
cursor: pointer;
transition: all 0.3s;
}
.filters button:hover {
background-color: #e4c07d;
color: #0e0e0e;
}
.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.product-card {
background-color: #1a1a1a;
border-radius: 12px;
padding: 1rem;
transition: transform 0.3s ease;
}
.product-card:hover {
transform: translateY(-5px);
}
.product-card img {
width: 100%;
border-radius: 10px;
margin-bottom: 1rem;
}
.product-card h3 {
color: #e4c07d;
font-size: 1.3rem;
}
.product-card p {
color: #ccc;
font-size: 0.95rem;
}
.reviews {
background-color: #141414;
padding: 3rem 2rem;
text-align: center;
}
.reviews h2 {
color: #e4c07d;
margin-bottom: 2rem;
font-size: 1.8rem;
}
.reviews blockquote {
font-style: italic;
color: #ddd;
margin-bottom: 2rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.reviews span {
display: block;
margin-top: 0.5rem;
color: #aaa;
}
footer {
text-align: center;
padding: 2rem 1rem;
background-color: #0a0a0a;
font-size: 0.9rem;
color: #777;
}
.footer-tagline {
color: #e4c07d;
margin-top: 0.5rem;
}