:root {
    --primary: #2d5a27; /* Forest Green */
    --secondary: #d4a373; /* Earthy Gold */
    --accent: #e9edc9; /* Light Sage */
    --dark: #1a1a1a;
    --light: #fefae0;
    --text: #333333;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: #fafafa;
    line-height: 1.6;
    font-size: 1rem;
}

/* Fluid Typography */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 2rem); }

h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
}

.bg-primary-custom { background-color: var(--primary); }
.text-primary-custom { color: var(--primary); }
.btn-primary-custom {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    transition: var(--transition);
    display: inline-block;
}
.btn-primary-custom:hover {
    background-color: #1e3d1a;
    color: var(--white);
    transform: translateY(-2px);
}

/* Navbar Tuning */
.navbar {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}
.navbar-brand {
    font-weight: 800;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--primary) !important;
}

@media (min-width: 992px) {
    .navbar .nav-link {
        font-weight: 500;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .navbar .btn {
        padding: 8px 20px;
        font-size: 0.95rem;
        font-weight: 600;
    }
}


/* Hero Section Refinement */
.hero {
    position: relative;
    min-height: 500px;
    height: 70vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 60px 0;
}
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 400px;
        padding: 80px 0;
    }
}
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3));
}
.hero-content {
    position: relative;
    z-index: 1;
}

/* Property & Destination Cards */
.property-card, .destination-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
    height: 100%;
}
.property-card:hover, .destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
}
.property-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}
.property-card .price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

/* Object Fit Helpers */
.object-fit-cover { object-fit: cover; }
.transition { transition: var(--transition); }

/* Footer */
footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}
footer h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}
footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 10px;
}
footer a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

/* Responsive Table Fixes */
.table-responsive {
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Custom badges */
.badge-status {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}
.status-live { background-color: #d1fae5; color: #065f46; }
.status-pending { background-color: #fef3c7; color: #92400e; }
.status-rejected { background-color: #fee2e2; color: #991b1b; }

/* Utilities */
.ls-wide { letter-spacing: 0.05em; }
.rounded-4 { border-radius: 1rem !important; }
.rounded-5 { border-radius: 2rem !important; }

/* Mobile Utilities */
@media (max-width: 576px) {
    .container { padding-left: 20px; padding-right: 20px; }
    .section-py { padding-top: 50px; padding-bottom: 50px; }
    .card-body { padding: 1.25rem; }
}

/* Centered Logo Section */
.logo-section {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo-display {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    overflow: hidden;
}

.logo-item {
    animation: slideInMiddle 6s infinite;
    display: flex;
    justify-content: center;
    width: 100%;
}

.logo-item img {
    width: 60%;
    max-width: 800px;
    max-height: 140px;
    object-fit: contain;
}

@keyframes slideInMiddle {
    0% { opacity: 0; transform: translateY(20px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}

@media (max-width: 768px) {
    .logo-display { height: 120px; }
    .logo-item img { width: 80%; max-height: 100px; }
}

