/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #1a1a1a; /* Slightly lighter than brand for depth */
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Brand */
header {
    background-color: #290505;
    padding: 20px 0;
    border-bottom: 1px solid #4a0a0a;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px; /* Adjust based on your logo shape */
    filter: brightness(0) invert(1); /* Forces logo to white if it's black */
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #c0c0c0; /* Silver hover effect */
}

/* Hero Section */
.hero {
    height: 60vh;
    background: url('hero-bg.jpg') center/cover no-repeat; /* Use a high-quality jewellery photo */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    background: rgba(41, 5, 5, 0.7); /* Brand color with transparency */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn:hover {
    background: #fff;
    color: #290505;
}

/* Main Layout */
.main-layout {
    padding: 60px 20px;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
    border-left: 4px solid #290505;
    padding-left: 15px;
}

.about-section {
    margin-bottom: 80px;
    max-width: 800px;
}

/* Collection Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.grid-item {
    background: #222;
    padding: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.grid-item:hover {
    transform: translateY(-5px);
}

.grid-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #290505;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #4a0a0a;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #888;
}