/* Portfolio Specific Styles */

.hero-section {
    background: linear-gradient(135deg, #f5f5f0 0%, #e8e8e0 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.hero-section h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.hero-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-section {
    padding: 80px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.property-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.property-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-details {
    padding: 2rem;
}

.property-status {
    display: inline-block;
    background: #d4b896;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.property-address {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.property-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #d4b896;
    margin-bottom: 1rem;
}

.property-specs {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #666;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.property-highlights {
    margin-bottom: 1.5rem;
}

.property-highlights h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 0.8rem;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #666;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
}

.highlights-list li::before {
    content: '•';
    color: #d4b896;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.property-footer {
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #888;
}

.sale-date {
    font-weight: 500;
}

.agent-info {
    text-align: right;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 1rem 40px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-section p {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .portfolio-section {
        padding: 40px 1rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .property-card {
        border-radius: 8px;
        margin: 0 auto;
        max-width: 400px;
    }

    .property-details {
        padding: 1.5rem;
    }

    .property-address {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .property-price {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .property-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .property-specs {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .spec-item {
        font-size: 0.9rem;
        text-align: center;
        padding: 0.5rem;
        background: #f8f9fa;
        border-radius: 6px;
    }

    .property-footer {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .status-badge {
        align-self: center;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .agent-info {
        text-align: center;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 90px 0.75rem 30px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

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

    .portfolio-section {
        padding: 30px 0.75rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .property-card {
        max-width: 100%;
    }

    .property-details {
        padding: 1rem;
    }

    .property-address {
        font-size: 1.2rem;
    }

    .property-price {
        font-size: 1.4rem;
    }

    .property-description {
        font-size: 0.85rem;
    }

    .spec-item {
        font-size: 0.8rem;
        padding: 0.4rem;
    }

    .agent-info {
        font-size: 0.8rem;
    }

    .status-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}