@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@300;400;600;700&display=swap');

/* ===== Global ===== */

body {
    margin: 0;
    background: #121212;
    color: #f5f5f5;
    font-family: Inter, sans-serif;
}

h1,
h2 {
    font-family: "Playfair Display", serif;
}

.gold {
    color: #d4a843;
}

/* ===== Header ===== */

header {
    position: sticky;
    top: 0;
    background: rgba(18, 18, 18, 0.95);
    padding: 18px 5%;
    border-bottom: 1px solid #2b2b2b;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #d4a843;
}

/* ===== Hero ===== */

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;

    background:
        linear-gradient(rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.75)),
        linear-gradient(135deg, #3d2f0f, #222);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero p {
    max-width: 750px;
    margin: 20px auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ===== Buttons ===== */

.btn {
    display: inline-block;
    margin: 10px;
    padding: 14px 26px;

    background: #d4a843;
    color: #111;

    text-decoration: none;
    font-weight: 700;

    border-radius: 6px;

    transition:
        background 0.3s ease,
        transform 0.2s ease;
}

.btn:hover {
    background: #e3b751;
    transform: translateY(-2px);
}

/* ===== Content Sections ===== */

.section {
    max-width: 1200px;
    margin: auto;
    padding: 70px 5%;
}

.section h2 {
    margin-bottom: 30px;
}

/* ===== Card Grid ===== */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

/* ===== Product Cards ===== */

.card {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.card .btn {
    margin-top: auto;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.card img {
    width: 100%;
    height: 500px;

    object-fit: cover;
    object-position: center;

    display: block;
}

.card h3 {
margin: 0;
padding: 20px;
 
text-align: center;
 
color: #d4a843;
font-family: "Playfair Display", serif;
font-size: 1.25rem;
font-weight: 700;
line-height: 1.4;
 
min-height: 80px;
 
display: flex;
align-items: center;
justify-content: center;
}
