/* Global */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url("background.png") repeat;
    background-size: 400px; /* controls texture scale */
}

/* Less than Full-width top logo */
.hero-header {
    width: 100%;
    text-align: center;
    background: none; /* remove red bar behind it */
    padding: 20px 0;
}

.hero-logo {
    width: 50%;   /* ← LOGO NOW HALF SIZE */
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 4px solid #b40000; /* optional decorative frame */
}

/* Tagline */
.tagline {
    max-width: 700px;     /* makes the bar slightly wider than content */
    margin: 20px auto;    /* centers it, adds spacing around it */
    text-align: center;
    padding: 10px 10px;   /* balanced padding */
    background-color: #bfbfbf;
    border-bottom: 2px solid #ccc;
    border-radius: 6px;   /* optional, looks cleaner */
}


.tagline h1 {
    margin: 0;
    font-size: 1.8rem;
    color: #444;
}

/* Services Section */
.services {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
}

.services h2 {
    text-align: center;
    margin-bottom: 20px;
}

.services ul {
    list-style: none;
    padding-left: 0;
}

.services li {
    background: #bfbfbf;
    margin: 10px 0;
    padding: 15px;
    border-radius: 6px;
    border-left: 5px solid #b40000;
    font-size: 1.1rem;
}

/* PDF Download */
.download {
    text-align: center;
    margin: 40px 0;
}

.download-btn {
    background-color: #0077cc; /* blue */
    color: white;
    padding: 14px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
}

.download-btn:hover {
    background-color: #005fa3; /* darker blue on hover */
}

/* Contact Form */
.contact {
    max-width: 700px;
    margin: 50px auto;
    padding: 20px;
}

.contact h2 {
    text-align: center;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact input, .contact textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #aaa;
    font-size: 1rem;
}

.contact button {
    background-color: #0077cc; /* blue */
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: bold;
}

.contact button:hover {
    background-color: #005fa3; /* darker blue */
}

.direct-contact {
    text-align: center;
    margin-top: 25px;
}

/* EMAIL BUTTON */
.email-btn {
    display: inline-block;
    background-color: #0077cc;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin: 10px;
}

.email-btn:hover {
    background-color: #005fa3;
}

/* Layout wrapper for buttons */
.contact-buttons {
    text-align: center;
    margin-top: 20px;
}

.direct-contact {
    text-align: center;
    margin-top: 25px;
    font-size: 1.1rem;
}


/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

.contact button.disabled {
    background-color: #999;
    cursor: not-allowed;
}

.contact button.disabled:hover {
    background-color: #999;
}

/* ========================================================= */
/* SMART CALL BUTTON STYLING                                 */
/* Matches the blue buttons used elsewhere on your site      */
/* ========================================================= */
.call-btn {
    display: inline-block;
    background-color: #0077cc; /* blue */
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    border: none;
}

.call-btn:hover {
    background-color: #005fa3; /* darker blue */
}

/* Center the Call Me button */
.call-wrapper {
    text-align: center;
    margin-top: 20px;
}

/* Smart Call Button Styling */
.call-btn {
    background-color: #0077cc;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.call-btn:hover {
    background-color: #005fa3;
}

/* ========================================================= */
/* MOBILE OPTIMIZATIONS                                      */
/* Improves layout, spacing, readability, and visuals on     */
/* screens smaller than 600px wide.                          */
/* ========================================================= */
@media (max-width: 600px) {

    /* Softer background texture on small screens */
    body {
        background-size: 250px;
    }

    /* Logo slightly smaller + thinner border */
    .hero-logo {
        width: 80%;
        border-width: 2px;
    }

    /* Tagline centered with more breathing room */
    .tagline {
        max-width: 95%;
        padding: 12px;
        margin: 15px auto;
    }

    /* Services + Contact + Download sections fit tighter */
    .services,
    .contact,
    .download {
        max-width: 95%;
        margin: 20px auto;
        padding: 10px;
    }

    /* Capability boxes slightly smaller text + tighter spacing */
    .services li {
        font-size: 1rem;
        padding: 12px;
    }

    /* Contact form spacing adjustments */
    .contact input,
    .contact textarea {
        padding: 10px;
        font-size: 1rem;
    }

    /* Buttons better spaced for thumbs */
    .download-btn,
    .contact button,
    .call-btn {
        width: 100%;
        padding: 14px;
        margin-top: 15px;
        margin-bottom: 20px;
        font-size: 1.1rem;
    }

    /* Center wrapper keeps elements aligned nicely */
    .call-wrapper {
        margin-top: 10px;
        text-align: center;
    }
}

/* LinkedIn Icon Link Styling */
.linkedin-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* space between logo and text */
    text-decoration: none;
    font-weight: bold;
    color: #0A66C2;
    margin-top: 8px;
}

.linkedin-icon-link:hover .linkedin-text {
    text-decoration: underline;
}

.linkedin-icon {
    width: 28px;
    height: 28px;
    border-radius: 4px;
}

/* Optional: slightly larger on mobile */
@media (max-width: 600px) {
    .linkedin-icon {
        width: 32px;
        height: 32px;
    }
}
