/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, serif;
    background: #f5f1e8;
    color: #1f3b2d;
    line-height: 1.6;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
header {
    background: #f5f1e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #e8dfd1;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
}

nav a {
    color: #1f3b2d;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

nav a:hover {
    color: #b9974f;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    background: url('hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: white;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 35px;
}

.gold-text {
    color: #d4af37;
}

.btn-primary {
    background: #d4af37;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
}

/* SECTIONS */
.section {
    padding: 100px 0;
    text-align: center;
}

.section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.product-hero {
    padding: 100px 0;
    text-align: center;
}

.product-hero h1 {
    font-size: 48px;
}

.product-section {
    padding: 80px 0;
}

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

.product-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.product-card.show {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 25px;
}

.product-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

footer {
    background: #1f3b2d;
    color: white;
    text-align: center;
    padding: 40px 0;
}