/*
 * ============================================================
 * Skypath Digital - Shared Header & Footer Styles
 * ============================================================
 * This file contains styles used by includes/header.php and
 * includes/footer.php only.
 *
 * Future navbar/footer visual changes should be made here,
 * instead of adding <style> blocks to individual pages.
 */

/* ------------------------------
   Navbar action: Contact button
   ------------------------------ */
.contact-button {
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    display: flex;
    align-items: center;
    border-radius: 50px;
    transition: all 0.2s ease;
    border: none;
    font-size: 16px;
    width: 166px;
    justify-content: center;
    background: #00B4DB;
    background: -webkit-linear-gradient(to right, #0083B0, #00B4DB);
    background: linear-gradient(to right, #01559fb5, #2124b1);
}

.contact-button i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.contact-button .vertical-line {
    border-left: 1px solid #fff;
    height: 30px;
    margin: 0 10px;
}

.contact-button:hover i {
    animation: skypathPhoneShake 0.3s infinite;
}

.contact-button:hover {
    text-decoration: none;
    color: #fff;
}

@keyframes skypathPhoneShake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
}

/* ------------------------------
   Navbar action: DigiMelaa
   ------------------------------ */
.digimelaa-btn {
    display: flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 50px;
    background: linear-gradient(45deg, #d4145a, #fbb03b);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    gap: 6px;
    font-size: 14px;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease;
}

.digimelaa-btn .vertical-line {
    border-left: 1px solid rgba(255,255,255,.6);
    height: 18px;
}

.digimelaa-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(251,176,59,.6);
    color: #fff;
}

/* The mobile shortcut is hidden on desktop. */
.desktop-hide {
    display: none !important;
}

/* ------------------------------
   Mobile navbar actions
   ------------------------------ */
@media (max-width: 768px) {
    .desktop-hide {
        display: block !important;
    }

    .digimelaa-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .contact-button {
        padding: 6px 10px;
        font-size: 12px;
    }

    .mobile-dispay-none {
        display: none !important;
    }
}

/* Existing site behaviour: hide the top-right arrow/button. */
.fa-paper-plane,
.bi-arrow-up,
.back-to-top,
.btn-lg-square {
    display: none !important;
}
