/* assets/css/home.css */

/* General styles */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.04);
}

.navbar-brand img {
    height: 40px;
}

/* Feature icons */
.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

#features {
    background-color: #f8f9fa;
}

/* Footer */
footer {
    margin-top: auto;
    padding: 3rem 0;
}

/* Additional styles for home.css */

/* Hero section */
.hero {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    margin-top: -1rem; /* Removes gap between nav and hero */
}

/* Feature icons */
.feature-icon {
    background: linear-gradient(45deg, #0d6efd, #0a58ca);
}

.feature-icon svg {
    color: white;
}

/* Icon square for How It Works section */
.icon-square {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

/* Links */
.icon-link {
    text-decoration: none;
    color: #0d6efd;
}

.icon-link:hover {
    text-decoration: underline;
}

/* Card hover effects */
.card {
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }
    
    .feature-icon {
        width: 3rem;
        height: 3rem;
    }
}
