:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Top Bar and Navbar Styling */
.top-bar {
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar {
    background-color: #0e284b !important;
    padding: 0.25rem 0;
    border-top: 1px solid #eee;
    min-height: 40px;
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    display: block;
}

.cta-button {
    background-color: #8B0000;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button::after {
    content: "→";
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background-color: #A52A2A;
    color: white;
    text-decoration: none;
}

.cta-button:hover::after {
    transform: translateX(3px);
}

.navbar .nav-link {
    color: white !important;
    font-weight: 400;
    padding: 0.25rem 2.7rem !important;
    font-size: 1.28rem;
    display: flex;
    align-items: center;
    height: 40px;
    position: relative;
}

/* Add separator after each nav item except the last one */
.navbar .nav-link:not(:last-child)::after {
    content: "|";
    color: rgba(255, 255, 255, 0.7);
    position: absolute;
    right: 0;
    font-size: 1.2rem;
    font-weight: 300;
}

/* Override any Bootstrap padding */
.navbar-nav .nav-item .nav-link {
    padding: 0.25rem 2.7rem !important;
}

.navbar .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.navbar-nav {
    gap: 1rem;
}

.navbar-dark .navbar-nav .nav-link {
    color: white !important;
    font-weight: 400;
}

.navbar-dark .navbar-toggler {
    color: white;
    border-color: white;
    padding: 0.25rem 0.5rem;
}

/* Adjust navbar container alignment */
.navbar > .container {
    padding-left: 0;
}

/* Adjust main navigation items alignment */
.navbar-nav.mx-auto {
    margin-left: 0 !important;
    margin-right: auto;
}

@media (max-width: 991px) {
    .logo-img {
        height: 70px;
    }
    
    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .navbar-nav {
        margin-top: 0.5rem;
    }
    
    .navbar .nav-link {
        height: auto;
        padding: 0.5rem 1.5rem !important;
        font-size: 1.28rem;
    }
    
    /* Remove separators on mobile */
    .navbar .nav-link::after {
        display: none;
    }
}

/* Property Cards */
.property-card {
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background-color: #0e284b;
    color: white;
    overflow: hidden;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(14, 40, 75, 0.2);
}

.property-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover img {
    transform: scale(1.05);
}

.property-card .card-title {
    color: #c3922e;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.property-card .card-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.property-card .btn {
    background-color: #c3922e;
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.property-card .btn:hover {
    background-color: #d4a23e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 146, 46, 0.2);
}

.property-price {
    color: #c3922e;
    font-size: 1.25rem;
    font-weight: bold;
}

/* Buttons */
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

/* Footer */
footer {
    margin-top: auto;
}

.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/static/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Home Page Cards */
.hero .card {
    background-color: white;
    border: none;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.hero .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.hero .card-body {
    padding: 2rem;
}

/* Landlords Card (Blue Theme) */
.hero .card:nth-child(1) {
    border-top: 4px solid #0e284b;
}

.hero .card:nth-child(1) h3 {
    color: #0e284b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero .card:nth-child(1) .fas {
    color: #0e284b;
}

.hero .card:nth-child(1) .btn {
    background-color: #0e284b;
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero .card:nth-child(1) .btn:hover {
    background-color: #1a3a6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 40, 75, 0.2);
}

/* Investors Card (Gold Theme) */
.hero .card:nth-child(2) {
    border-top: 4px solid #c3922e;
}

.hero .card:nth-child(2) h3 {
    color: #c3922e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero .card:nth-child(2) .fas {
    color: #c3922e;
}

.hero .card:nth-child(2) .btn {
    background-color: #8B0000;  /* Maroon color for CTA */
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero .card:nth-child(2) .btn:hover {
    background-color: #A52A2A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2);
}

.hero .card p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* Property Details */
.property-details img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
}

.property-features {
    list-style: none;
    padding: 0;
}

.property-features li {
    margin-bottom: 10px;
}

.property-features i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .property-card img {
        height: 150px;
    }
} 