/* ============================================================================
   HANLHO.COM - Main Stylesheet
   ============================================================================
   Combined styles for landing pages and blog
   ========================================================================== */

/* CSS Variables & Reset */
:root {
    --burgundy: #722f37;
    --burgundy-hover: #5a252c;
    --burgundy-light: rgba(114, 47, 55, 0.1);
    --black: #000000;
    --gray-600: #525252;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.5;
    font-size: 16px;
    padding-top: 73px; /* fixed header height */
}

/* Layout */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================================
   HEADER COMPONENT
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    padding: 24px 0;
    border-bottom: 1px solid var(--black);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.3px;
    text-decoration: none;
    color: var(--black);
}

.accent {
    color: var(--burgundy);
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

nav a.current {
    color: var(--burgundy);
}

/* ============================================================================
   BUTTON COMPONENT
   ========================================================================== */
.btn-cta {
    background: var(--burgundy);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.15s;
}

.btn-cta:hover {
    background: var(--burgundy-hover);
    text-decoration: none;
}

/* ============================================================================
   SHARED TYPOGRAPHY LABELS
   ========================================================================== */
.hero-label {
    font-size: 22px;
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: 20px;
    display: block;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-600);
    margin-bottom: 40px;
    display: block;
}

/* ============================================================================
   FOOTER COMPONENT
   ========================================================================== */
footer {
    padding: 32px 0;
    border-top: 1px solid var(--gray-200);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: var(--black);
}

.footer-links svg {
    width: 16px;
    height: 16px;
}

.footer-email {
    font-size: 13px;
    color: var(--gray-600);
}

.footer-email a {
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 500;
}

.footer-email a:hover {
    text-decoration: underline;
}

/* ============================================================================
   RESPONSIVE - MOBILE
   ========================================================================== */
@media (max-width: 768px) {
    nav {
        gap: 16px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
