/* PanelWashPro - Base Styles */
html {
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-primary);
    background-image: 
        /* Premium noise texture */
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E"),
        /* Subtle radial colored glows */
        radial-gradient(circle at 10% 10%, rgba(8, 145, 178, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(5, 150, 105, 0.04) 0%, transparent 50%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: var(--text-5xl); font-weight: 700; }
h2 { font-size: var(--text-4xl); font-weight: 700; }
h3 { font-size: var(--text-3xl); font-weight: 600; }
h4 { font-size: var(--text-2xl); font-weight: 600; }

p { 
    margin-bottom: var(--spacing-sm); 
    color: var(--color-text-muted); 
    font-size: var(--text-base);
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: var(--transition-smooth); 
}

ul { list-style: none; }

img { 
    max-width: 100%; 
    height: auto; 
    display: block; 
    border-radius: var(--border-radius);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-center { text-align: center; }
.text-primary { color: var(--color-accent); }
.text-eco { color: var(--color-eco); }

/* Animation Utils */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
