/**
 * Natbrookas - Main Stylesheet
 * Semantic + Hungarian naming convention
 */

:root {
    --clr-gold: #d4af37;
    --clr-gold-dark: #b8962e;
    --clr-navy: #1a1a2e;
    --clr-navy-light: #16213e;
    --clr-cream: #f5f5f5;
    --clr-gray: #a0a0a0;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

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

a {
    color: var(--clr-gold);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
.txt-display {
    font-family: var(--font-display);
}

.txt-gold {
    color: var(--clr-gold);
}

.txt-center {
    text-align: center;
}

.txt-uppercase {
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 5rem 0;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--clr-gold);
    color: var(--clr-navy);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--clr-gold-dark);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--clr-gold);
    border: 1px solid var(--clr-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--clr-gold);
    color: var(--clr-navy);
}

/* Cards */
.card-product {
    background: var(--clr-navy-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s;
}

.card-product:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

/* Forms */
.form-input {
    width: 100%;
    padding: 1rem;
    background: var(--clr-navy-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--clr-cream);
    font-family: var(--font-body);
}

.form-input:focus {
    outline: none;
    border-color: var(--clr-gold);
}

/* Utilities */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
