/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

body {
    background-color: #fcfcfc;
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 4px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    height: 70vh;
    background-color: #e8e2db; /* Light Champagne */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #333;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
}

/* Products Grid */
.products {
    padding: 60px 5%;
    text-align: center;
}

.products h2 {
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.img-placeholder {
    width: 100%;
    height: 300px;
    background-color: #f0f0f0; /* Replace with your jewelry images */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.img-placeholder:hover {
    transform: scale(1.02);
}

.item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}