﻿.landing-page {
    .hero-section {
        background: #000000;
    }

    .text-accent {
        color: rgb(135, 112, 79) !important;
    }

    .btn-accent {
        background-color: rgb(135, 112, 79);
        border-color: rgb(135, 112, 79);
        color: white;

        &:hover {
            background-color: rgba(135, 112, 79, 0.9);
            border-color: rgba(135, 112, 79, 0.9);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(135, 112, 79, 0.3);
        }
    }

    .btn-outline-light {
        &:hover {
            background-color: white;
            border-color: white;
            color: rgb(135, 112, 79);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
        }
    }

    .min-vh-100 {
        min-height: 100vh;
        padding: 1rem 0;
    }

    .btn {
        transition: all 0.3s ease;
    }

    .immoseed-logo {
        filter: brightness(1.2);
    }

    // Mobile responsive styles
    @media (max-width: 991px) {
        .col-lg-6:first-child {
            margin-bottom: 3rem;
        }
        
        .min-vh-100 {
            min-height: auto;
            padding: 2rem 0;
        }
    }

    @media (max-width: 767px) {
        .col-lg-6:first-child {
            margin-bottom: 4rem;
        }
        
        .team-member {
            margin-bottom: 2rem !important;

            &:last-child {
                margin-bottom: 0 !important;
            }
        }
    }
}
