/* Website home enhancements — builds on site.css */

:root {
    --brand-dark: #161f43;
    --brand-blue: #0059f7;
    --brand-light: #f4f7ff;
}

body {
    background: #fff;
    color: #222;
}

.site-nav {
    background: var(--brand-dark) !important;
    padding: 0.75rem 1rem;
}

.site-logo {
    width: 90px;
    height: auto;
}

.site-nav .nav-link.active {
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

#main {
    margin-top: 76px;
}

.hero-section {
    background: linear-gradient(135deg, #161f43 0%, #1e3a8a 55%, #0059f7 100%);
    color: #fff;
    padding: 4rem 0 3rem;
}

.hero-kicker {
    opacity: 0.85;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.hero-text,
.lead-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
}

.hero-section .hero-text {
    color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero-btn {
    border-radius: 999px;
    padding: 0.65rem 1.4rem;
}

.hero-image {
    max-height: 420px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.features-section {
    background: var(--brand-dark);
}

.feature-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    color: #fff;
    transition: transform 0.2s ease, background 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-card h3 {
    font-size: 1.05rem;
    margin: 1rem 0 0.75rem;
}

.feature-card p {
    color: #c7cfe8;
    margin: 0;
    line-height: 1.8;
    font-size: 0.95rem;
}

.feature-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.store-card-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.store-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(22, 31, 67, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 100%;
}

.store-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(22, 31, 67, 0.12);
}

.store-card-large {
    flex-direction: column;
    align-items: flex-start;
}

.store-card-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 12px;
    background: var(--brand-light);
    padding: 0.35rem;
}

.store-card h3 {
    font-size: 1.05rem;
    margin: 0 0 0.35rem;
    color: #161f43;
}

.store-card p,
.store-card address,
.store-card .store-phone {
    margin: 0;
    color: #666;
    font-size: 0.92rem;
    line-height: 1.7;
}

.store-card address {
    font-style: normal;
}

.page-header {
    background: var(--brand-light);
}

.site-footer {
    background: var(--brand-dark);
    color: #fff;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.enamad-logo {
    max-width: 90px;
    background: #fff;
    border-radius: 12px;
    padding: 0.25rem;
}

.contact-form .form-control {
    border-radius: 12px;
    border: 1px solid #dbe3f7;
    padding: 0.75rem 1rem;
}

.empty-state {
    color: #666;
}

@media (max-width: 991px) {
    #main {
        margin-top: 88px;
    }

    .hero-section {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }
}
