@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
}
/* Animation for cards */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
form input,
form textarea{
    outline:none;
    resize: none;
}
/* Mobile */
@media (max-width: 768px) {
    .nav-links-desktop { display: none; }

    .mobile-menu {
        display: none;
        flex-direction: column;
        background: #000;
        padding: 1rem 2rem;
        gap: 1rem;
    }

    .mobile-menu .nav-link,
    .mobile-menu .btn {
        width: 100%;
        text-align: left;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.4rem;
        cursor: pointer;
    }

    .mobile-menu.show {
        display: flex;
    }
}


/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #333;
}

/* Animation for property cards */
.property-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Custom button styles */
.btn-primary {
    background-color: #000;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
}

/* partie footer */
footer {
    background-color: #000;
    color: white;
    padding: 3rem 2rem;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.footer-logo i {
    margin-right: 0.5rem;
}
.footer-description {
    color: #aaa;
    margin-bottom: 1.5rem;
}
.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-link {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-link i {
    margin-right: 0.5rem;
}
.footer-link:hover {
    color: white;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-link {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}
.social-link:hover {
    color: #ccc;
}
.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #aaa;
}
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* ----- partie carte propritee */
.property-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}
.property-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.property-details {
    padding: 1.5rem;
}
.property-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}
.property-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.property-location {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.location-icon {
    margin-right: 0.25rem;
}
.property-features {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}
.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-icon {
    margin-bottom: 0.25rem;
}
.feature-label {
    font-size: 0.75rem;
    color: #666;
}
.feature-value {
    font-weight: 600;
}

/* Flèches Swiper dorées avec ombre */
.swiper-button-next,
.swiper-button-prev {
    width: 40px !important;       /* forcer largeur */
    height: 40px !important;      /* forcer hauteur */
    background: linear-gradient(135deg, #c9b24d, #d4bf37);
    color: #000 !important;
    border-radius: 50%;           /* rondes */
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    font-size: 18px !important;   /* taille de la flèche */
    top: 50% !important;          /* centrer verticalement */
    transform: translateY(-50%);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;   /* réduit la flèche elle-même */
    font-weight: bold;
}
