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

html, body {
    width: 100%;
    min-height: 100vh;
}

body {
    font-size: var(--font-size-base);
    font-family: var(--font-family-base);
    background-color: #000;
    background-image: url('../assets/images/top_bg.jpg'); 
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed; 
    color: var(--color-text-main);
    line-height: var(--line-height-base);
}

/* GLOBAL BORDER KILLER (Stops white boxes/borders around images) */
img {
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    outline: none !important;
    box-shadow: none !important;
    max-width: 100%;
    height: auto;
}

.responsive-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

a {
    color: var(--color-text-link);
    text-decoration: none;
    transition: color 0.2s ease;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-text-heading);
    font-weight: bold;
}