/*
Theme Name: Al Kanz General Trading
Theme URI: https://alkanzgt.com
Author: Bishoy
Version: 1.2.0
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;700;800&display=swap');

:root {
    --primary-yellow: #FFC812;
    --yellow-hover: #E6B200;
    --dark-bg: #0F172A;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --white: #FFFFFF;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F8FAFC;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

/* --- Premium Sticky Header --- */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 12px 0;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Sizing */
.site-branding img {
    height: 48px !important;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Navigation Links */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.2px;
    transition: color 0.2s ease;
}

.main-navigation a:hover {
    color: var(--yellow-hover);
}

/* CTA Button */
.btn-quote {
    background-color: var(--primary-yellow);
    color: #000000;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 200, 18, 0.25);
    transition: all 0.2s ease;
}

.btn-quote:hover {
    background-color: var(--yellow-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 200, 18, 0.35);
}