/* ========================================
   9TEEDIN.COM CUSTOM STYLES
   Color Scheme:
   - Primary: #1a562a (Dark Green)
   - Secondary1: #9b743a (Brown)
   - Secondary2: #60982b (Light Green)
   ======================================== */

/* Typography - Improved Readability */
body {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

h1, .h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h2, .h2 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 0.875rem;
}

h3, .h3 {
    font-size: 1.75rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

h4, .h4 {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

h5, .h5 {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 0.625rem;
}

h6, .h6 {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Color Overrides */
.bg-primary {
    background-color: #1a562a !important;
}

.text-primary {
    color: #1a562a !important;
}

.btn-primary {
    background-color: #1a562a !important;
    border-color: #1a562a !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #154821 !important;
    border-color: #154821 !important;
}

.bg-secondary {
    background-color: #9b743a !important;
}

.text-secondary {
    color: #9b743a !important;
}

.btn-secondary {
    background-color: #9b743a !important;
    border-color: #9b743a !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #85632f !important;
    border-color: #85632f !important;
}

/* Accent Color (Secondary2) */
.bg-success,
.btn-success {
    background-color: #60982b !important;
    border-color: #60982b !important;
}

.btn-success:hover,
.btn-success:focus {
    background-color: #518024 !important;
    border-color: #518024 !important;
}

.text-success {
    color: #60982b !important;
}

/* Links */
a {
    color: #1a562a;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #60982b;
    text-decoration: underline;
}

/* Navbar Customization */
.main-nav {
    background-color: #1a562a !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #ffffff !important;
    font-size: 1.0625rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #ffd700 !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
}

/* Mobile Hamburger Menu Improvements */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #1a562a;
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }
    
    .navbar-nav {
        gap: 0.5rem;
    }
    
    .navbar-light .navbar-nav .nav-link {
        padding: 0.875rem 1rem;
        border-radius: 0.375rem;
        transition: all 0.3s ease;
    }
    
    .navbar-light .navbar-nav .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.15);
        padding-left: 1.25rem;
    }
    
    .main-nav a.text-secondary {
        display: block;
        padding: 0.875rem 1rem !important;
        margin: 0.25rem 0;
        border-radius: 0.375rem;
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .main-nav .btn-danger {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Navbar toggler button */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.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='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar Links (Login/Register/Username) */
.main-nav a.text-secondary {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.main-nav a.text-secondary:hover {
    color: #ffd700 !important;
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

/* Navbar Brand/Logo */
.navbar-brand {
    padding: 0.25rem 0;
}

/* Navbar Button */
.main-nav .btn-danger {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.625rem 1.5rem;
    border-radius: 0.375rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.main-nav .btn-danger:hover {
    background-color: #c82333 !important;
    border-color: #bd2130 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* Badges */
.badge.bg-primary {
    background-color: #1a562a !important;
    font-size: 0.875rem;
    padding: 0.5em 0.75em;
}

.badge.bg-secondary {
    background-color: #9b743a !important;
}

/* Cards */
.card-header.bg-primary {
    background-color: #1a562a !important;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1rem 1.25rem;
}

.card {
    font-size: 1rem;
}

.card-body {
    padding: 1.5rem;
}

/* Buttons - Better Sizing */
.btn {
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-sm {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.btn-lg {
    font-size: 1.125rem;
    padding: 0.75rem 1.5rem;
}

/* Form Elements */
.form-label {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-control {
    font-size: 1rem;
    padding: 0.625rem 0.875rem;
    line-height: 1.5;
}

.form-control:focus {
    border-color: #60982b;
    box-shadow: 0 0 0 0.2rem rgba(96, 152, 43, 0.25);
}

/* Alert Messages */
.alert {
    font-size: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 0.375rem;
}

/* Property Cards & Listings */
.property-item h5 {
    font-size: 1.25rem;
    line-height: 1.4;
}

.property-item .price {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a562a;
}

/* Breadcrumbs */
.breadcrumb {
    font-size: 0.9375rem;
}

/* Tables */
table {
    font-size: 1rem;
}

table th {
    font-weight: 600;
    background-color: #f8f9fa;
}

/* Original Styles Below */
hr {
    line-height: 1px;
    padding: 0em 0em 0em 0em;
    margin: 0em 0em 0em 0em;
}

.label {
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 90%;
    font-weight: 700;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25em;
    background-color: #777;
}

.label-success {
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 90%;
    font-weight: 700;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25em;
    background-color: #60982b;
}

.label-danger {
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 90%;
    font-weight: 700;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25em;
    background-color: #dc3545;
}

form .error {
    text-align: left;
    color: #ff0000;
}

#map {
    width: 100%;
    height: 480px;
}

/*
body {
    font-family: var(--theme-ordinary-font);
    font-size: 1rem;;
    line-height: 1rem;
}


h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: var(--theme-highlight-font);
    font-weight: 700;
}

h4,
.h4 {
    line-height: 1.6rem;
}

h5 {
    font-size: 1.2rem;
    line-height: 1.2rem;
}

h6,
.h6 {
    line-height: 1.1rem;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

p {
    line-height: 1.1rem;
}


img {
    width: 100%
}

button,
button:focus {
    border: none;
    outline: none
}

.btn {
    padding: 10px;
    font-size: 1.5rem;;
    border-radius: 0;
    line-height: 1.5rem;;
    font-weight: 500
}*/