/* Custom styles for PiggyCRM landing page */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --accent-color: #28a745;
    --header-bg: #ffffff;
    --header-text: #333;
    --footer-bg: #343a40;
    --footer-text: #adb5bd;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* logo in navbar */
.navbar-brand .logo {
    max-height: 75px;
    width: auto;
}

.navbar {
    background: var(--header-bg) !important;
    transition: background 0.3s ease;
}
.navbar-dark .navbar-nav .nav-link {
    color: var(--header-text);
    font-weight: 600;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* footer simplified */
footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 40px 0 20px;
}
footer a {
    color: var(--footer-text);
    text-decoration: none;
}
footer a:hover {
    color: var(--primary-color);
}
footer .footer-logo {
    max-height: 50px;
    width: auto;
}
/* ensure footer columns align as required */
@media (min-width: 768px) {
    footer .order-md-1 { text-align: left !important; }
    footer .order-md-2 { text-align: center !important; }
    footer .order-md-3 { text-align: right !important; }
}

/* Pricing contact card styling */
.price-contact-card {
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    background: #fff;
}
.price-contact-card h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}
.price-contact-card p {
    margin-bottom: .5rem;
}
.price-contact-card a {
    display: inline-block;
    margin-top: 1rem;
    color: #fff;
    background: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
}
.price-contact-card a:hover {
    background: #0056b3;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero {
        padding: 50px 0;
        text-align: center;
    }
    .navbar-brand {
        font-size: 1.25rem;
    }
    .price-contact-card {
        padding: 1.5rem;
    }
}
