/* Color Palette: Vintage Americana meets Modern Premium */
:root {
    --color-navy: #1B2838; /* Deep vintage navy */
    --color-red: #A32A2A; /* Muted vintage red */
    --color-cream: #F4F1EA; /* Parchment/cream background */
    --color-gold: #C5A059; /* Premium gold accent */
    --color-text-dark: #2C2C2C;
    --color-text-light: #FFFFFF;
    
    --font-heading: 'Cinzel', serif; /* Classic, monumental font */
    --font-body: 'Inter', sans-serif; /* Clean, modern font */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-text-dark);
    line-height: 1.6;
}

/* Navbar (Glassmorphism effect) */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(27, 40, 56, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    color: var(--color-text-light);
    border-bottom: 2px solid var(--color-red);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-gold);
}

/* Buttons */
.btn-primary, .btn-large, .btn-secondary {
    display: inline-block;
    background-color: var(--color-red);
    color: var(--color-text-light);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary:hover, .btn-large:hover, .btn-secondary:hover {
    background-color: #8A2222;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    margin-top: 2rem;
    background-color: var(--color-gold);
    color: var(--color-navy);
}

.btn-large:hover {
    background-color: #A88647;
    color: var(--color-text-light);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: var(--color-navy);
    /* In a real site, add the vintage art as background image here */
    background-image: linear-gradient(rgba(27, 40, 56, 0.8), rgba(27, 40, 56, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-text-light);
    max-width: 800px;
}

.subtitle {
    color: var(--color-gold);
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.title {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.description {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Products Section */
.products-section {
    padding: 6rem 5%;
    background-color: var(--color-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(27, 40, 56, 0.1);
}

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

.placeholder-img {
    height: 300px;
    background-color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-style: italic;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.price {
    font-weight: 600;
    color: var(--color-red);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    display: flex;
    padding: 0;
    background-color: var(--color-navy);
    color: var(--color-text-light);
}

.about-content {
    flex: 1;
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.about-image {
    flex: 1;
    min-height: 400px;
    background-color: var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-style: italic;
}

/* Footer */
footer {
    background-color: #111a24;
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 3rem 5%;
}

footer h3 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
