
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary: #D4A017; /* Elegant gold */
    --secondary: #B8974A; /* Muted metallic gold */
    --light: #F8F8F8; /* Clean neutral */
    --dark: #2A2A2A; /* Deep charcoal */
}



/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

     
    .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 5px;
  }

.navbar-toggler {
    background-color: var(--primary); 
    color: var(--dark); 
    border-radius: 50px; 
    padding: 10px 15px;
    border: 3px solid var(--dark);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Background */
.property-details-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: var(--primary);
    padding: 20px;
}

/* Card Styling */
.property-card {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    background: var(--primary);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    color: var(--dark);
    transition: all 0.3s ease-in-out;
}

.property-card:hover {
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.25);
}

/* Image Styling */
.property-image-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.property-image-container img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.property-image-container img:hover {
    transform: scale(1.05);
}

/* Property Information */
.property-info {
    padding: 20px;
}

.property-info h1 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
}

/* Property Meta Details */
.property-meta p {
    font-size: 16px;
    margin: 5px 0;
    display: flex;
    align-items: center;
    font-weight: 900;
}

.property-meta i {
    margin-right: 8px;
    color: var(--dark);
    font-weight: 900;
}

/* Map Styling */
.map-container {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 15px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Button Styling */
.btn-modern {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 12px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    background: var(--dark);
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

.btn-modern:hover {
    background: var(--secondary);
    transform: scale(1.05);
    color: var(--dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .property-card {
        max-width: 90%;
    }
}