/* /assets/css/global.css */

/* 1. RESET & BASICS */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding-top: 70px; /* Space for fixed header */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; }

/* 2. HEADER STYLES */
.site-header {
    background-color: #ffffff;
    border-bottom: 2px solid #f0f0f0;
    height: 70px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}
.logo span.dark { color: #1a1a1a; }
.logo span.red { color: #ef4236; }

/* Navigation */
.main-nav { display: flex; gap: 25px; }
.main-nav a {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
}
.main-nav a:hover { color: #ef4236; }

/* CTA Button in Header */
.header-btn {
    background-color: #ef4236;
    color: white !important;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600;
}
.header-btn:hover { background-color: #d12f24; }

/* 3. FOOTER STYLES */
.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    margin-top: auto; /* Pushes footer to bottom */
    padding: 40px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-col h4 {
    color: #ef4236;
    margin-bottom: 15px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col a {
    display: block;
    color: #bbbbbb;
    margin-bottom: 8px;
    font-size: 14px;
}
.footer-col a:hover { color: #ffffff; padding-left: 5px; }

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 13px;
    color: #777;
}