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

body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
    font-family: 'Lora', serif;
}

.hero-bg {
    background: url('../img/work-desk1.jpg') top center / cover no-repeat;
    filter: grayscale(91%);
    background-attachment: fixed; 
    transition: background-image 1s ease-in-out;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent, rgba(0, 0, 0, 0.8));
    z-index: -1;
}


input, textarea {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #444;
    background-color: white;
    color: black;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    border-color: #555;
    outline: none;
}

@media (max-width: 768px) {
    .hero-bg {
        background-attachment: scroll; 
    }
}

/* BUTTONS */
    /* transperant buttons */

    .tbtn {
        background-color: rgba(255, 255, 255, 0.3);
        color: black;
        font-weight: 500;
        padding: 0.5rem 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.5);
        transition: all 0.3s ease;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .tbtn:hover {
        background-color: rgba(255, 255, 255, 0.8);
        border-color: gray; 
        color: black; 
    }
    

@media (min-width: 640px) { 
    .tbtn {
        padding: 0.75rem 2rem; 
    }
}




.paper:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.filter-btn {
    padding: 8px 16px;
    border: none;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background-color: #bbb;
}













/* !transperant buttonns */

    /* Normal Buttons */
    .btn-solid {
        background-color: black; 
        color: white; 
        font-weight: 500; 
        padding: 0.5rem 1.5rem; 
        border: 1px solid black; 
        transition: all 0.3s ease;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
    }
    
    .btn-solid:hover {
        background-color: white;
        border-color: black;
        color: black; 
    }
    
    @media (min-width: 640px) { 
        .btn-solid {
            padding: 0.75rem 2rem; 
        }
    }
    
    /* Normal Buttons */

/* !BUTTONS */



/* FOOTER */
footer {
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
}

footer a {
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

/* !FOOTER */