/* General Styling */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fdfdfd;
    color: #333;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #111;
}

nav .logo {
    color: #fff;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background-image: url('bg\ \(3\).jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    padding-left: 40px;
}

.hero-text {
    color: white;
    max-width: 450px;
}

.hero-text h2 {
    font-size: 40px;
}

.hero-text p {
    font-size: 19px;
    margin: 10px 0;
}

.btn {
    padding: 12px 25px;
    background: #ff9900;
    color: #111;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Collection Section */
.collection {
    padding: 40px;
    text-align: center;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.product-card img {
    width: 100%;
    border-radius: 6px;
}

.product-card button {
    margin-top: 10px;
    width: 100%;
    padding: 10px;
    background: #111;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.product-card button:hover {
    background: #ff9900;
    color: black;
}

/* Contact Section */
.contact {
    background: #111;
    color: white;
    text-align: center;
    padding: 40px;
}

.order-btn {
    padding: 12px 25px;
    background: #ff9900;
    color: black;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: #222;
    color: white;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 600px) {
    .hero-text h2 {
        font-size: 30px;
    }
}