@import 'variables.css';
@import 'components.css';
@import 'responsive.css';

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-image: radial-gradient(#D4A373 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    /* Subtle dot pattern */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

h1 {
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

section {
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: var(--spacing-sm);
}

.mb-2 {
    margin-bottom: var(--spacing-md);
}

.mb-3 {
    margin-bottom: var(--spacing-lg);
}

.mb-4 {
    margin-bottom: var(--spacing-xl);
}

/* Decoration Helpers */
.deco-blob {
    position: absolute;
    z-index: -1;
    opacity: 0.1;
    pointer-events: none;
}