body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('../images/bg-home.webp')
                center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.content {
    max-width: 700px;
    animation: fadeIn 1.2s ease-in-out;
}

.tagline {
    display: inline-block;
    background: white;
    color: black;
    padding: 4px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
}

h1 {
    font-size: 3rem;
    margin: 15px 0;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: black;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s ease;
}

.btn:hover {
    background: #f39c12;
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}


/*home.css */