@font-face {
    font-family: 'Valley Sans';
    src: url('../Font/ValleySans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Valley Sans';
    src: url('../Font/ValleySans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Valley Sans';
    src: url('../Font/ValleySans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Valley Sans';
    src: url('../Font/ValleySans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../Font/DMSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../Font/DMSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../Font/DMSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body, 'DM Sans', -apple-system, sans-serif);
    font-weight: 400;
    color: var(--color-text-light-body, #1a202c);
    background-color: var(--color-bg-light, #ffffff);
    line-height: 1.6;
    overflow-x: hidden;
}

body.dark-theme {
    background-color: var(--color-bg-dark, #090d16);
    color: var(--color-text-dark-body, #94a3b8);
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: var(--font-heading, 'Valley Sans', sans-serif);
    font-weight: 400;
    line-height: 1.25;
}

h2, h3, h4 {
    font-weight: 500;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Global full-width container standard */
.section-container {
    width: 100%;
    max-width: var(--container-max-width, 1240px);
    margin: 0 auto;
    padding: 0 2rem;
}
