/* ================================
   PAGE
================================ */

.property-page {
    margin-left: 250px;
    background: #fff;
}

/* ================================
   HERO FULL WIDTH
================================ */

.property-hero {
    height: 420px;
    width: 100vw;
    margin-left: -250px;

    background-size: cover;
    background-position: center;
    position: relative;
}

.property-hero-overlay {
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.35)
    );
    height: 100%;
    display: flex;
    align-items: center;
}

/* FIX: compensazione sidebar */
.property-hero-content {
    color: white;
    padding-left: calc(250px + 80px);
    max-width: 650px;
}

.property-hero-content h1 {
    font-family: 'CinzelCustom', serif;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.property-hero-content p {
    font-family: 'AvenirNext', 'Avenir', sans-serif;
}

/* ================================
   CONTAINER
================================ */

.property-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 40px;
}

/* ================================
   FORM
================================ */

.property-form input,
.property-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'AvenirNext', 'Avenir', sans-serif;
}

.property-form textarea {
    min-height: 120px;
}

/* BUTTON */

.property-form button {
    background: #B09E80;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 10px;
    font-family: 'AvenirNext', 'Avenir', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
}

.property-form button:hover {
    background: #8f7d63;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* ================================
   MOBILE
================================ */

@media (max-width: 900px) {

    .property-page {
        margin-left: 0;
    }

    .property-hero {
        width: 100%;
        margin-left: 0;
        height: 280px;
    }

    .property-hero-content {
        padding-left: 30px;
    }

}
