/* Custom global styles */
body {
    font-family: 'Inter', sans-serif;
}

/* Hero Slide Backgrounds */
.hero-slide {
    background-size: cover;
    background-position: center;
    min-height: 700px;
    position: relative;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    inset: 0;
}





/* Mobile menu toggle */
.mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    .desktop-menu {
        display: none;
    }
}


/* Hosting Cards */
.feature-list li {
    margin-bottom: 0.3rem; /* tighter spacing */
    display: flex;
    align-items: center;
}

.feature-list i {
    margin-right: 0.4rem;
    font-size: 0.85rem;
    color: #0369a1;
}



.hosting-card {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    align-items: center; /* This centers the inner content */
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
}


.hosting-btn-primary {
    display: inline-block;
    background-color: #0369a1;
    color: #fff;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
}

.hosting-btn-primary:hover {
    background-color: #1d4ed8;
}


/* Footer Base */
footer {
    font-family: 'Inter', sans-serif;
}

/* Footer Link Columns - Force 2-column grid on small screens */
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

/* Footer Headings */
footer h4 {
    font-size: 1rem;
    font-weight: 600;
}

/* Footer Links */
footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Footer Bottom Text */
footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}
