/* Custom CSS for Condor Emprendimientos */

/* Body and Typography */
body {
    font-family: 'Lora', serif;
    background-color: #f8f9fa;
    color: #333;
}

h1, .btn {
    font-family: 'Lora', serif;
    font-style: italic;
}

h2 {
    font-family: 'Lora', serif;
    text-transform: uppercase;
}

h3, h4, h5, h6, p {
    font-family: 'Lora', serif;
}

.display-4 {
    font-weight: 2.2rem;
    font-size: 2.2rem;
}

/* Navigation Bar */
.navbar {
    transition: all 0.3s;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../fondoinmobiliaria.webp') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 150px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 1.2rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.5rem;
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card-title {
    font-weight: 700;
}

/* Buttons */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 30px;
    padding: 0.5em 3em;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-success:hover {
    background-color: #1e7e34;
    border-color: #1e7e34;
    transform: translateY(-3px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

@media (min-width: 992px) {
    .carousel .carousel-inner,
    .carousel .carousel-item,
    .carousel .carousel-item img {
        height: 500px;
        object-fit: cover;
    }
}