/* ===== GLOBAL UTILITY STYLES ===== */

:root {
    --bg-dark: #121212;
    --bg-light: #f8f9fa;
    --fg-dark: #f8f9fa;
    --fg-light: #121212;
    --accent: #b67b57;
    --accent-soft: #d1a68d;

    --radius: 6px;
    --shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    --font-sans: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

body {
    margin: 0;
    padding: 0;
    background: var(--bg-dark);
    color: var(--fg-dark);
    font-family: var(--font-sans);
}

/* === Flexbox === */
.flex-row {
    display: flex;
    flex-direction: row;
}
.flex-col {
    display: flex;
    flex-direction: column;
}
.flex-wrap {
    flex-wrap: wrap;
}
.justify-between {
    justify-content: space-between;
}
.justify-center {
    justify-content: center;
}
.align-center {
    align-items: center;
}

/* === Spacing === */
.p-1 {
    padding: 0.5rem;
}
.p-2 {
    padding: 1rem;
}
.p-3 {
    padding: 1.5rem;
}
.m-1 {
    margin: 0.5rem;
}
.m-2 {
    margin: 1rem;
}
.m-3 {
    margin: 1.5rem;
}
.gap-1 {
    gap: 0.5rem;
}
.gap-2 {
    gap: 1rem;
}

/* === Typography === */
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-light {
    color: var(--fg-dark);
}
.text-dark {
    color: var(--fg-light);
}
.text-accent {
    color: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  line-height: 1.25;
  color: var(--fg-dark);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

/* === Buttons === */
.btn {
    font-weight: 600;
    font-size: 1rem;
    color: var(--accent);
    background: transparent;
    border: 1px solid var(--accent);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn:hover {
    background: var(--accent);
    color: var(--fg-light);
}

.btn-solid {
    background: var(--accent);
    color: var(--fg-light);
}

/* === Containers === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
}

/* === Shadow & Radius === */
.shadow {
    box-shadow: var(--shadow);
}
.rounded {
    border-radius: var(--radius);
}

/* === Hide / Show === */
.hidden {
    display: none !important;
}
.visible {
    display: block !important;
}

/* === Media Queries Placeholder === */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none;
    }
    .mobile-full {
        width: 100% !important;
    }
}