@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --orange: #ff9c1b;
    --bg-dark: #0d0d0d;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

main.content {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.background-shapes span {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 10s infinite ease-in-out;
    z-index: -10;
    pointer-events: none;
}

.background-shapes span:nth-child(1) {
    width: 200px;
    height: 200px;
    background: var(--orange);
    top: 10%;
    left: 5%;
}

.background-shapes span:nth-child(2) {
    width: 150px;
    height: 150px;
    background: var(--orange);
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

.background-shapes span:nth-child(3) {
    width: 100px;
    height: 100px;
    background: var(--orange);
    top: 40%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

.content {
    text-align: center;
    z-index: 2;
}

.title {
    font-size: 2.8rem;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.btn-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 36px;
    border: none;
    border-radius: 12px;
    background-color: var(--orange);
    color: var(--bg-dark);
    font-size: 1.25rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #e38817;
    transform: translateY(-2px);
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .title {
        font-size: 2rem;
    }

    .btn {
        width: 80%;
        font-size: 1.1rem;
        padding: 16px 24px;
    }
}

.site-footer {
    text-align: center;
    padding: 20px;
    color: gray;
    font-size: 0.9rem;
    margin-top: 60px;
}

.site-footer a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: var(--orange);
}

#foundForm, #foundApartment {
    width: 100% !important;
}

.filter-fixed-btn {
    position: fixed;
    bottom: 40px;
    right: 15px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 22px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 0px 6px rgba(255,156,27,0.7);
    transition: background-color 0.3s ease;
    z-index: 9999;
}

.filter-fixed-btn:hover {
    background: #e3860f;
}

.filter-fixed-btn i{
    font-size: 1.2rem;
}