 @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Mystery+Quest&family=Playwrite+DE+SAS:wght@100..400&family=Saira+Stencil:ital,wght@0,100..900;1,100..900&display=swap');


* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #0a0a0a;
            color: #e0e0e0;
            line-height: 1.5;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #C6A85A;
            font-weight: bold;
            font-family: 'Playfair Display', serif;
        }

        .logo-img-nav {
            height: 50px;
            width: auto;
        }

        .logo-text-small {
            font-size: 0.8rem;
            letter-spacing: 2px;
        }

        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 1rem;
        }

        nav a:hover {
            color: #C6A85A;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(12px);
            list-style: none;
            padding: 0.8rem 0;
            border-radius: 12px;
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
            z-index: 100;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li a {
            display: block;
            padding: 0.5rem 1.5rem;
            color: #ddd;
        }

        .dropdown-menu li a:hover {
            background: #C6A85A20;
            color: #C6A85A;
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #C6A85A;
            cursor: pointer;
        }

        /* Back to top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            background: #C6A85A;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top i {
            color: #0a0a0a;
            font-size: 1.4rem;
        }

        /* Hero */
        .hero-banner {
            height: 85vh;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('../Follio/Img/CAS1.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 80px;
        }

        .banner-content h1 {
            font-size: 3.2rem;
            color: #fff;
            margin-bottom: 1rem;
        }

        .banner-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #f0f0f0;
        }

        .btn-banner {
            background: #C6A85A;
            color: #0a0a0a;
            padding: 12px 32px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s;
            display: inline-block;
        }

        .btn-banner:hover {
            background: #d4b96a;
            transform: translateY(-3px);
        }

        /* Rental section */
        .rental-section {
            padding: 5rem 2rem;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #C6A85A;
            text-align: center;
            margin-bottom: 1rem;
        }

        .rental-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #aaa;
        }

        .rental-highlight {
            background: rgba(198, 168, 90, 0.1);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 3rem;
            border-left: 4px solid #C6A85A;
        }

        .rental-highlight h3 {
            color: #C6A85A;
            margin-bottom: 0.8rem;
        }

        .properties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .property-card {
            background: #111;
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.4s, box-shadow 0.4s;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s, transform 0.6s;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        .property-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .property-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(198,168,90,0.2);
        }

        .property-image {
            height: 240px;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s;
        }

        .property-card:hover .property-image {
            transform: scale(1.03);
        }

        .property-info {
            padding: 1.5rem;
        }

        .property-category {
            display: inline-block;
            background: #C6A85A;
            color: #0a0a0a;
            font-size: 0.75rem;
            font-weight: bold;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 1rem;
        }

        .property-description {
            color: #ccc;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .property-location, .property-price {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 0.6rem;
            font-size: 0.9rem;
        }

        .property-location i, .property-price i {
            color: #C6A85A;
            width: 20px;
        }

        .property-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 1rem;
        }

        .feature {
            background: #1e1e1e;
            padding: 5px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .feature i {
            color: #C6A85A;
            font-size: 0.75rem;
        }

        .rental-cta {
            text-align: center;
            margin-top: 2rem;
        }

        .cta-button {
            background: #C6A85A;
            color: #0a0a0a;
            padding: 14px 36px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: 0.3s;
            display: inline-block;
        }

        .cta-button:hover {
            background: #d4b96a;
            transform: scale(1.02);
        }

        /* Galerie */
        .photo-gallery {
            padding: 3rem 2rem 5rem;
            background: #050505;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 1.8rem;
            margin: 2rem 0;
        }

        .gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            height: 280px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            padding: 1.5rem;
            transform: translateY(100%);
            transition: 0.4s;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay h3 {
            color: #C6A85A;
            margin-bottom: 0.3rem;
        }

        .gallery-cta {
            text-align: center;
            margin-top: 2rem;
        }

        .btn-gallery {
            background: transparent;
            border: 2px solid #C6A85A;
            color: #C6A85A;
            padding: 10px 28px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s;
        }

        .btn-gallery:hover {
            background: #C6A85A;
            color: #0a0a0a;
        }

        /* Footer */
        footer {
            background: #030303;
            padding: 3rem 2rem 1.5rem;
            border-top: 1px solid #1f1f1f;
        }

        .footer-grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
        }

        .footer-logo {
            height: 50px;
            margin-bottom: 1rem;
        }

        .footer-col h3 {
            color: #C6A85A;
            margin-bottom: 1rem;
        }

        .footer-links a {
            display: block;
            color: #aaa;
            text-decoration: none;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #C6A85A;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 0.8rem;
            color: #ccc;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin: 1rem 0;
        }

        .social-links a {
            background: #1e1e1e;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #C6A85A;
            transition: 0.3s;
        }

        .newsletter form {
            display: flex;
            margin-top: 0.8rem;
        }

        .newsletter input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 30px 0 0 30px;
            background: #1e1e1e;
            color: white;
        }

        .newsletter button {
            background: #C6A85A;
            border: none;
            padding: 0 18px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #1f1f1f;
            color: #666;
        }

        @media (max-width: 768px) {
            header {
                padding: 0.8rem 1.2rem;
            }
            nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero-banner {
                margin-top: 70px;
                height: 60vh;
            }
            .banner-content h1 {
                font-size: 2rem;
            }
            .properties-grid {
                grid-template-columns: 1fr;
            }
        }


         /* Styles supplémentaires pour les nouvelles cartes */
        .property-badge {
            display: inline-block;
            background: linear-gradient(135deg, #e4a853, #c8892c);
            color: #fff;
            font-size: 0.7rem;
            padding: 4px 10px;
            border-radius: 20px;
            margin-bottom: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .property-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .property-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(0,0,0,0.2);
        }
        .feature i {
            color: #e4a853;
            margin-right: 6px;
        }
        .property-description {
            line-height: 1.5;
            margin: 10px 0;
        }