/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

:root {
    --primary: #6d4c41;       /* Carton Brown */
    --secondary: #8d6e63;     /* Kraft Light Brown */
    --bg-paper: #fdfbf7;      /* Warm Paper Background */
    --text-dark: #3e2723;     /* Coffee */
    --white: #ffffff;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-paper);
    color: #444;
    line-height: 1.6;
}

/* HEADER & NAV */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(109, 76, 65, 0.1);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover { color: var(--primary); }

/* STAFF PORTAL BUTTON */
.btn-portal {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    border: 1px solid var(--primary);
}

.btn-portal:hover {
    background: var(--white);
    color: var(--primary) !important;
}
/* ... keep your header CSS the same ... */

/* HERO SECTION - UPDATED IMAGE */
.hero {
    /* Image: Stacked Brown Cardboard/Paper Rolls */
    background: linear-gradient(rgba(62, 39, 35, 0.85), rgba(62, 39, 35, 0.7)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    height: 500px; /* Made it slightly taller for impact */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* ... keep the rest of your CSS the same ... */

SECTIONS */
.container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    color: var(--primary);
    margin-bottom: 40px;
    font-size: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    border-bottom: 4px solid var(--secondary);
}

.card h3 { color: var(--primary); }

/* FOOTER */
footer {
    background: var(--text-dark);
    color: #aaa;
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
}
