/* Custom styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Custom button styles */
.btn-primary {
    background-color: #FF85A2;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e6748f;
}

.btn-secondary {
    background-color: #A5E6BA;
    color: white;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #94d4a8;
}

/* Animation for week cards */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.week-card {
    animation: fadeIn 0.5s ease forwards;
}

img {
    max-width: 100%;
    height: auto;
}
/* Responsive adjustments */
@media (max-width: 640px) {
    .hero-content {
        text-align: center;
    }
}