﻿
.btn-search {
    width: 100%;
    font-size: 18px;
    background-color: red;
    border-block-color: yellow ;
    padding: 12px;
    border-radius: 8px;
}

.nice-button {
    background-color: #4CAF50; /* Green background */
    border: none; /* Remove borders */
    color: white; /* White text */
    padding: 15px 32px; /* Some padding */
    text-align: center; /* Center the text */
    text-decoration: none; /* Remove underline */
    display: inline-block;
    font-size: 16px; /* Increase font size */
    font-family: 'Arial', sans-serif; /* Use a nice font */
    border-radius: 8px; /* Rounded corners */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transitions */
    cursor: pointer; /* Pointer cursor on hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.search-button {
    background-color: #00FFE0; /* Neon cyan color */
    color: black;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 15px; /* Rounded corners */
    padding: 10px 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn {
    background-color: #00FFE0; /* Neon cyan color */
    color: black;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 15px; /* Rounded corners */
    width: 150px; /* Increase width */
    height: 35px; /* Reduce height */
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
    display: inline-block;
    line-height: 20px; /* Center text vertically */
}

    .search-button:hover {
        background-color: #00E6CC; /* Slightly darker on hover */
    }


.apartment-card {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: auto;
}

    .apartment-card img {
        width: 30%;
        object-fit: cover;
    }

.apartment-details {
    padding: 16px;
    width: 70%;
}

.price, .size, .rooms {
    font-weight: bold;
}

.apartment-card {
    width: 100%;
    max-width: 400px;
    margin: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

    .apartment-card:hover {
        transform: scale(1.02);
    }

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.card-body {
    padding: 15px;
}

.location {
    color: gray;
    font-size: 14px;
}

.owner {
    font-weight: bold;
    color: #007bff;
}

.badge-primary {
    background-color: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

/* ========== Luxury NAVBAR STYLES ========== */
/* ========== Luxury NAVBAR STYLES ========== */
.navbar {
    background-color: #1a1a2e; /* Luxury Dark Navy */
    height: 64px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

.navbar-brand {
    color: white;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 0 1rem;
    font-family: 'Montserrat', sans-serif;
}

.navbar-toggler {
    border: none;
    background: none;
    color: white;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.navbar-collapse {
    background-color: #1a1a2e !important; /* Ensure dark background on mobile */
}

.navbar-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-direction: row;
}

    .navbar-nav .nav-item {
        margin-left: 0.5rem;
    }

    .navbar-nav .nav-link {
        color: white;
        font-size: 1rem;
        padding: 0.75rem 1rem;
        font-family: 'Lato', sans-serif;
        border-radius: 5px;
        transition: background-color 0.3s ease, color 0.3s ease;
        background-color: transparent;
    }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            background-color: #d4af37;
            color: #1a1a2e;
        }

        .navbar-nav .nav-link.active,
        .navbar-nav .nav-link.show {
            background-color: #d4af37;
            color: #1a1a2e;
        }

/* Responsive styles for mobile menu */
@media (max-width: 991px) {
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

        .navbar-nav .nav-item {
            width: 100%;
        }

        .navbar-nav .nav-link {
            width: 100%;
        }
}

/* Dropdown menu styles */
.dropdown-menu {
    background-color: #1a1a2e;
    border: none;
}

.dropdown-item {
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: #d4af37;
        color: #1a1a2e;
    }

.navbar-nav .dropdown-toggle {
    color: white;
    background-color: transparent;
}

    .navbar-nav .dropdown-toggle:hover,
    .navbar-nav .dropdown-toggle:focus {
        background-color: #d4af37;
        color: #1a1a2e;
    }


/* ========== CONTAINER STYLING ========== */

