﻿/* GLOBAL RESET */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ================= HEADER ================= */

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: #ffffff;
    display: flex;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-inner {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 60px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text h2 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2f46;
    margin: 0;
}

.main-nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #1f2f46;
    font-weight: 500;
    transition: 0.3s;
}

    .main-nav a:hover {
        color: #0b8f1a;
    }

/* ================= CONTENT ================= */

.main-content {
    flex: 1;
    /* padding-top: 80px;   same as header height */
}

/* ================= FOOTER ================= */

.main-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #ddd;
    padding: 15px 0;
    z-index: 4;
}

.footer-inner {
    height: 5px;
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.main-footer a {
    text-decoration: none;
    margin-left: 20px;
    color: #1f2f46;
}

    .main-footer a:hover {
        color: #0b8f1a;
    }
