:root {
    --primary: #22c55e;
    --primary-hover: #16a34a;
    --secondary: #64748b;
    --accent: #f59e0b;
    --background: #f8fafc;
    --surface: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-main: #0f172a;
    --text-muted: #64748b;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius: 1rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    overflow-x: hidden;
}
.navbar {
    background: var(--glass) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1543353071-873f17a7a088?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 56px;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.recipe-card {
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    background: var(--surface);
}

.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.recipe-card img {
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
}

.recipe-card:hover img {
    transform: scale(1.05);
}

.recipe-card .card-body {
    padding: 1.5rem;
}

.badge {
    padding: 0.5em 1em;
    border-radius: 2rem;
    font-weight: 500;
}

.btn.btn-success {
    background-color: var(--primary);
    border: none;
}

.btn.btn-success:hover {
    background-color: var(--primary-hover);
}
.newsletter-section {
    background: var(--text-main);
    padding: 5rem 0;
    border-radius: 2rem;
    margin: 4rem 1rem;
}
.ingredients-list li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ingredients-list .form-check-input:checked+span {
    text-decoration: line-through;
    opacity: 0.6;
}

.instruction-step {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: var(--surface);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.instruction-step:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.step-number {
    font-size: 1.1rem;
    min-width: 35px;
}



@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
}
.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}