/* =========================================================
   LEMONIATIS WINDOW FILMS — GLOBAL BLACK + GOLD THEME
   Clean, modern, unified styling for ALL pages
   ========================================================= */

/* ---------- COLOR SYSTEM ---------- */
:root { 
    --brand-gold: #c5a059;
    --brand-gold-light: #d8b97a;
    --dark-bg: #0c0e10;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --white: #ffffff;
}

/* ---------- GLOBAL RESET ---------- */
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
}

/* ---------- HEADINGS ---------- */
h1, h2, h3, h4, h5 {
    color: var(--brand-gold);
    margin-top: 0;
    letter-spacing: 1px;
}

/* ---------- LINKS ---------- */
a {
    color: var(--brand-gold);
    text-decoration: none;
    transition: 0.3s ease;
}
a:hover {
    color: var(--brand-gold-light);
}

/* ---------- NAVIGATION ---------- */
nav {
    width: 100%;
    background: var(--dark-bg);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}
nav a {
    color: var(--white);
    margin: 0 15px;
    font-weight: 500;
}
nav a:hover {
    color: var(--brand-gold);
}

/* ---------- SECTIONS & CARDS ---------- */
.section, .card, .container, .thumbnail {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

/* ---------- BUTTONS ---------- */
button, .btn, .button {
    background: var(--brand-gold);
    color: var(--dark-bg);
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}
button:hover, .btn:hover, .button:hover {
    background: var(--brand-gold-light);
}

/* ---------- IMAGES / GALLERY ---------- */
.thumbnail img, .gallery img {
    width: 100%;
    border-radius: 6px;
}

/* ---------- FOOTER ---------- */
footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
    color: var(--white);
}

/* ---------- RESPONSIVE LAYOUT ---------- */
@media (max-width: 768px) {
    nav a {
        display: inline-block;
        margin: 10px 8px;
    }

    .section, .card, .container {
        padding: 15px;
    }

    .thumbnail {
        width: 100%;
        margin-bottom: 20px;
    }
}
