/* --- MAIN.CSS - The Modern Design --- */

/* 1. DEFINE FONTS */
/* Note: We use '../' because this file is inside the 'css' folder */
@font-face {
    font-family: 'Montserrat';
    font-weight: 400;
    src: url('../fonts/montserrat-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Montserrat';
    font-weight: 600;
    src: url('../fonts/montserrat-semibold.woff2') format('woff2');
}
@font-face {
    font-family: 'Playfair Display';
    font-weight: 700;
    src: url('../fonts/playfair-display-bold.woff2') format('woff2');
}

/* 2. DEFINE VARIABLES (Colors) */
:root {
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --gold: #d4af37;
    --gold-hover: #b4942b;
    --text-white: #f5f5f5;
    --text-gray: #a0a0a0;
    --border-color: #333;
}

/* 3. GLOBAL STYLES */
body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Common Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.back-link:hover { color: #fff; }