/* Custom button styling for a more appealing look */
.btn-primary {
    background-image: linear-gradient(to right, #ff7e5f, #feb47b);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 126, 95, 0.6);
}

.home-header-spacer {
    height: 2rem; /* Initial space above the header */
}

.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensure it stays on top */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out; /* Smooth slide down animation */
}

/* Add padding to body when header is fixed to prevent content jump */
body.fixed-header-padding {
    padding-top: 2rem; /* Adjust this value based on your header's height */
}
