﻿/* ==========================================================================
   BUSINESS HORIZON MASTER STYLESHEET 2026
   Target: Luxury Retail, Global Trade & Manufacturing 
   ========================================================================== */

:root {
    --green: #06d6a0;
    --gold: #c5a059;
    --dark: #121212;
    --white: #ffffff;
    --light-grey: #f9f9f9;
    --text-main: #333333;
    --accent-green: #27ae60;
    --grey-pending: #888888;
    
    /* Missing Variables Restored */
    --accent-color: #06d6a0;  
    --bg-light: #f8fafc;      
    --no-accent-red: #e74c3c; 
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-nav {
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    padding: 14px 20px;       /* Fixed padding to prevent layout squishing */
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    
    /* Flexbox Alignment Rules */
    display: flex;
    justify-content: center;  
    align-items: center;      
}

/* ==========================================================================
   HEADER & LOGO ALIGNMENT
   ========================================================================== */
header.main-header {
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo-area {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-area img {
    height: 45px;
    width: auto;
}

.brand-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-left: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.main-nav a:hover, .nav-highlight {
    color: var(--green) !important;
}

/* ==========================================================================
   HERO SECTIONS (Safe & Fully Universal for 100+ Pages)
   ========================================================================== */
.hero {
    height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 0 20px;
    
    /* Safely formats dynamic background URLs loaded from the HTML */
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.hero h1 {
    font-size: clamp(2rem, 7vw, 3.5rem);
    margin: 20px 0;
    font-weight: 700;
    letter-spacing: -1px;
}

.eyebrow {
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

/* ==========================================================================
   CONTAINERS & GRIDS
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;                /* Framing spacing between images & text */
    align-items: stretch;      /* Vertically aligns columns dead-center */
    margin-bottom: 60px;      /* Clear separation between structural page tiers */
}


/* ==========================================================================
   CARD & BADGE STYLING
   ========================================================================== */
.card {
    border: 1px solid #f0f0f0;
    padding: 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.category-tag {
    color: var(--green);
    font-size: 25px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    margin-bottom: 20px;
}

.status-badge {
    margin-top: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
}

.no-status-badge {
    margin-top: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--no-accent-red);
    display: flex;
    align-items: center;
    gap: 8px;
}

.no-status-dot {
    width: 8px;
    height: 8px;
    background: var(--no-accent-red);
    border-radius: 50%;
}

/* ==========================================================================
   LISTS & HIGHLIGHT BLOCKS
   ========================================================================== */
.features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.features-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight-box {
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-green);
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

.highlight-box h3 {
    margin-top: 0;
}

/* ==========================================================================
   CALL TO ACTION COMPONENTS
   ========================================================================== */
.ghost-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    border: 1px solid var(--dark);
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.ghost-btn:hover {
    background: var(--green);
    color: var(--white);
}

.cta-box {
    background-color: #06d6a0;
    border: 1px solid #058463;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.cta-box p {
    margin-bottom: 0;
    font-style: italic;
    color: #ffffff;
}

/* ==========================================================================
   GLOBAL FOOTER
   ========================================================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.footer-logo {
    color: var(--green);
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS & MEDIA QUERIES
   ========================================================================== */
.menu-toggle { 
    display: none; 
}

@media (max-width: 768px) {
    .main-nav ul { 
        display: none; 
        flex-direction: column;
        width: 100%;
        background: white;
        position: absolute;
        top: 70px;
        left: 0;
        z-index: 1000;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .menu-toggle { 
        display: block; 
        cursor: pointer;
        background: transparent;
        border: 1px solid var(--dark);
        padding: 5px 10px;
    }

    .main-nav ul.show-menu { 
        display: flex !important; 
    }
    
    .container { 
        padding: 40px 15px; 
    }
    
    .grid { 
        grid-template-columns: 1fr; 
        gap: 20px; 
    }
    
    .card { 
        padding: 25px; 
    }
}


/* ==========================================================================
   CTA BUTTON
   ========================================================================== */
	.cta {
            display: inline-block;
            padding: 12px 24px;
            background-color: #05d6a1;
            color: #fff;
            text-decoration: none;
            border-radius: 20px;
            font-weight: bold;
        }
        .cta:hover {
            background-color: #068a68;
        }



