/* 
  AMW Resources FZC - Base Styles
  CSS Reset, Variables, Typography, Utilities
*/

/* ================================
   CSS VARIABLES
================================ */
:root {
    /* Colors */
    --primary-green: #58C32D;
    --dark-green: #4da528;
    --white: #FFFFFF;
    --black: #000000;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light-gray: #888888;
    --bg-light: #F9F9F9;
    --border-color: #E5E5E5;

    /* Fonts */
    --font-inter: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-width: 1440px;
    --header-height: 100px;
    --section-padding: 50px 80px;

    /* Shadows */
    --nav-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    --card-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

/* ================================
   CSS RESET
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.5;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ================================
   TYPOGRAPHY UTILITIES
================================ */
.h1 {
    font-size: 160px;
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.02em;
}

.h2 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
}

.h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.text-body {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
}

.text-small {
    font-size: 14px;
    color: var(--text-light-gray);
}

.highlight {
    color: var(--primary-green);
}

.text-white {
    color: var(--white);
}

.text-center {
    text-align: center;
}

/* ================================
   LAYOUT UTILITIES
================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.section {
    padding: var(--section-padding);
}