/* Global Marketing Layout Styles */
/* These styles are applied when using MarketingLayout */

:root {
    --primary-color: #0056b3;
    --primary-light: #007bff;
    --primary-dark: #004494;
    --secondary-color: #6c757d;
    --accent-color: #ffc107;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
    --white: #ffffff;
    --font-main: 'Roboto', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.marketing-layout {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.marketing-layout main {
    flex: 1;
}

.marketing-layout a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.marketing-layout ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.marketing-layout h1,
.marketing-layout h2,
.marketing-layout h3,
.marketing-layout h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.marketing-layout h1 {
    font-size: 3rem;
    line-height: 1.2;
}

.marketing-layout h2 {
    font-size: 2.2rem;
}

.marketing-layout h3 {
    font-size: 1.5rem;
}

.marketing-layout p {
    margin-bottom: 1rem;
}

.marketing-layout .lead {
    font-size: 1.25rem;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline,
.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
}



.btn-outline:hover,
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline-danger {
    color: #dc3545;
    background-color: transparent;
    border: 1px solid #dc3545;
    border-radius: 6px;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: #1a252f;
    color: #bdc3c7;
    padding: 4rem 0 0;
    margin-top: auto;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer a {
    text-decoration: none;
    color: #bdc3c7;
    transition: 0.3s;
}

.footer a:hover {
    color: var(--white) !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #34495e;
}

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero .container,
    .split-layout,
    .feature-grid,
    .listings-grid,
    .info-card-row,
    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .nav-actions {
        display: none;
        /* Hide login buttons on mobile for simplicity in prototype */
    }
}