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

html, body {
    height: 100%;
     font-family: "Wix Madefor Display", sans-serif;
}

/* PAGE WRAPPER */
.page {
    display: flex;
    min-height: calc(100vh - 60px);
}

/* LEFT */
.left {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.logo img {
    height: 32px;
}

/* CENTER CONTENT */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 520px;
}

.content h1 {
    font-size: clamp(32px, 7vw, 100px);
    line-height: 1.1;
    margin-bottom: 20px;
   font-weight: 800;
}

.content p {
    font-size: clamp(16px, 2.5vw, 24px);
    color: #444;
    margin-bottom: 32px;
}

/* BUTTONS */
.actions {
    display: flex;
    gap: 16px;
}

.btn {
    background: #ff4d1c;
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* RIGHT */
.right {
    width: 50%;
    background: #f8f6f2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;
}

.hero-image {
    max-width: 70%;
    height: auto;
    width:100%;
}

/* FOOTER */
footer {
    height: 60px;
    background: #d8430b;
    color: #fff;
    display: flex;
    align-items: center;
    padding-left: 40px;
    font-size: 14px;
}

/* --------------------
   MOBILE
-------------------- */
@media (max-width: 900px) {

    .page {
        flex-direction: column;
    }

    .left,
    .right {
        width: 100%;
    }

    .left {
        padding: 32px 24px;
        text-align: center;
    }

    .content {
        align-items: center;
        margin:110px auto;
    }

    .actions {
        justify-content: center;
        flex-wrap: wrap;
        display:block;
    }
    
    .btn { display:block; margin-bottom:20px; }

    .right {
        padding: 40px 0;
        padding-bottom:0px;
    }

    footer {
        justify-content: center;
        padding-left: 0;
    }
}
