@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');
body {
    font-family: 'Inter', sans-serif;
}

.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

/* Hero background image styles */
.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.primary-dark {
    background-color: #1a5f7a;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}
/* Property card hover effect */
.property-card {
    transition: all 0.3s ease;
}

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

/* Property badge styles */
.property-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
}
.property-badge.to-let {
    background-color: #1A3E72;
color: white;
}

.property-badge.for-sale {
    background-color: #2E86AB;
    color: white;
}

.property-badge.investment {
    background-color: #C73E1D;
    color: white;
}

/* Property details styles */
.property-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.property-details span {
    font-size: 0.875rem;
}

.property-location {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.property-location i {
    margin-right: 0.25rem;
}
/* Testimonial card glass effect */
.testimonial-card {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Form inputs */
.form-input:focus {
    box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
}