/* theme.css */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

/* --- CSS Variables --- */
:root {
    --color-primary: #0b303b;       /* Deep Blue/Slate */
    --color-secondary: #5c9030;     /* Vibrant Green */
    --color-tertiary: #f0f0f0;      /* Light Gray Background */
    --color-text: #333333;          /* Dark Gray Text */
    --color-text-light: #666666;    /* Medium Gray Text */
    --color-white: #ffffff;
    --color-border: #e2e8f0;

    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

/* --- Resets & Base Styles --- */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: linear-gradient(135deg,rgb(92,144,48) 0%,rgb(208,244,213) 22%,rgb(0,105,56) 97%);
    background-attachment: fixed;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: inherit;
    line-height: 1.2;
}

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

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

/* --- Global Components --- */
.pic-card {
    background-color: var(--color-secondary);
    border: 3px solid var(--color-white);
    border-radius: 1.5rem;
    color: var(--color-white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
}

.pic-btn {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    border-radius: 9999px;
    font-weight: 700;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pic-btn:hover {
    color: var(--color-white);
}