/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    font-family: "Playfair Display", serif;
    color: #f5f0dc;
}

body {
    background: url("images/chair.png") no-repeat center center fixed;
    background-size: cover;
}

.overlay {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 5%;

    /* Dodaj tamni gradient s lijeve strane */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0) 60%);
}

.text-box {
    max-width: 400px;
}

.text-box h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.text-box p {
    font-size: 1rem;
    margin: 0.2rem 0;
}

/* Old money stil dugmeta */
.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid #f5f0dc;
    border-radius: 25px;
    color: #f5f0dc;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #f5f0dc;
    color: #2c2c2c;
}
