/* ==========================================================================
   1. GLOBAL STYLES & VARIABLES
   ========================================================================== */
:root {
    --primary-color: #0b1a30;    /* Deep Navy from "PRINTING" text */
    --secondary-color: #e60067;  /* Vibrant Magenta from the mug/text */
    --accent-cyan: #009ee2;      /* Cyan from the t-shirt icon */
    --accent-orange: #f9a01b;    /* Orange/Yellow from the keyring icon */
    --text-color: #333333;       /* Off-black for body readability */
    --bg-light: #f8f9fa;         /* Soft background for cards */
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    padding: 20px; /* Temporary padding until header/nav are built */
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

hr {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    margin: 50px 0;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3354 100%);
    color: var(--white);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.hero .tagline {
    font-size: 1.25rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #c40057;
}

.btn-secondary {
    background-color: var(--accent-cyan);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #0084bd;
}

/* ==========================================================================
   3. SERVICES TWO-COLUMN LAYOUT
   ========================================================================== */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border-top: 5px solid var(--primary-color);
    display: flex;
    flex-direction: column;
}

/* Subtle color difference for the B2C card */
#personal.service-card {
    border-top-color: var(--secondary-color);
}

.service-card h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.75rem;
}

.service-card p {
    margin-bottom: 20px;
    color: #555;
}

.service-card ul {
    list-style-type: none;
    margin-bottom: 30px;
}

.service-card li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

/* Custom bullet points using logo accents */
#corporate li::before {
    content: "•";
    color: var(--accent-cyan);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -4px;
}

#personal li::before {
    content: "•";
    color: var(--accent-orange);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -4px;
}

.card-link {
    margin-top: auto; /* Pushes the link to the bottom of the card */
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.card-link:hover {
    color: var(--secondary-color);
}

/* ==========================================================================
   4. THE QUALITY PROMISE SECTION
   ========================================================================== */
.promise-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.promise-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: #555;
    line-height: 1.8;
    position: relative;
    padding: 0 30px;
}

/* ==========================================================================
   5. FOOTER
   ========================================================================== */
footer {
    text-align: center;
    padding: 40px 20px;
    color: #777;
    font-size: 0.9rem;
}

/* ==========================================================================
   6. RESPONSIVE DESIGN (Mobile Friendly)
   ========================================================================== */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .hero {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 25px;
    }
}










/* ==========================================================================
   7. MAIN HEADER STYLES
   ========================================================================== */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    max-width: 1200px;
    margin: 0 auto;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
}

/* Logo Sizing */
.logo-area .site-logo {
    max-height: 90px; /* Adjust this based on how the logo looks on screen */
    width: auto;
    display: block;
}

/* Header Contact Info */
.header-info {
    display: flex;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #555;
}

.info-icon {
    font-size: 1.2rem;
}

.info-text {
    font-weight: 500;
}

.info-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.info-link:hover {
    color: var(--secondary-color);
}

/* Responsive Header for Mobile */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .header-info {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}
